Browse Source

Version: 22621.3880.66.5

pull/3714/head
Amrsatrio 1 year ago
parent
commit
3885b97bdb
  1. 34
      CHANGELOG.md
  2. 2
      version.h

34
CHANGELOG.md

@ -44,15 +44,31 @@ With this update, ExplorerPatcher is now officially compatible and supported on
* ep_taskbar: Fixed tray icons not being saved. * ep_taskbar: Fixed tray icons not being saved.
* ep_taskbar: Removed the Copilot button on 22H2. * ep_taskbar: Removed the Copilot button on 22H2.
**Important note:** Please include the following folders in your antivirus' exclusion list to prevent issues due to false positive detections: ##### 5
* `C:\Program Files\ExplorerPatcher`
* `%APPDATA%\ExplorerPatcher` * Taskbar10: Fixed jump list positioning patch on latest builds with `TaskbarJumplistOnHover` feature flag. (#3615) (351a020)
* Taskbar11: Fixed Task Manager menu entry doing nothing on 24H2+. (#3021, #3556) (060066c)
For Defender, you can run the following script in PowerShell as an administrator: * Start10: Fixed symbols mechanism when custom `StartUI_.dll` is used. (0f38628)
```ps1 * Start10: Increased reliability of ARM64 patterns for restoring the animations and fixing positioning. (#3566) (2ea3894)
Add-MpPreference -ExclusionPath "C:\Program Files\ExplorerPatcher" * ep_taskbar: Fixed the task band not having a handle when the taskbar is unlocked.
Add-MpPreference -ExclusionPath "$env:APPDATA\ExplorerPatcher" * ep_taskbar: Fixed scroll arrows in window list popups (`ExtendedUI`) having weird appearance and behavior.
```
> [!WARNING]
> Please include the following folders in your antivirus' exclusion list to prevent issues due to false positive detections:
> * `C:\Program Files\ExplorerPatcher`
> * `%APPDATA%\ExplorerPatcher`
> * `C:\Windows\dxgi.dll`
> * `C:\Windows\SystemApps\Microsoft.Windows.StartMenuExperienceHost_cw5n1h2txyewy`
> * `C:\Windows\SystemApps\ShellExperienceHost_cw5n1h2txyewy`
>
> For Defender, you can run the following script in PowerShell as an administrator:
> ```ps1
> Add-MpPreference -ExclusionPath "C:\Program Files\ExplorerPatcher"
> Add-MpPreference -ExclusionPath "$env:APPDATA\ExplorerPatcher"
> Add-MpPreference -ExclusionPath "C:\Windows\dxgi.dll"
> Add-MpPreference -ExclusionPath "C:\Windows\SystemApps\Microsoft.Windows.StartMenuExperienceHost_cw5n1h2txyewy"
> Add-MpPreference -ExclusionPath "C:\Windows\SystemApps\ShellExperienceHost_cw5n1h2txyewy"
> ```
**A little request from us:** Because the development of EP's taskbar implementation took a lot of effort for 8 consecutive months, and that an ARM64 device to support the making and testing of ARM64 builds is not cheap, it would be really, really appreciated if you can [donate @Amrsatrio via Ko-fi](https://ko-fi.com/amrsatrio) 🙏 **A little request from us:** Because the development of EP's taskbar implementation took a lot of effort for 8 consecutive months, and that an ARM64 device to support the making and testing of ARM64 builds is not cheap, it would be really, really appreciated if you can [donate @Amrsatrio via Ko-fi](https://ko-fi.com/amrsatrio) 🙏

2
version.h

@ -1,7 +1,7 @@
#define VER_MAJOR 22621 #define VER_MAJOR 22621
#define VER_MINOR 3880 #define VER_MINOR 3880
#define VER_BUILD_HI 66 #define VER_BUILD_HI 66
#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