Browse Source

Fixed #548

pull/886/head 22000.348.40.8_9d00181
Valentin Radu 4 years ago
parent
commit
9d00181c4e
  1. 1
      CHANGELOG.md
  2. 9
      ExplorerPatcher/dllmain.c
  3. 6
      version.h

1
CHANGELOG.md

@ -28,6 +28,7 @@ Tested on build 22000.348. @@ -28,6 +28,7 @@ Tested on build 22000.348.
* Reliability improvements for File Explorer restarts (#529) (.7)
* When changing the main taskbar position and restarting File Explorer, the new position is now correctly saved and applied when File Explorer restarts (#523) (.7)
* Mitigation for the issue described in #416 (.7)
* Fixed a bug that prevented the Windows 10 window switcher from displaying when it was enabled, instead falling back to the Windows NT window switcher (#548) (.8)
#### Simple Window Switcher

9
ExplorerPatcher/dllmain.c

@ -4985,7 +4985,14 @@ LSTATUS twinuipcshell_RegGetValueW( @@ -4985,7 +4985,14 @@ LSTATUS twinuipcshell_RegGetValueW(
{
if (lRes == ERROR_SUCCESS && *(DWORD*)pvData)
{
*(DWORD*)pvData = 1;
if (*(DWORD*)pvData == 3)
{
*(DWORD*)pvData = 0;
}
else
{
*(DWORD*)pvData = 1;
}
}
if (!bOldTaskbar && hWin11AltTabInitialized)

6
version.h

@ -1,7 +1,7 @@ @@ -1,7 +1,7 @@
#define VER_MAJOR 22000
#define VER_MINOR 348
#define VER_BUILD_HI 40
#define VER_BUILD_LO 7
#define VER_BUILD_LO 8
#define VER_FLAGS VS_FF_PRERELEASE
@ -12,5 +12,5 @@ @@ -12,5 +12,5 @@
#define VER_STR(arg) #arg
// The String form of the version numbers
#define VER_FILE_STRING VALUE "FileVersion", "22000.348.40.7"
#define VER_PRODUCT_STRING VALUE "ProductVersion", "22000.348.40.7"
#define VER_FILE_STRING VALUE "FileVersion", "22000.348.40.8"
#define VER_PRODUCT_STRING VALUE "ProductVersion", "22000.348.40.8"

Loading…
Cancel
Save