Browse Source

Fixed regression of #161

pull/886/head 22000.348.40.1_b0e38bc
Valentin Radu 4 years ago
parent
commit
b0e38bcda2
  1. 1
      CHANGELOG.md
  2. 2
      libs/sws
  3. 6
      version.h

1
CHANGELOG.md

@ -34,6 +34,7 @@ Tested on build 22000.348.
* Reversed UWP apps detection to checking whether the executable is called ApplicationFrameHost.exe * Reversed UWP apps detection to checking whether the executable is called ApplicationFrameHost.exe
* Added some more debug messages * Added some more debug messages
* Fixed some rendering problems when themes are disabled * Fixed some rendering problems when themes are disabled
* Fixed regression of [#161](https://github.com/valinet/ExplorerPatcher/issues/161#issuecomment-986234002) (.1)
## 22000.348.39 ## 22000.348.39

2
libs/sws

@ -1 +1 @@
Subproject commit cb8d3dca18946da414d21d677d57534b48558e60 Subproject commit 44e262791333ef6ba5fe128e8abf20d28787f594

6
version.h

@ -1,7 +1,7 @@
#define VER_MAJOR 22000 #define VER_MAJOR 22000
#define VER_MINOR 348 #define VER_MINOR 348
#define VER_BUILD_HI 40 #define VER_BUILD_HI 40
#define VER_BUILD_LO 0 #define VER_BUILD_LO 1
#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.348.40.0" #define VER_FILE_STRING VALUE "FileVersion", "22000.348.40.1"
#define VER_PRODUCT_STRING VALUE "ProductVersion", "22000.348.40.0" #define VER_PRODUCT_STRING VALUE "ProductVersion", "22000.348.40.1"

Loading…
Cancel
Save