diff --git a/CHANGELOG.md b/CHANGELOG.md index d099e0f..6a989a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,12 +2,13 @@ This document includes the same release notes as in the [Releases](https://github.com/valinet/ExplorerPatcher/releases) section on GitHub. -## 22000.348.40 +## 22000.376.40 -Tested on build 22000.348. +Tested on OS build 22000.376. #### Highlights +* Built-in support for OS build 22000.376 (.12) * Primary taskbar remembers position when moved to a secondary monitor (multiple issues, like #504) * Ability to set Control Center as network icon action (merged #492) * Added possibility to use the original Windows 10 (Alt-Tab) window switcher; thus, the available options are now: diff --git a/ExplorerPatcher/symbols.c b/ExplorerPatcher/symbols.c index e7d85d2..cd72022 100644 --- a/ExplorerPatcher/symbols.c +++ b/ExplorerPatcher/symbols.c @@ -610,7 +610,7 @@ BOOL LoadSymbols(symbols_addr* symbols_PTRS, HMODULE hModule) symbols_PTRS->twinui_pcshell_PTRS[8] = 0x52980; bIsTwinuiPcshellHardcoded = TRUE; } - else if (!_stricmp(hash, "03487ccd5bc5a194fad61b616b0a2b28") || !_stricmp(hash, "3f6ef12a59a2f84a3296771ea7753e01")) // 346, 348 + else if (!_stricmp(hash, "03487ccd5bc5a194fad61b616b0a2b28") || !_stricmp(hash, "3f6ef12a59a2f84a3296771ea7753e01")) // 346, 348, 376 { symbols_PTRS->twinui_pcshell_PTRS[0] = 0x21B036; symbols_PTRS->twinui_pcshell_PTRS[1] = 0x5CD740; @@ -640,7 +640,7 @@ BOOL LoadSymbols(symbols_addr* symbols_PTRS, HMODULE hModule) symbols_PTRS->startdocked_PTRS[4] = 0x160AEC; bIsStartHardcoded = TRUE; } - else if (!_stricmp(hash, "e9c1c45a659dafabf671cb0ae195f8d9") || !_stricmp(hash, "7e652d78661ba62e33d41ad1d3180344")) // 346, 348 + else if (!_stricmp(hash, "e9c1c45a659dafabf671cb0ae195f8d9") || !_stricmp(hash, "7e652d78661ba62e33d41ad1d3180344")) // 346, 348, 376 { symbols_PTRS->startdocked_PTRS[0] = 0x18969C; symbols_PTRS->startdocked_PTRS[1] = 0x18969C; diff --git a/version.h b/version.h index 2e371ac..b84cfd7 100644 --- a/version.h +++ b/version.h @@ -1,7 +1,7 @@ #define VER_MAJOR 22000 -#define VER_MINOR 348 +#define VER_MINOR 376 #define VER_BUILD_HI 40 -#define VER_BUILD_LO 11 +#define VER_BUILD_LO 12 #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.348.40.11" -#define VER_PRODUCT_STRING VALUE "ProductVersion", "22000.348.40.11" +#define VER_FILE_STRING VALUE "FileVersion", "22000.376.40.12" +#define VER_PRODUCT_STRING VALUE "ProductVersion", "22000.376.40.12"