Drop text part from InnoSetup version string

Only (up to 4) numbers are supported.
This commit is contained in:
Cimbali
2025-06-20 08:48:12 +01:00
parent 61ea58524c
commit 033f1e15b7
2 changed files with 2 additions and 1 deletions

View File

@@ -1,5 +1,5 @@
#define MyAppName "InputLeap"
#define MyAppVersion "@INPUTLEAP_VERSION_MAJOR@.@INPUTLEAP_VERSION_MINOR@.@INPUTLEAP_VERSION_PATCH@.@INPUTLEAP_VERSION_DESC@"
#define MyAppVersion "@INPUTLEAP_VERSION_MAJOR@.@INPUTLEAP_VERSION_MINOR@.@INPUTLEAP_VERSION_PATCH@"
#define MyAppTextVersion "@INPUTLEAP_VERSION@"
#define MyAppPublisher "InputLeap contributors"
#define MyAppURL "https://github.com/input-leap/input-leap/wiki"

View File

@@ -0,0 +1 @@
Fix Windows release builds by making installer “product version” numerical only.