1
0
mirror of https://github.com/valinet/ExplorerPatcher.git synced 2024-11-23 23:21:08 +01:00

Version: 22621.2361.58.2

This commit is contained in:
Valentin Radu 2023-10-04 03:12:50 +03:00
parent 085b3dd9f7
commit fbaad56b22
2 changed files with 15 additions and 3 deletions

View File

@ -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.

View File

@ -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