From de06b02cfeb4c8e9785bb42c7a96a91b38a04c0d Mon Sep 17 00:00:00 2001 From: AndrewMusser Date: Thu, 25 Jul 2024 11:32:30 -0400 Subject: [PATCH 1/2] Update the mechanism for installing Inno setup --- .github/workflows/release.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5c96856..90e3f3d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,8 +22,10 @@ jobs: submodules: true token: ${{ secrets.GH_LPM_ASPYTHON_TOKEN }} - - name: Download + Install Inno - uses: pwall2222/inno-setup-download@v0.0.4 + - name: Download Inno Setup installer + run: Invoke-WebRequest -Uri "https://jrsoftware.org/download.php/is.exe" -OutFile "is.exe" + - name: Install Inno Setup silently + run: .\is.exe /verysilent /dir="C:\Program Files\InnoSetup" - name: Create the EXE Installer working-directory: ./utils From 52379a47b7f900adf6162a5f6aeed380077e2a58 Mon Sep 17 00:00:00 2001 From: David Wiens Date: Thu, 25 Jul 2024 10:13:21 -0700 Subject: [PATCH 2/2] Update version to 1.0.5 --- CHANGELOG.md | 2 ++ src/version.json | 2 +- utils/Setup.iss | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8091b2a..1cb845b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ # Change log +- 1.0.5 - Update dependencies via Dependabot. Rework Github Action workflow. + - 1.0.4 - Address SyntaxWarning that pops up in Python 3.12 - 1.0.3 - Address bug related to version file path diff --git a/src/version.json b/src/version.json index cd83dcd..e4b4576 100644 --- a/src/version.json +++ b/src/version.json @@ -1,4 +1,4 @@ { "name": "lpm", - "version": "1.0.4" + "version": "1.0.5" } \ No newline at end of file diff --git a/utils/Setup.iss b/utils/Setup.iss index 4809571..879e278 100644 --- a/utils/Setup.iss +++ b/utils/Setup.iss @@ -2,7 +2,7 @@ ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! #define MyAppName "LPM" -#define MyAppVersion "1.0.4" +#define MyAppVersion "1.0.5" #define MyAppPublisher "Loupe" #define MyAppURL "https://loupe.team/" #define MyAppExeName "LPM.cmd"