Compare commits

...

3 Commits

  1. 4
      CHANGELOG.md
  2. 2
      ExplorerPatcher-L10N
  3. 2
      README.md
  4. 6
      ep_startmenu/ep_sm_main.c
  5. 2
      version.h

4
CHANGELOG.md

@ -36,6 +36,10 @@ Tested on OS builds 26100.4946, 26100.5074, 26200.5751, and 26220.6682.
* File Explorer: Corrected shrunk address bar toolbar button size when Servicing_CFDNavButtonsTheming (NI: 56845961, GE: 52061322) is enabled. (#4552) (9e91030) * File Explorer: Corrected shrunk address bar toolbar button size when Servicing_CFDNavButtonsTheming (NI: 56845961, GE: 52061322) is enabled. (#4552) (9e91030)
##### 5
* Start10: Fixed Windows 10 Start menu not opening on 22H2/23H2 ARM64. (c08b0a6)
Known issues we will address in the short term: Known issues we will address in the short term:
* Changing weather icon pack to "Microsoft" has no effect. * Changing weather icon pack to "Microsoft" has no effect.
* On Nickel (Windows 11 22H2/23H2), when the new Windows 11 Start menu is enabled, using Windows 10 or Windows 10 (ExplorerPatcher) taskbar will crashloop explorer.exe. * On Nickel (Windows 11 22H2/23H2), when the new Windows 11 Start menu is enabled, using Windows 10 or Windows 10 (ExplorerPatcher) taskbar will crashloop explorer.exe.

2
ExplorerPatcher-L10N

@ -1 +1 @@
Subproject commit 314ebed7656c480f39c2a0813f78633edab895f5 Subproject commit 877f358bd6b7994dd67e074ac302361e0f188711

2
README.md

@ -4,7 +4,7 @@ This project aims to enhance the working environment on Windows.
## How to? ## How to?
1. Follow the antivirus configuration instructions and download the latest version of the setup program in [here](https://github.com/valinet/ExplorerPatcher/releases/latest). 1. Download the latest version of the setup program in [here](https://github.com/valinet/ExplorerPatcher/releases/latest).
* Choose `ep_setup.exe` if your device uses an Intel or AMD processor, or `ep_setup_arm64.exe` if your device uses a Snapdragon processor. * Choose `ep_setup.exe` if your device uses an Intel or AMD processor, or `ep_setup_arm64.exe` if your device uses a Snapdragon processor.
1. Run the installer. It will automatically prompt for elevation, after which it will close `explorer.exe` and install the necessary files. When done, you will see the desktop again and the Windows 10 taskbar. 1. Run the installer. It will automatically prompt for elevation, after which it will close `explorer.exe` and install the necessary files. When done, you will see the desktop again and the Windows 10 taskbar.
1. Right-click the taskbar and choose "Properties". 1. Right-click the taskbar and choose "Properties".

6
ep_startmenu/ep_sm_main.c

@ -148,13 +148,13 @@ void Init()
} }
#elif defined(_M_ARM64) #elif defined(_M_ARM64)
// TODO Improve pattern // TODO Improve pattern
// 7F 23 03 D5 F3 53 BF A9 FD 7B BC A9 FD 03 00 91 30 00 80 92 // 7F 23 03 D5 F3 53 BF A9 FD 7B BC A9 FD 03 00 91 30 00 80 92 B0 0F 00 F9
// ----------- PACIBSP, don't scan for this because it's everywhere // ----------- PACIBSP, don't scan for this because it's everywhere
PBYTE match = FindPattern( PBYTE match = FindPattern(
beginText, beginText,
sizeText, sizeText,
"\xF3\x53\xBF\xA9\xFD\x7B\xBC\xA9\xFD\x03\x00\x91\x30\x00\x80\x92", "\xF3\x53\xBF\xA9\xFD\x7B\xBC\xA9\xFD\x03\x00\x91\x30\x00\x80\x92\xB0\x0F\x00\xF9",
"xxxxxxxxxxxxxxxx" "xxxxxxxxxxxxxxxxxxxx"
); );
if (match) if (match)
{ {

2
version.h

@ -1,7 +1,7 @@
#define VER_MAJOR 26100 #define VER_MAJOR 26100
#define VER_MINOR 4946 #define VER_MINOR 4946
#define VER_BUILD_HI 69 #define VER_BUILD_HI 69
#define VER_BUILD_LO 4 #define VER_BUILD_LO 5
#define VER_FLAGS VS_FF_PRERELEASE #define VER_FLAGS VS_FF_PRERELEASE

Loading…
Cancel
Save