diff --git a/installer_setup_script.iss b/installer_setup_script.iss index 4b546bcd..4da0429e 100644 --- a/installer_setup_script.iss +++ b/installer_setup_script.iss @@ -3,7 +3,8 @@ #define MyAppPublisher "Gold87" #define MyAppURL "https://github.com/gold872/elastic-dashboard/" #define MyAppExeName "elastic_dashboard.exe" -#define ApplicationVersion GetStringFileInfo('build\windows\x64\runner\Release\elastic_dashboard.exe', 'ProductVersion') +#define AppVersionName GetStringFileInfo('build\windows\x64\runner\Release\elastic_dashboard.exe', 'ProductVersion') +#define ApplicationVersion GetVersionNumbersString('build\windows\x64\runner\Release\elastic_dashboard.exe') [Setup] ; NOTE: The value of AppId uniquely identifies this application. Do not use the same AppId value in installers for other applications. @@ -11,7 +12,7 @@ AppId={{2746922E-A2AC-4987-AF02-714F429C7C77} AppName={#MyAppName} AppVersion={#ApplicationVersion} -AppVerName={#MyAppName} {#ApplicationVersion} +AppVerName={#MyAppName} {#AppVersionName} VersionInfoVersion={#ApplicationVersion} AppPublisher={#MyAppPublisher} AppPublisherURL={#MyAppURL} diff --git a/pubspec.yaml b/pubspec.yaml index 4f9e7ee0..5fbc451d 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: elastic_dashboard description: A simple and modern dashboard for FRC. publish_to: 'none' -version: 2024.2.0 +version: 2025.0.0-beta-1 environment: sdk: '>=3.0.2 <4.0.0'