Skip to content

Commit

Permalink
Downgrading AutoHotkey version.
Browse files Browse the repository at this point in the history
  • Loading branch information
Pulover committed Sep 28, 2020
1 parent 01fcbbf commit 735c9ed
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions Compile.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@ FileCopy, SciLexer-x86.dll, Compiled\SciLexer-x86.dll, 1
FileCopy, Documentation\MacroCreator_Help-doc\Examples\Demo.pmc, Compiled\Demo.pmc, 1
FileCopy, Lang\*.lang, Compiled\Lang\, 1

RunWait, %AhkDir%\Compiler\Ahk2Exe.exe /in MacroCreator.ahk /out Compiled\MacroCreator.exe /icon Resources\PMC4_Mult.ico /bin "%AhkDir%\Compiler\Unicode 32-bit.bin" /compress 2,, UseErrorLevel
RunWait, %AhkDir%\Compiler\Ahk2Exe.exe /in MacroCreator.ahk /out Compiled\MacroCreator.exe /icon Resources\PMC4_Mult.ico /bin "%AhkDir%\Compiler\Unicode 32-bit.bin" /mpress 1,, UseErrorLevel
If (ErrorLevel = "ERROR")
{
MsgBox, 0x40000, Error, % "Error code: " A_LastError " at line " A_LineNumber - 3
ExitApp
}

RunWait, %AhkDir%\Compiler\Ahk2Exe.exe /in MacroCreator.ahk /out Compiled\MacroCreator-x64.exe /icon Resources\PMC4_Mult.ico /bin "%AhkDir%\Compiler\Unicode 64-bit.bin" /compress 2,, UseErrorLevel
RunWait, %AhkDir%\Compiler\Ahk2Exe.exe /in MacroCreator.ahk /out Compiled\MacroCreator-x64.exe /icon Resources\PMC4_Mult.ico /bin "%AhkDir%\Compiler\Unicode 64-bit.bin" /mpress 1,, UseErrorLevel
If (ErrorLevel = "ERROR")
{
MsgBox, 0x40000, Error, % "Error code: " A_LastError " at line " A_LineNumber - 3
Expand Down
6 changes: 3 additions & 3 deletions Documentation/About.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
Author: Pulover \[Rodolfo U. Batista\]
Copyright © 2012-2020 Rodolfo U. Batista

Version: 5.2.2
Version: 5.2.3
Release Date: September, 2020
AutoHotkey Version: 1.1.33.02
AutoHotkey Version: 1.1.32.00

Software License: [GNU General Public License](License.html)

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

# Change Log

## Version 5.2.2
## Version 5.2.3
* Updated exported *Compare variables* from *If Statements* window to use expression.
* Global Context Hotkey is now saved in project file instead of ini file.
* Fixed *Function Return* ignoring if statements.
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.2.2
# Version: 5.2.3
[www.macrocreator.com](https://www.macrocreator.com)
[Forum Board](https://www.autohotkey.com/boards/viewforum.php?f=63)
Expand Down
8 changes: 4 additions & 4 deletions MacroCreator.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
; Author: Pulover [Rodolfo U. Batista]
; Home: https://www.macrocreator.com
; Forum Board: https://www.autohotkey.com/boards/viewforum.php?f=63
; Version: 5.2.2
; Version: 5.2.3
; Release Date: September, 2020
; AutoHotkey Version: 1.1.33.02
; AutoHotkey Version: 1.1.32.00
; Copyright © 2012-2020 Rodolfo U. Batista
; I specifically grant Michael Wong (user guest3456 on AHK forums) use of this code
; under the terms of the UNLICENSE here: <https://unlicense.org/UNLICENSE>
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.2.2
;@Ahk2Exe-SetVersion 5.2.3
;@Ahk2Exe-SetCopyright Copyright © 2012-2020 Rodolfo U. Batista
;@Ahk2Exe-SetOrigFilename MacroCreator.exe

Expand Down Expand Up @@ -142,7 +142,7 @@ Loop
}


CurrentVersion := "5.2.2", ReleaseDate := "September, 2020"
CurrentVersion := "5.2.3", ReleaseDate := "September, 2020"

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

Expand Down
4 changes: 2 additions & 2 deletions 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.2.2
**Current Version:** 5.2.3

### Supported platforms

Expand Down Expand Up @@ -38,7 +38,7 @@ If you need to compile you may run the *Compile.ahk* script which generates the

To compile you'll need:
* The latest version of AutoHotkey installed.
* upx.exe (win32) inside AutoHotkey's Compiler subfolder, in its installation folder (this can be changed in Compile.ahk).
* mpress.exe inside AutoHotkey's Compiler subfolder, in its installation folder (this can be changed in Compile.ahk).
* hhc.exe and hha.dll in *Documentation\MacroCreator_Help-doc* directory.
* Inno Setup 6 installed.

Expand Down

0 comments on commit 735c9ed

Please sign in to comment.