Skip to content

Commit 447f877

Browse files
committed
Bump version to 3.2.10
1 parent d76c6c9 commit 447f877

File tree

7 files changed

+10
-9
lines changed

7 files changed

+10
-9
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.9</string>
20+
<string>3.2.10</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.9</string>
32+
<string>3.2.10</string>
3333
<key>CFBundleDocumentTypes</key>
3434
<array>
3535
<dict>

msvc/SLADE.rc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ END
5050
// Version
5151
//
5252

53-
#define SLADE_VERSION 3,2,9,0
54-
#define SLADE_VERSION_STR "3.2.9"
55-
#define SLADE_COPYRIGHT "Copyright (C) 2008-2025"
53+
#define SLADE_VERSION 3,2,10,0
54+
#define SLADE_VERSION_STR "3.2.10"
55+
#define SLADE_COPYRIGHT "Copyright (C) 2008-2026"
5656

5757
VS_VERSION_INFO VERSIONINFO
5858
FILEVERSION SLADE_VERSION

msvc/makerelease.ps1

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

44
# Check for 7-zip install

msvc/updateversion.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Current version
22
$version_major = "3"
33
$version_minor = "2"
4-
$version_revision = "9"
4+
$version_revision = "10"
55
$version_beta = "0"
66

77
# Prompt for new version numbers

net.mancubus.SLADE.metainfo.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@
6969
</screenshot>
7070
</screenshots>
7171
<releases>
72+
<release date="2026-01-05" version="3.2.10"/>
7273
<release date="2025-11-16" version="3.2.9"/>
7374
<release date="2025-10-21" version="3.2.8"/>
7475
<release date="2024-12-25" version="3.2.7"/>

src/Application/App.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ std::thread::id main_thread_id;
8484
bool win_darkmode_enabled = false;
8585

8686
// Version
87-
Version version_num{ 3, 2, 9, 0 };
87+
Version version_num{ 3, 2, 10, 0 };
8888

8989
// Directory paths
9090
string dir_data;

win_installer/include/Defines.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#define MyAppName "SLADE"
2-
#define MyAppVersion "3.2.9"
2+
#define MyAppVersion "3.2.10"
33
#define MyAppURL "https://slade.mancubus.net"
44
#define MyAppExeName "SLADE.exe"
55
#define MyAppPublisher "sirjuddington"

0 commit comments

Comments
 (0)