1
0
mirror of https://github.com/valinet/ExplorerPatcher.git synced 2025-01-18 16:54:13 +01:00

Updated version to 41.0

This commit is contained in:
Valentin Radu 2022-01-04 05:18:36 +02:00
parent a2a0b22ef2
commit 85954c2768
2 changed files with 25 additions and 4 deletions

View File

@ -2,6 +2,27 @@
This document includes the same release notes as in the [Releases](https://github.com/valinet/ExplorerPatcher/releases) section on GitHub.
## 22000.376.41
Tested on OS build 22000.376.
#### New features
* Ability to choose a Windows 10 or Windows 11 Start button style for the Windows 10 taskbar (#436, thanks @krlvm)
#### Feature enhancements
* The option to toggle taskbar auto hide when double clicking the taskbar now works with the Windows 11 taskbar as well
* Performing a memory leak dump now displays GDI, peak GDI, USER and peak USER object counts as well
#### Fixes
* Fixed a bug that prevented the Properties UI's system menu from displaying and working correctly
* Fixed a bug that displayed a wrong timestamp (29/08/2021) instead of the current date and time on the notifications generated by ExplorerPatcher
* Fixed a wrong function prototype (5b4bd07#r62018175, thanks @Simplestas)
* Protected some state variables from changing internally if modified in the registry until `explorer` is restarted
* Fixed a bug that could unexpectedly prevent the [Win]+[Alt]+[D] shortcut from working properly
## 22000.376.40
Tested on OS build 22000.376.

View File

@ -1,7 +1,7 @@
#define VER_MAJOR 22000
#define VER_MINOR 376
#define VER_BUILD_HI 40
#define VER_BUILD_LO 21
#define VER_BUILD_HI 41
#define VER_BUILD_LO 0
#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.376.40.21"
#define VER_PRODUCT_STRING VALUE "ProductVersion", "22000.376.40.21"
#define VER_FILE_STRING VALUE "FileVersion", "22000.376.41.0"
#define VER_PRODUCT_STRING VALUE "ProductVersion", "22000.376.41.0"