Skip to content

Commit

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

# Check for 7-zip install
Expand Down Expand Up @@ -90,7 +90,6 @@ Copy-Item (resolve-path ".\slade.pk3") "$releasedir" -Force
# Win32
Copy-Item (resolve-path ".\SLADE.exe") "$releasedir32" -Force
Copy-Item (resolve-path ".\SLADE.pdb") "$releasedir32" -Force
Copy-Item (resolve-path ".\dll32\libfluidsynth.dll") "$releasedir32" -Force
# x64
Copy-Item (resolve-path ".\SLADE-x64.exe") "$releasedir64\SLADE.exe" -Force
Copy-Item (resolve-path ".\SLADE-x64.pdb") "$releasedir64\SLADE.pdb" -Force
Expand All @@ -114,7 +113,6 @@ if ($buildbinaries.ToLower() -eq "y")

Write-Host "`nBuiling win32 binaries 7z..." -foregroundcolor yellow
& $7zpath a -t7z "$releasedir\slade_${version}${timestamp}.7z" `
"$releasedir32\libfluidsynth.dll" `
"$releasedir32\SLADE.exe" `
"$releasedir32\SLADE.pdb" `
"$releasedir\slade.pk3"
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,2
PRODUCTVERSION 3,2,2
FILEVERSION 3,2,3
PRODUCTVERSION 3,2,3
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -68,12 +68,12 @@ BEGIN
BLOCK "0c0904b0"
BEGIN
VALUE "FileDescription", "SLADE"
VALUE "FileVersion", "3.2.2"
VALUE "FileVersion", "3.2.3"
VALUE "InternalName", "SLADE.exe"
VALUE "LegalCopyright", "Copyright (C) 2023"
VALUE "OriginalFilename", "SLADE.exe"
VALUE "ProductName", "SLADE"
VALUE "ProductVersion", "3.2.2"
VALUE "ProductVersion", "3.2.3"
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-05-31" version="3.2.3"/>
<release date="2023-04-01" version="3.2.2"/>
<release date="2022-05-13" version="3.2.1"/>
<release date="2022-04-12" version="3.2.0"/>
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, 2, 0 };
Version version_num{ 3, 2, 3, 0 };

// Directory paths
string dir_data;
Expand Down

0 comments on commit c7fa949

Please sign in to comment.