Skip to content

Commit

Permalink
Merge pull request #8 from martinsmith1968/feature/setup-build-command
Browse files Browse the repository at this point in the history
Feature/setup build command
  • Loading branch information
martinsmith1968 authored Jan 8, 2020
2 parents fdb465b + ec5b649 commit 9fc103c
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 2 deletions.
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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#define AppName "WindowExtensions"
#define AppTitle "Window Extensions"
#define AppVersion "1.6.3"
#define AppVersion "1.6.4"

[Setup]
AppName={#AppName}
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 9fc103c

Please sign in to comment.