Skip to content
This repository has been archived by the owner on Nov 18, 2023. It is now read-only.

Commit

Permalink
上流の更新
Browse files Browse the repository at this point in the history
  • Loading branch information
creeper-0910 committed Oct 7, 2023
1 parent 778ee62 commit e07aed2
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,13 @@ Tested on OS builds 22000.2416, 22621.1, 22621.2134, 22621.2361, 22631.2338, and

* Start10: Pin to Start/Unpin from Start has been properly fixed on Start Menu and Explorer (but not Search yet) of all Windows 11 builds. (15c07a0)
* Start10: Fixed non-UWP apps not appearing on Dev channel builds 23545+. (a4f5bd0)
* File Explorer: Fixed command bar settings not being applied on non-primary Explorer instances on Windows 11. (001e8d8)

##### 4

* Taskbar11: Restored the fix for the bug that reset the "never combine" setting on OS builds 22621.2361+, which was removed in 22621.2361.58.3 by accident. (9f04110)
* Start: "Start menu style" now requires restart so that Pin to Start/Unpin from Start on Explorer works properly. (bdd71ef)
* Taskbar10: Disabled the patch for proper acrylic background on Canary builds (25000+) for now. (4ee742f)

Many thanks to @Amrsatrio for sustained efforts in maintaining and improving ExplorerPatcher.

Expand Down
7 changes: 5 additions & 2 deletions ExplorerPatcher/dllmain.c
Original file line number Diff line number Diff line change
Expand Up @@ -11048,7 +11048,10 @@ DWORD Inject(BOOL bIsExplorer)
if (bOldTaskbar && global_rovi.dwBuildNumber >= 22572)
{
VnPatchIAT(hExplorer, "dwmapi.dll", "DwmUpdateThumbnailProperties", explorer_DwmUpdateThumbnailPropertiesHook);
PatchExplorer_UpdateWindowAccentProperties();
if (global_rovi.dwBuildNumber < 25000) // TODO Needs fixing in Canary
{
PatchExplorer_UpdateWindowAccentProperties();
}
}
if (IsWindows11())
{
Expand Down Expand Up @@ -11533,7 +11536,7 @@ DWORD Inject(BOOL bIsExplorer)
else
{
CreateThread(0, 0, FixTaskbarAutohide, 0, 0, 0);
if (IsWindows11Version23H2OrHigher())
if (!IsWindows11Version22H2Build2361OrHigher())
{
RegDeleteKeyValueW(HKEY_CURRENT_USER, L"Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced", L"TaskbarGlomLevel");
RegDeleteKeyValueW(HKEY_CURRENT_USER, L"Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced", L"MMTaskbarGlomLevel");
Expand Down
2 changes: 1 addition & 1 deletion ExplorerPatcher/settings.reg
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@

;T スタート メニュー
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
;z 2 スタート メニューのスタイル
;z 2 スタート メニューのスタイル *
;x 0 Windows 11 (デフォルト)
;x 1 Windows 10
"Start_ShowClassicMode"=dword:00000000
Expand Down
2 changes: 1 addition & 1 deletion version.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#define VER_MAJOR 22621
#define VER_MINOR 2361
#define VER_BUILD_HI 58
#define VER_BUILD_LO 3
#define VER_BUILD_LO 4
#define VER_FLAGS VS_FF_PRERELEASE


Expand Down

0 comments on commit e07aed2

Please sign in to comment.