From 735c9ed95cc691656d18f0954f632007be36ba42 Mon Sep 17 00:00:00 2001 From: "Rodolfo U. Batista" Date: Mon, 28 Sep 2020 16:47:22 -0300 Subject: [PATCH] Downgrading AutoHotkey version. --- Compile.ahk | 4 ++-- Documentation/About.md | 6 +++--- Documentation/MacroCreator_Help.ahk | 2 +- MacroCreator.ahk | 8 ++++---- README.md | 4 ++-- 5 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Compile.ahk b/Compile.ahk index befb7edf..0c0fc510 100644 --- a/Compile.ahk +++ b/Compile.ahk @@ -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 diff --git a/Documentation/About.md b/Documentation/About.md index 978de90c..73b7f181 100644 --- a/Documentation/About.md +++ b/Documentation/About.md @@ -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) @@ -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. diff --git a/Documentation/MacroCreator_Help.ahk b/Documentation/MacroCreator_Help.ahk index 3200101f..cd6e9c60 100644 --- a/Documentation/MacroCreator_Help.ahk +++ b/Documentation/MacroCreator_Help.ahk @@ -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) diff --git a/MacroCreator.ahk b/MacroCreator.ahk index dce5a520..3a39e150 100644 --- a/MacroCreator.ahk +++ b/MacroCreator.ahk @@ -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: @@ -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 @@ -142,7 +142,7 @@ Loop } -CurrentVersion := "5.2.2", ReleaseDate := "September, 2020" +CurrentVersion := "5.2.3", ReleaseDate := "September, 2020" ;##### Ini File Read ##### diff --git a/README.md b/README.md index 68539d99..e7b69606 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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.