Skip to content

Commit

Permalink
Bump version to 3.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
sirjuddington committed Jun 21, 2023
1 parent a6fe39f commit 7b70e10
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 9 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.3</string>
<string>3.2.4</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.3</string>
<string>3.2.4</string>
<key>CFBundleDocumentTypes</key>
<array>
<dict>
Expand Down
2 changes: 1 addition & 1 deletion dist/makebuild.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$version = "3.2.3"
$version = "3.2.4"
$rev_short = Invoke-Expression "git.exe rev-parse --short HEAD"

# Check for 7-zip install
Expand Down
8 changes: 4 additions & 4 deletions msvc/SLADE.rc
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ END
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 3,2,3
PRODUCTVERSION 3,2,3
FILEVERSION 3,2,4
PRODUCTVERSION 3,2,4
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -68,12 +68,12 @@ BEGIN
BLOCK "0c0904b0"
BEGIN
VALUE "FileDescription", "SLADE"
VALUE "FileVersion", "3.2.3"
VALUE "FileVersion", "3.2.4"
VALUE "InternalName", "SLADE.exe"
VALUE "LegalCopyright", "Copyright (C) 2023"
VALUE "OriginalFilename", "SLADE.exe"
VALUE "ProductName", "SLADE"
VALUE "ProductVersion", "3.2.3"
VALUE "ProductVersion", "3.2.4"
END
END
BLOCK "VarFileInfo"
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 @@ -58,6 +58,7 @@
</screenshot>
</screenshots>
<releases>
<release date="2023-06-21" version="3.2.4"/>
<release date="2023-05-31" version="3.2.3"/>
<release date="2023-04-01" version="3.2.2"/>
<release date="2022-05-13" version="3.2.1"/>
Expand Down
2 changes: 1 addition & 1 deletion src/Application/App.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ bool exiting = false;
std::thread::id main_thread_id;

// Version
Version version_num{ 3, 2, 3, 0 };
Version version_num{ 3, 2, 4, 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.3"
#define MyAppVersion "3.2.4"
#define MyAppURL "https://slade.mancubus.net"
#define MyAppExeName "SLADE.exe"
#define MyAppPublisher "sirjuddington"

0 comments on commit 7b70e10

Please sign in to comment.