diff --git a/Info.plist b/Info.plist index ae68c7585..e1c1c6927 100644 --- a/Info.plist +++ b/Info.plist @@ -17,7 +17,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 3.2.6 + 3.2.7 CFBundleSignature SLA3 NSPrincipalClass @@ -29,7 +29,7 @@ NSRequiresAquaSystemAppearance CFBundleVersion - 3.2.6 + 3.2.7 CFBundleDocumentTypes diff --git a/msvc/SLADE.rc b/msvc/SLADE.rc index 0addbc208..0cb1e469c 100644 --- a/msvc/SLADE.rc +++ b/msvc/SLADE.rc @@ -50,8 +50,8 @@ END // Version // -#define SLADE_VERSION 3,2,6,0 -#define SLADE_VERSION_STR "3.2.6" +#define SLADE_VERSION 3,2,7,0 +#define SLADE_VERSION_STR "3.2.7" #define SLADE_COPYRIGHT "Copyright (C) 2008-2024" VS_VERSION_INFO VERSIONINFO diff --git a/msvc/makerelease.ps1 b/msvc/makerelease.ps1 index d226fc078..b7e3fa05d 100644 --- a/msvc/makerelease.ps1 +++ b/msvc/makerelease.ps1 @@ -1,4 +1,4 @@ -$version = "3.2.6" +$version = "3.2.7" $rev_short = Invoke-Expression "git.exe rev-parse --short HEAD" # Check for 7-zip install diff --git a/msvc/updateversion.ps1 b/msvc/updateversion.ps1 index 8a9d9908e..eac3653c2 100644 --- a/msvc/updateversion.ps1 +++ b/msvc/updateversion.ps1 @@ -1,7 +1,7 @@ # Current version $version_major = "3" $version_minor = "2" -$version_revision = "6" +$version_revision = "7" $version_beta = "0" # Prompt for new version numbers diff --git a/net.mancubus.SLADE.metainfo.xml b/net.mancubus.SLADE.metainfo.xml index 07eff903a..205530b28 100644 --- a/net.mancubus.SLADE.metainfo.xml +++ b/net.mancubus.SLADE.metainfo.xml @@ -64,6 +64,7 @@ + diff --git a/src/Application/App.cpp b/src/Application/App.cpp index b64f67106..303afb775 100644 --- a/src/Application/App.cpp +++ b/src/Application/App.cpp @@ -84,7 +84,7 @@ std::thread::id main_thread_id; bool win_darkmode_enabled = false; // Version -Version version_num{ 3, 2, 6, 0 }; +Version version_num{ 3, 2, 7, 0 }; // Directory paths string dir_data; diff --git a/win_installer/include/Defines.iss b/win_installer/include/Defines.iss index 1b47c725c..d5657319a 100644 --- a/win_installer/include/Defines.iss +++ b/win_installer/include/Defines.iss @@ -1,5 +1,5 @@ #define MyAppName "SLADE" -#define MyAppVersion "3.2.6" +#define MyAppVersion "3.2.7" #define MyAppURL "https://slade.mancubus.net" #define MyAppExeName "SLADE.exe" #define MyAppPublisher "sirjuddington"