Skip to content

Commit

Permalink
Bump version to 3.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
sirjuddington committed May 28, 2024
1 parent 8b20bb0 commit 74dda70
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>3.2.4</string>
<string>3.2.6</string>
<key>CFBundleSignature</key>
<string>SLA3</string>
<key>NSPrincipalClass</key>
Expand All @@ -29,7 +29,7 @@
<key>NSRequiresAquaSystemAppearance</key>
<false/>
<key>CFBundleVersion</key>
<string>3.2.4</string>
<string>3.2.6</string>
<key>CFBundleDocumentTypes</key>
<array>
<dict>
Expand Down
4 changes: 2 additions & 2 deletions msvc/SLADE.rc
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ END
// Version
//

#define SLADE_VERSION 3,2,5,0
#define SLADE_VERSION_STR "3.2.5"
#define SLADE_VERSION 3,2,6,0
#define SLADE_VERSION_STR "3.2.6"
#define SLADE_COPYRIGHT "Copyright (C) 2008-2024"

VS_VERSION_INFO VERSIONINFO
Expand Down
2 changes: 1 addition & 1 deletion msvc/makerelease.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$version = "3.2.5"
$version = "3.2.6"
$rev_short = Invoke-Expression "git.exe rev-parse --short HEAD"

# Check for 7-zip install
Expand Down
2 changes: 1 addition & 1 deletion msvc/updateversion.ps1
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Current version
$version_major = "3"
$version_minor = "2"
$version_revision = "5"
$version_revision = "6"
$version_beta = "0"

# Prompt for new version numbers
Expand Down
1 change: 1 addition & 0 deletions net.mancubus.SLADE.metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@
</screenshot>
</screenshots>
<releases>
<release date="2024-05-28" version="3.2.6"/>
<release date="2023-12-19" version="3.2.5"/>
<release date="2023-06-21" version="3.2.4"/>
<release date="2023-05-31" version="3.2.3"/>
Expand Down
2 changes: 1 addition & 1 deletion src/Application/App.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ bool exiting = false;
std::thread::id main_thread_id;

// Version
Version version_num{ 3, 2, 5, 0 };
Version version_num{ 3, 2, 6, 0 };

// Directory paths
string dir_data;
Expand Down
2 changes: 1 addition & 1 deletion win_installer/include/Defines.iss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#define MyAppName "SLADE"
#define MyAppVersion "3.2.5"
#define MyAppVersion "3.2.6"
#define MyAppURL "https://slade.mancubus.net"
#define MyAppExeName "SLADE.exe"
#define MyAppPublisher "sirjuddington"

0 comments on commit 74dda70

Please sign in to comment.