Skip to content

Commit

Permalink
owlcms-launcher v2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jflamy committed Feb 24, 2025
1 parent dfb1c21 commit b0e29bf
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions FyneApp.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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

2 changes: 1 addition & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
8 changes: 4 additions & 4 deletions dist/resource.rc
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions dist/setup.iss
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion release.sh
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit b0e29bf

Please sign in to comment.