diff --git a/Docs/releasenotes.md b/Docs/releasenotes.md index be22d9a..0199bb5 100644 --- a/Docs/releasenotes.md +++ b/Docs/releasenotes.md @@ -1,5 +1,9 @@ # Release Notes +## v1.6.4 - 2020-01-08 + +- Added command line build command for setup exe + ## v1.6.3 - 2020-01-08 - Auto-Save Window Positions on a schedule diff --git a/Setup/WindowMenu_Setup.iss b/Setup/WindowExtensions_Setup.iss similarity index 96% rename from Setup/WindowMenu_Setup.iss rename to Setup/WindowExtensions_Setup.iss index 3789050..cfe0f5d 100644 --- a/Setup/WindowMenu_Setup.iss +++ b/Setup/WindowExtensions_Setup.iss @@ -1,6 +1,6 @@ #define AppName "WindowExtensions" #define AppTitle "Window Extensions" -#define AppVersion "1.6.3" +#define AppVersion "1.6.4" [Setup] AppName={#AppName} diff --git a/Setup/_Build.cmd b/Setup/_Build.cmd new file mode 100644 index 0000000..c7b19c2 --- /dev/null +++ b/Setup/_Build.cmd @@ -0,0 +1,13 @@ +@ECHO OFF + +SETLOCAL + +SET APPNAME=WindowExtensions + +PUSHD "%~dp0" + +DEL "%APPNAME%_*.exe" /S /Q > NUL + +CALL InnoSetupCompiler.cmd "%APPNAME%_Setup.iss" + +POPD diff --git a/WindowExtensions.ahk b/WindowExtensions.ahk index f388ce7..d838169 100644 --- a/WindowExtensions.ahk +++ b/WindowExtensions.ahk @@ -15,7 +15,7 @@ AppDescription := "Window Extensions Menu and HotKeys" AppCopyright := "Copyright © 2020 Martin Smith" AppNotes := "Concise and consistent control over Window Positions. Right-click right half of Window Caption bar to invoke, or hit WinKey-W" AppURL := "https://github.com/martinsmith1968/WindowExtensions" -AppVersion := "1.6.3.0" +AppVersion := "1.6.4.0" ;-------------------------------------------------------------------------------- ; Includes