Skip to content

Commit

Permalink
* Fixed bug in Function Return.
Browse files Browse the repository at this point in the history
  • Loading branch information
Pulover committed Oct 28, 2020
1 parent 0157fed commit 732b9b2
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 9 deletions.
5 changes: 4 additions & 1 deletion Documentation/About.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Author: Pulover \[Rodolfo U. Batista\]
Copyright © 2012-2020 Rodolfo U. Batista

Version: 5.3.1
Version: 5.3.2
Release Date: October, 2020
AutoHotkey Version: 1.1.32.00

Expand Down Expand Up @@ -37,6 +37,9 @@ chosen1ft for fixing the mixing rows bug when saving a project.

# Change Log

## Version 5.3.2
* Fixed bug in Function Return.

## Version 5.3.1
* Added **Random coordinates** option in *Mouse* command window.
* Added **Custom icon** option for exported EXE in *Export* window.
Expand Down
2 changes: 1 addition & 1 deletion Documentation/MacroCreator_Help.ahk
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*!
Library: Pulover's Macro Creator
# Version: 5.3.1
# Version: 5.3.2
[www.macrocreator.com](https://www.macrocreator.com)
[Forum](https://www.autohotkey.com/boards/viewforum.php?f=63)
Expand Down
4 changes: 2 additions & 2 deletions LIB/Playback.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -309,8 +309,8 @@
For _each, _value in SVRef
{
If (Static_Vars[RunningFunction].HasKey(_each))
Static_Vars[RunningFunction][_each] := %_each%
%_each% := _value
Try Static_Vars[RunningFunction][_each] := %_each%
Try %_each% := _value
}

For _each, _value in ScopedParams
Expand Down
8 changes: 4 additions & 4 deletions MacroCreator.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
; Author: Pulover [Rodolfo U. Batista]
; Home: https://www.macrocreator.com
; Forum: https://www.autohotkey.com/boards/viewforum.php?f=63
; Version: 5.3.1
; Version: 5.3.2
; Release Date: October, 2020
; AutoHotkey Version: 1.1.32.00
; Copyright © 2012-2020 Rodolfo U. Batista
Expand Down Expand Up @@ -74,7 +74,7 @@ https://www.macrocreator.com/project/
; Compiler Settings
;@Ahk2Exe-SetName Pulover's Macro Creator
;@Ahk2Exe-SetDescription Pulover's Macro Creator
;@Ahk2Exe-SetVersion 5.3.1
;@Ahk2Exe-SetVersion 5.3.2
;@Ahk2Exe-SetCopyright Copyright © 2012-2020 Rodolfo U. Batista
;@Ahk2Exe-SetOrigFilename MacroCreator.exe

Expand Down Expand Up @@ -141,7 +141,7 @@ Loop
break
}

CurrentVersion := "5.3.1", ReleaseDate := "October, 2020"
CurrentVersion := "5.3.2", ReleaseDate := "October, 2020"

;##### Ini File Read #####

Expand Down Expand Up @@ -715,7 +715,7 @@ If (KeepDefKeys = 1)

GoSub, LoadLang

If (InStr(FileLayout, "(Ctrl+G)"))
If (RegExMatch(FileLayout, "\(Ctrl\s*\+\s*G\)"))
FileLayout := RegExReplace(FileLayout, "=\w+\s*\(Ctrl\s*\+\s*G\)", "=" w_Lang046)

#Include <Definitions>
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Pulover's Macro Creator is a Free Automation Tool and Script Generator based on

[www.macrocreator.com](https://www.macrocreator.com)

**Current Version:** 5.3.1
**Current Version:** 5.3.2

### Supported platforms

Expand Down

0 comments on commit 732b9b2

Please sign in to comment.