Browse Source

Updated version to 41.0

pull/886/head 22000.376.41.0_85954c2
Valentin Radu 4 years ago
parent
commit
85954c2768
  1. 21
      CHANGELOG.md
  2. 8
      version.h

21
CHANGELOG.md

@ -2,6 +2,27 @@
This document includes the same release notes as in the [Releases](https://github.com/valinet/ExplorerPatcher/releases) section on GitHub. 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 ## 22000.376.40
Tested on OS build 22000.376. Tested on OS build 22000.376.

8
version.h

@ -1,7 +1,7 @@
#define VER_MAJOR 22000 #define VER_MAJOR 22000
#define VER_MINOR 376 #define VER_MINOR 376
#define VER_BUILD_HI 40 #define VER_BUILD_HI 41
#define VER_BUILD_LO 21 #define VER_BUILD_LO 0
#define VER_FLAGS VS_FF_PRERELEASE #define VER_FLAGS VS_FF_PRERELEASE
@ -12,5 +12,5 @@
#define VER_STR(arg) #arg #define VER_STR(arg) #arg
// The String form of the version numbers // The String form of the version numbers
#define VER_FILE_STRING VALUE "FileVersion", "22000.376.40.21" #define VER_FILE_STRING VALUE "FileVersion", "22000.376.41.0"
#define VER_PRODUCT_STRING VALUE "ProductVersion", "22000.376.40.21" #define VER_PRODUCT_STRING VALUE "ProductVersion", "22000.376.41.0"

Loading…
Cancel
Save