Skip to content

Commit

Permalink
Version: 22621.3880.66.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Amrsatrio committed Sep 1, 2024
1 parent 2ea3894 commit 3885b97
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 10 deletions.
34 changes: 25 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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: 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:
* `C:\Program Files\ExplorerPatcher`
* `%APPDATA%\ExplorerPatcher`

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"
```
##### 5

* 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)
* Start10: Fixed symbols mechanism when custom `StartUI_.dll` is used. (0f38628)
* Start10: Increased reliability of ARM64 patterns for restoring the animations and fixing positioning. (#3566) (2ea3894)
* ep_taskbar: Fixed the task band not having a handle when the taskbar is unlocked.
* 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) 🙏

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 3880
#define VER_BUILD_HI 66
#define VER_BUILD_LO 4
#define VER_BUILD_LO 5
#define VER_FLAGS VS_FF_PRERELEASE


Expand Down

0 comments on commit 3885b97

Please sign in to comment.