Skip to content

Commit

Permalink
update build numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
marticliment committed Aug 31, 2023
1 parent 6f643d3 commit 9ee9120
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 7 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,4 @@ ElevenClock.Installer.exe.zip
.vscode/launch.json
env/*
scripts/APIKEY.txt
sign.cmd.lnk
4 changes: 2 additions & 2 deletions ElevenClock.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "ElevenClock"
#define MyAppVersion "4.2.2"
#define MyAppVersion "4.3.0"
#define MyAppPublisher "Martí Climent"
#define MyAppURL "https://marticliment.com/elevenclock"
#define MyAppExeName "ElevenClock.exe"
Expand All @@ -19,7 +19,7 @@ AppPublisher="Martí Climent"
AppPublisherURL="https://marticliment.com/"
AppSupportURL="https://marticliment.com/#contact"
AppUpdatesURL="https://github.com/marticliment/ElevenClock/releases"
VersionInfoVersion=4.2.2.0
VersionInfoVersion=4.3.0.0
DefaultDirName={autopf}\ElevenClock
DisableDirPage=yes
ChangesAssociations=yes
Expand Down
7 changes: 7 additions & 0 deletions build.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,9 @@ if defined option--no-installer (
goto :skip-installer
)

echo You might want to sign your executable now
pause

set INSTALLATOR="%SYSTEMDRIVE%\Program Files (x86)\Inno Setup 6\ISCC.exe"
if exist %INSTALLATOR% (
%INSTALLATOR% "ElevenClock.iss"
Expand All @@ -110,6 +113,10 @@ if exist %INSTALLATOR% (
echo Running app...
start /b ElevenClockBin/ElevenClock.exe
)

echo You might want to sign your installer now
pause

:skip-installer

if defined option--release (
Expand Down
4 changes: 2 additions & 2 deletions elevenclock-version-info
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ StringFileInfo(
[
StringStruct(u'CompanyName', u'Martí Climent'),
StringStruct(u'FileDescription', u'ElevenClock'),
StringStruct(u'FileVersion', u'4.2.2'),
StringStruct(u'ProductVersion', u'4.2.2'),
StringStruct(u'FileVersion', u'4.3.0'),
StringStruct(u'ProductVersion', u'4.3.0'),
StringStruct(u'InternalName', u'ElevenClock'),
StringStruct(u'LegalCopyright', u'Martí Climent'),
StringStruct(u'OriginalFilename', u'elevenclock.exe'),
Expand Down
4 changes: 2 additions & 2 deletions elevenclock/versions.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
version = 4.29
versionName = "4.3.0-beta"
version = 4.3
versionName = "4.3.0"
versionISS = "4.3.0.0"
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
PyInstaller==5.13.0
PyInstaller==5.9.0
PySide6
keyboard
psutil
Expand Down

0 comments on commit 9ee9120

Please sign in to comment.