From b0e29bf435f1c9676af9d46d957a37497b7105e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20Lamy?= Date: Mon, 24 Feb 2025 16:15:46 -0500 Subject: [PATCH] owlcms-launcher v2.0.1 --- .github/workflows/release.yaml | 2 +- FyneApp.toml | 4 ++-- RELEASE.md | 2 +- dist/resource.rc | 8 ++++---- dist/setup.iss | 4 ++-- release.sh | 2 +- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index a880bcd..d0e65f3 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -302,7 +302,7 @@ jobs: $minor = [int]$versionParts[1] $patch = [int]$versionParts[2] $computed = (($patch + 1) * 1000) + $fourthPart - $fullVersion = "$($major).$($minor).$($patch).$($fourthPart)" + $fullVersion = "$($major).$($minor).$($computed).0" Write-Host "Using version: $fullVersion" diff --git a/FyneApp.toml b/FyneApp.toml index 5b0f517..42a38d0 100644 --- a/FyneApp.toml +++ b/FyneApp.toml @@ -2,6 +2,6 @@ Icon = "Icon.png" Name = "owlcms" ID = "app.owlcms.controlpanel" - Version = "2.0.0" - Build = 0400 + Version = "2.0.1" + Build = 1400 diff --git a/RELEASE.md b/RELEASE.md index 9b58d6b..9882ab6 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -8,8 +8,8 @@ The control panel is installed once. It will automatically download the current ### Change Log +- 2.0.1-rc01: experimental unsigned MSIX installer, control panel identical to 2.0.0 - 2.0.0: Support for slow connections, better startup progress indicators. -- 1.9.4-alpha: experimental MSIX installer, no changes to control panel. - 1.9.3: Single installer for macOS. - 1.9.2: Ask for confirmation if closing the window while owlcms is running since this will stop owlcms - 1.9.2: Removed the Windows installer, due to virus false detection on Windows. Instructions for owlcms now refer to using the executable directly. diff --git a/dist/resource.rc b/dist/resource.rc index 88dfdb5..7921b6e 100644 --- a/dist/resource.rc +++ b/dist/resource.rc @@ -1,6 +1,6 @@ VS_VERSION_INFO VERSIONINFO -FILEVERSION 2,0,0,400 -PRODUCTVERSION 2,0,0,400 +FILEVERSION 2,0,1,400 +PRODUCTVERSION 2,0,1,400 FILEFLAGSMASK 0x3fL FILEFLAGS 0 FILEOS 0x40004L @@ -13,12 +13,12 @@ BEGIN BEGIN VALUE "CompanyName", "owlcms" VALUE "FileDescription", "owlcms Control Panel" - VALUE "FileVersion", "2.0.0" + VALUE "FileVersion", "2.0.1" VALUE "InternalName", "owlcms" VALUE "LegalCopyright", "© 2024 Jean-François Lamy" VALUE "OriginalFilename", "owlcms.exe" VALUE "ProductName", "owlcms Control Panel" - VALUE "ProductVersion", "2.0.0" + VALUE "ProductVersion", "2.0.1" END END BLOCK "VarFileInfo" diff --git a/dist/setup.iss b/dist/setup.iss index c81f4df..c571ad3 100644 --- a/dist/setup.iss +++ b/dist/setup.iss @@ -1,11 +1,11 @@ [Setup] AppName=owlcms Control Panel -AppVersion=2.0.0400 +AppVersion=2.0.1400 AppPublisher=Jean-François Lamy AppPublisherURL=https://owlcms.jflamy.dev AppSupportURL=https://groups.google.com/g/owlcms AppUpdatesURL=https://github.com/owlcms/owlcms-controlpanel -VersionInfoVersion=2.0.0400 +VersionInfoVersion=2.0.1400 VersionInfoCompany=owlcms VersionInfoDescription=owlcms Control Panel Installer VersionInfoCopyright=© 2024 Jean-François Lamy diff --git a/release.sh b/release.sh index cc0bba8..2a345c0 100755 --- a/release.sh +++ b/release.sh @@ -1,5 +1,5 @@ #!/bin/bash -x -export TAG=v2.0.0 +export TAG=v2.0.1 git tag -d ${TAG} git push origin --delete ${TAG} gh release delete ${TAG} --repo owlcms/owlcms-controlpanel --yes