Skip to content

Commit 224ab84

Browse files
committed
Bump version to 3.0.2
1 parent aa4bf18 commit 224ab84

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

src/DesktopPlus/DesktopPlus.rc

0 Bytes
Binary file not shown.

src/DesktopPlusUI/DesktopPlusUI.rc

0 Bytes
Binary file not shown.

src/DesktopPlusWinRT/DesktopPlusWinRT.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_NEUTRAL
2525
//
2626

2727
VS_VERSION_INFO VERSIONINFO
28-
FILEVERSION 3,0,1,0
29-
PRODUCTVERSION 3,0,1,0
28+
FILEVERSION 3,0,2,0
29+
PRODUCTVERSION 3,0,2,0
3030
FILEFLAGSMASK 0x3fL
3131
#ifdef _DEBUG
3232
FILEFLAGS 0x1L
@@ -43,10 +43,10 @@ BEGIN
4343
BEGIN
4444
VALUE "CompanyName", "elvissteinjr"
4545
VALUE "FileDescription", "Desktop+ WinRT Wrapper"
46-
VALUE "FileVersion", "3.0.1.0"
46+
VALUE "FileVersion", "3.0.2.0"
4747
VALUE "LegalCopyright", "Copyright � 2019 - 2024 elvissteinjr"
4848
VALUE "ProductName", "Desktop+ WinRT"
49-
VALUE "ProductVersion", "3.0.1.0"
49+
VALUE "ProductVersion", "3.0.2.0"
5050
END
5151
END
5252
BLOCK "VarFileInfo"

src/Shared/Logging.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
//Version string logged and displayed in the UI
88
//DPLUS_SHA is set externally for nightly builds to use the commit hash in version string
99
//DPLUS_SHA is also always defined but usually empty... so we detect this with some constexpr trickery instead of messing with the build system even more
10-
constexpr const char* const k_pch_DesktopPlusVersion = (sizeof("" DPLUS_SHA) <= 1) ? "Desktop+ 3.0.1" : "Desktop+ " DPLUS_SHA;
10+
constexpr const char* const k_pch_DesktopPlusVersion = (sizeof("" DPLUS_SHA) <= 1) ? "Desktop+ 3.0.2" : "Desktop+ " DPLUS_SHA;
1111

1212
//Version written to config file
1313
//Only really increased when backward incompatible changes were made (we fall back to default values when things are missing usually)

0 commit comments

Comments
 (0)