Skip to content

Commit

Permalink
Bump version to NewUI Preview 15
Browse files Browse the repository at this point in the history
  • Loading branch information
elvissteinjr committed Jul 15, 2024
1 parent 0930995 commit bea44af
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Binary file modified src/DesktopPlus/DesktopPlus.rc
Binary file not shown.
Binary file modified src/DesktopPlusUI/DesktopPlusUI.rc
Binary file not shown.
8 changes: 4 additions & 4 deletions src/DesktopPlusWinRT/DesktopPlusWinRT.rc
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_NEUTRAL
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 2,9,9,18
PRODUCTVERSION 2,9,9,18
FILEVERSION 2,9,9,19
PRODUCTVERSION 2,9,9,19
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -43,10 +43,10 @@ BEGIN
BEGIN
VALUE "CompanyName", "elvissteinjr"
VALUE "FileDescription", "Desktop+ WinRT Wrapper"
VALUE "FileVersion", "2.9.9.18"
VALUE "FileVersion", "2.9.9.19"
VALUE "LegalCopyright", "Copyright � 2019 - 2024 elvissteinjr"
VALUE "ProductName", "Desktop+ WinRT"
VALUE "ProductVersion", "2.9.9.18"
VALUE "ProductVersion", "2.9.9.19"
END
END
BLOCK "VarFileInfo"
Expand Down
2 changes: 1 addition & 1 deletion src/Shared/Logging.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//Version string logged and displayed in the UI
//DPLUS_SHA is set externally for nightly builds to use the commit hash in version string
//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
constexpr const char* const k_pch_DesktopPlusVersion = (sizeof("" DPLUS_SHA) <= 1) ? "Desktop+ NewUI Preview 14" : "Desktop+ NewUI " DPLUS_SHA;
constexpr const char* const k_pch_DesktopPlusVersion = (sizeof("" DPLUS_SHA) <= 1) ? "Desktop+ NewUI Preview 15" : "Desktop+ NewUI " DPLUS_SHA;

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

0 comments on commit bea44af

Please sign in to comment.