Skip to content

Commit c7fa949

Browse files
committed
Bump version to 3.2.3
1 parent 2f36b27 commit c7fa949

File tree

5 files changed

+9
-10
lines changed

5 files changed

+9
-10
lines changed

Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<key>CFBundlePackageType</key>
1818
<string>APPL</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>3.2.2</string>
20+
<string>3.2.3</string>
2121
<key>CFBundleSignature</key>
2222
<string>SLA3</string>
2323
<key>NSPrincipalClass</key>
@@ -29,7 +29,7 @@
2929
<key>NSRequiresAquaSystemAppearance</key>
3030
<false/>
3131
<key>CFBundleVersion</key>
32-
<string>3.2.2</string>
32+
<string>3.2.3</string>
3333
<key>CFBundleDocumentTypes</key>
3434
<array>
3535
<dict>

dist/makebuild.ps1

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
$version = "3.2.2"
1+
$version = "3.2.3"
22
$rev_short = Invoke-Expression "git.exe rev-parse --short HEAD"
33

44
# Check for 7-zip install
@@ -90,7 +90,6 @@ Copy-Item (resolve-path ".\slade.pk3") "$releasedir" -Force
9090
# Win32
9191
Copy-Item (resolve-path ".\SLADE.exe") "$releasedir32" -Force
9292
Copy-Item (resolve-path ".\SLADE.pdb") "$releasedir32" -Force
93-
Copy-Item (resolve-path ".\dll32\libfluidsynth.dll") "$releasedir32" -Force
9493
# x64
9594
Copy-Item (resolve-path ".\SLADE-x64.exe") "$releasedir64\SLADE.exe" -Force
9695
Copy-Item (resolve-path ".\SLADE-x64.pdb") "$releasedir64\SLADE.pdb" -Force
@@ -114,7 +113,6 @@ if ($buildbinaries.ToLower() -eq "y")
114113

115114
Write-Host "`nBuiling win32 binaries 7z..." -foregroundcolor yellow
116115
& $7zpath a -t7z "$releasedir\slade_${version}${timestamp}.7z" `
117-
"$releasedir32\libfluidsynth.dll" `
118116
"$releasedir32\SLADE.exe" `
119117
"$releasedir32\SLADE.pdb" `
120118
"$releasedir\slade.pk3"

msvc/SLADE.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ END
5151
//
5252

5353
VS_VERSION_INFO VERSIONINFO
54-
FILEVERSION 3,2,2
55-
PRODUCTVERSION 3,2,2
54+
FILEVERSION 3,2,3
55+
PRODUCTVERSION 3,2,3
5656
FILEFLAGSMASK 0x3fL
5757
#ifdef _DEBUG
5858
FILEFLAGS 0x1L
@@ -68,12 +68,12 @@ BEGIN
6868
BLOCK "0c0904b0"
6969
BEGIN
7070
VALUE "FileDescription", "SLADE"
71-
VALUE "FileVersion", "3.2.2"
71+
VALUE "FileVersion", "3.2.3"
7272
VALUE "InternalName", "SLADE.exe"
7373
VALUE "LegalCopyright", "Copyright (C) 2023"
7474
VALUE "OriginalFilename", "SLADE.exe"
7575
VALUE "ProductName", "SLADE"
76-
VALUE "ProductVersion", "3.2.2"
76+
VALUE "ProductVersion", "3.2.3"
7777
END
7878
END
7979
BLOCK "VarFileInfo"

net.mancubus.SLADE.metainfo.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@
5858
</screenshot>
5959
</screenshots>
6060
<releases>
61+
<release date="2023-05-31" version="3.2.3"/>
6162
<release date="2023-04-01" version="3.2.2"/>
6263
<release date="2022-05-13" version="3.2.1"/>
6364
<release date="2022-04-12" version="3.2.0"/>

src/Application/App.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ bool exiting = false;
8080
std::thread::id main_thread_id;
8181

8282
// Version
83-
Version version_num{ 3, 2, 2, 0 };
83+
Version version_num{ 3, 2, 3, 0 };
8484

8585
// Directory paths
8686
string dir_data;

0 commit comments

Comments
 (0)