diff --git a/CHANGELOG.md b/CHANGELOG.md index 88b12f1..54e1299 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,13 +2,13 @@ This document includes the same release notes as in the [Releases](https://github.com/valinet/ExplorerPatcher/releases) section on GitHub. -## 22000.466.41 +## 22000.469.41 Tested on OS build 22000.434. #### New features -* Built-in support for OS builds 22000.434, 22000.438, and 22000.466 +* Built-in support for OS builds 22000.434, 22000.438, 22000.466, and 22000.469 * Ability to choose a Windows 10 or Windows 11 Start button style for the Windows 10 taskbar (#436, thanks @krlvm) * Support for screen readers in the Properties window (#627) (.1) * Option to disable `Office` hotkeys (`Ctrl`+`Alt`+`Shift`+`Windows` key combinations) (#661) (.4) diff --git a/ExplorerPatcher/symbols.c b/ExplorerPatcher/symbols.c index 137a817..829362f 100644 --- a/ExplorerPatcher/symbols.c +++ b/ExplorerPatcher/symbols.c @@ -654,7 +654,7 @@ BOOL LoadSymbols(symbols_addr* symbols_PTRS, HMODULE hModule) symbols_PTRS->twinui_pcshell_PTRS[8] = 0x4D780; bIsTwinuiPcshellHardcoded = TRUE; } - else if (!_stricmp(hash, "6399b5913a7048c4422e3cfb03860da2")) // 466 + else if (!_stricmp(hash, "6399b5913a7048c4422e3cfb03860da2") || !_stricmp(hash, "99dea5939a2b1945b2d3fd65433ca401")) // 466, 469 { symbols_PTRS->twinui_pcshell_PTRS[0] = 0x229fa6; symbols_PTRS->twinui_pcshell_PTRS[1] = 0x5dc500; diff --git a/version.h b/version.h index 58bd49b..5b861a7 100644 --- a/version.h +++ b/version.h @@ -1,7 +1,7 @@ #define VER_MAJOR 22000 -#define VER_MINOR 466 +#define VER_MINOR 469 #define VER_BUILD_HI 41 -#define VER_BUILD_LO 15 +#define VER_BUILD_LO 16 #define VER_FLAGS VS_FF_PRERELEASE @@ -12,5 +12,5 @@ #define VER_STR(arg) #arg // The String form of the version numbers -#define VER_FILE_STRING VALUE "FileVersion", "22000.466.41.15" -#define VER_PRODUCT_STRING VALUE "ProductVersion", "22000.466.41.15" +#define VER_FILE_STRING VALUE "FileVersion", "22000.469.41.16" +#define VER_PRODUCT_STRING VALUE "ProductVersion", "22000.469.41.16"