Skip to content

Commit

Permalink
Added build command and version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
martinsmith1968 committed Jan 8, 2020
1 parent 79ff4d5 commit ec5b649
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 1 deletion.
4 changes: 4 additions & 0 deletions Docs/releasenotes.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
13 changes: 13 additions & 0 deletions Setup/_Build.cmd
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion WindowExtensions.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ec5b649

Please sign in to comment.