From 6d62d6ecff93fe7563445d1b659c816c63398773 Mon Sep 17 00:00:00 2001 From: Idhrendur Date: Sat, 9 Mar 2024 18:07:08 -0800 Subject: [PATCH] Prep for version 0.4 (#587) --- .../workflows/windows_build_test_and_push.yml | 28 +++++++++---------- Vic3ToHoI4-Installer.iss | 2 +- data/readme.txt | 4 +-- data/version.txt | 10 +++---- docs/release_checklist.txt | 3 ++ 5 files changed, 25 insertions(+), 22 deletions(-) diff --git a/.github/workflows/windows_build_test_and_push.yml b/.github/workflows/windows_build_test_and_push.yml index 6a1d188e..58dfff48 100644 --- a/.github/workflows/windows_build_test_and_push.yml +++ b/.github/workflows/windows_build_test_and_push.yml @@ -69,13 +69,13 @@ jobs: echo '# Version info' | out-file data/version.txt -encoding ASCII echo '' | out-file data/version.txt -encoding ASCII -append echo 'version = "${{ steps.version_number.outputs.major }}.${{ steps.version_number.outputs.minor }}.${{ steps.version_number.outputs.patch }}"' | out-file data/version.txt -encoding ASCII -append - echo 'name = "Chen"' | out-file data/version.txt -encoding ASCII -append + echo 'name = "TBD"' | out-file data/version.txt -encoding ASCII -append echo 'source = "Vic3"' | out-file data/version.txt -encoding ASCII -append echo 'minSource = "1.3"' | out-file data/version.txt -encoding ASCII -append - echo 'maxSource = "1.5"' | out-file data/version.txt -encoding ASCII -append + echo 'maxSource = "1.6"' | out-file data/version.txt -encoding ASCII -append echo 'target = "HoI4"' | out-file data/version.txt -encoding ASCII -append - echo 'minTarget = "1.13"' | out-file data/version.txt -encoding ASCII -append - echo 'maxTarget = "1.13"' | out-file data/version.txt -encoding ASCII -append + echo 'minTarget = "1.14"' | out-file data/version.txt -encoding ASCII -append + echo 'maxTarget = "1.14"' | out-file data/version.txt -encoding ASCII -append cat data/version.txt - name: "Build solution" @@ -110,16 +110,16 @@ jobs: artifacts: Vic3ToHoI4-${{ steps.version_number.outputs.major }}.${{ steps.version_number.outputs.minor }}-win-x64.zip, Output\Vic3ToHoI4-${{ steps.version_number.outputs.major }}.${{ steps.version_number.outputs.minor }}-win-x64.exe token: ${{ secrets.API_TOKEN_GITHUB }} - - name: "Upload binaries to latest release" - if: ${{ github.event_name == 'push' }} - uses: ncipollo/release-action@v1 - with: - tag: latest - allowUpdates: true - omitBodyDuringUpdate: true - omitNameDuringUpdate: true - artifacts: Vic3ToHoI4-latest-win-x64.zip, Output\Vic3ToHoI4-latest-win-x64.exe - token: ${{ secrets.API_TOKEN_GITHUB }} + # - name: "Upload binaries to latest release" + # if: ${{ github.event_name == 'push' }} + # uses: ncipollo/release-action@v1 + # with: + # tag: latest + # allowUpdates: true + # omitBodyDuringUpdate: true + # omitNameDuringUpdate: true + # artifacts: Vic3ToHoI4-latest-win-x64.zip, Output\Vic3ToHoI4-latest-win-x64.exe + # token: ${{ secrets.API_TOKEN_GITHUB }} - name: "Prepare pull request artifact" if: ${{ github.event_name == 'pull_request' }} diff --git a/Vic3ToHoI4-Installer.iss b/Vic3ToHoI4-Installer.iss index ed25dfa3..0210209f 100644 --- a/Vic3ToHoI4-Installer.iss +++ b/Vic3ToHoI4-Installer.iss @@ -2,7 +2,7 @@ ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! #define MyAppName "Vic3 to HoI4" -#define MyAppVersion "0.3 Chen" +#define MyAppVersion "0.4 TBD" #define MyAppPublisher "Paradox Game Converters Group" #define MyAppURL "https://paradoxgameconverters.com/" #define MyAppExeName "ConverterFrontend.exe" diff --git a/data/readme.txt b/data/readme.txt index 0029f98f..c861a67c 100644 --- a/data/readme.txt +++ b/data/readme.txt @@ -11,8 +11,8 @@ Documentation: https://hoi4.paradoxwikis.com/Victoria_3_to_Hearts_of_Iron_IV_con ---- SUPPORTED VERSIONS ---- -Hoi4 - 1.13 -Vic3 - 1.3-1.5 +Hoi4 - 1.14 +Vic3 - 1.3-1.6 ---- diff --git a/data/version.txt b/data/version.txt index c4fc1f33..80414e4b 100644 --- a/data/version.txt +++ b/data/version.txt @@ -1,10 +1,10 @@ # Version info -version = "0.3.0" -name = "Chen" +version = "0.4.0" +name = "TBD" source = "Vic3" minSource = "1.3" -maxSource = "1.5" +maxSource = "1.6" target = "HoI4" -minTarget = "1.13" -maxTarget = "1.13" +minTarget = "1.14" +maxTarget = "1.14" diff --git a/docs/release_checklist.txt b/docs/release_checklist.txt index cedc82f8..877ce7f1 100644 --- a/docs/release_checklist.txt +++ b/docs/release_checklist.txt @@ -1,8 +1,11 @@ * Add new banner to data/resources/images * Update data/version.txt with new version and name + * Name is currently TBD. Update and remove this line prior to release. * Update Vic3ToHoI4-Installer.iss with new version and name + * Name is currently TBD. Update and remove this line prior to release. * Update data/readme.txt with new version * Update .github/workflows/windows_build_test_and_push.yml with new name, filename, tag, and artifact + * Many workflows disabled until release is ready. Reenable them prior to release and delete this line. * Create commit with MINOR or MAJOR in the commit message as appropriate, and tagged with new version * Push and merge on github * Wait for build, confirm updates