From fbaad56b22178772dec80eb86c5821a06295a098 Mon Sep 17 00:00:00 2001 From: Valentin Radu Date: Wed, 4 Oct 2023 03:12:50 +0300 Subject: [PATCH] Version: 22621.2361.58.2 --- CHANGELOG.md | 8 ++++++++ version.h | 10 +++++++--- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c03c7b..53702b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,14 @@ Tested on OS builds 22000.2416, 22621.1, 22621.2134, 22621.2361, 22631.2338, and * File Explorer: EP now tries to avoid crashes related to the new Windows App SDK views. (b426d2c) * On OS builds 22621+, fixed a bug that crashed `explorer.exe` when required functions in `twinui.pcshell.dll` (for Win+X and Windows 10 Alt+Tab) could not be found using the fallback method. (6023718) +##### 2 + +* Taskbar11: Fixed a bug that reset the "never combine" setting on OS builds 22621.2361+ (#2207) (085b3dd) +* Taskbar10: Fixed Wi-Fi flyout buttons on OS build 22621 (0706393) +* Start10: Fixed start menu folders, show recently added, and show frequently used apps settings not being applied on OS builds 22621.2134+ (e28940d) + +Many thanks to @Amrsatrio for sustained efforts in maintaining and improving ExplorerPatcher. + ## 22621.2283.57 Tested on OS build 22621.2283. Installer requires Internet connectivity. diff --git a/version.h b/version.h index 3144e74..b7769ea 100644 --- a/version.h +++ b/version.h @@ -1,7 +1,7 @@ #define VER_MAJOR 22621 #define VER_MINOR 2361 #define VER_BUILD_HI 58 -#define VER_BUILD_LO 1 +#define VER_BUILD_LO 2 #define VER_FLAGS VS_FF_PRERELEASE @@ -11,6 +11,10 @@ #define VER_STR(arg) #arg +#define STRINGIFYVER2(X) #X +#define STRINGIFYVER(X) STRINGIFYVER2(X) +#define VER_WITH_DOTS STRINGIFYVER(VER_MAJOR) "." STRINGIFYVER(VER_MINOR) "." STRINGIFYVER(VER_BUILD_HI) "." STRINGIFYVER(VER_BUILD_LO) + // The String form of the version numbers -#define VER_FILE_STRING VALUE "FileVersion", "22621.2361.58.1" -#define VER_PRODUCT_STRING VALUE "ProductVersion", "22621.2361.58.1" +#define VER_FILE_STRING VALUE "FileVersion", VER_WITH_DOTS +#define VER_PRODUCT_STRING VALUE "ProductVersion", VER_WITH_DOTS