Skip to content

Commit 92fce8c

Browse files
committed
Version: 22621.3880.66.6
1 parent 9811810 commit 92fce8c

File tree

3 files changed

+21
-2
lines changed

3 files changed

+21
-2
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,14 @@ jobs:
171171
)
172172
exit /b 0
173173
174+
- name: Delete intermediate files
175+
shell: bash
176+
run: |
177+
rm -rf build/Release/x64/ep_setup_files
178+
rm -f build/Release/x64/ep_setup_files.zip.bin
179+
rm -rf build/Release/ARM64/ep_setup_files
180+
rm -f build/Release/ARM64/ep_setup_files.zip.bin
181+
174182
- name: Upload artifacts
175183
uses: actions/upload-artifact@v4
176184
with:

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,16 @@ With this update, ExplorerPatcher is now officially compatible and supported on
5353
* ep_taskbar: Fixed the task band not having a handle when the taskbar is unlocked.
5454
* ep_taskbar: Fixed scroll arrows in window list popups (`ExtendedUI`) having weird appearance and behavior.
5555

56+
##### 6
57+
58+
* Updates: Fixed a bug where empty UpdateURL registry values would break the updates system. (#3668) (ac14c75)
59+
* Setup: Cleaned some unneeded stuff in the setup binary. (9811810)
60+
* Misc: Restored exported functions for launching/restarting Explorer: `ZZLaunchExplorer`, `ZZLaunchExplorerDelayed`, and `ZZRestartExplorer`. (9811810)
61+
5662
> [!WARNING]
57-
> Please include the following folders in your antivirus' exclusion list to prevent issues due to false positive detections:
63+
> <ins>**You are downloading a file flagged as malware by Microsoft and very likely by other major antivirus vendors.**</ins> We believe that this false flag indicates Microsoft's hatred against this software, not because this contains a virus or such.
64+
>
65+
> Please include the following files and folders in your antivirus' exclusion list to prevent issues due to antivirus detections:
5866
> * `C:\Program Files\ExplorerPatcher`
5967
> * `%APPDATA%\ExplorerPatcher`
6068
> * `C:\Windows\dxgi.dll`
@@ -69,6 +77,9 @@ With this update, ExplorerPatcher is now officially compatible and supported on
6977
> Add-MpPreference -ExclusionPath "C:\Windows\SystemApps\Microsoft.Windows.StartMenuExperienceHost_cw5n1h2txyewy"
7078
> Add-MpPreference -ExclusionPath "C:\Windows\SystemApps\ShellExperienceHost_cw5n1h2txyewy"
7179
> ```
80+
> If you are downloading from this page, please temporarily disable real-time protection or save to a folder excluded from antivirus scans.
81+
>
82+
> Issues related to antivirus detections **will be closed immediately**. Discuss this in #3228.
7283
7384
**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) 🙏
7485

version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#define VER_MAJOR 22621
22
#define VER_MINOR 3880
33
#define VER_BUILD_HI 66
4-
#define VER_BUILD_LO 5
4+
#define VER_BUILD_LO 6
55
#define VER_FLAGS VS_FF_PRERELEASE
66

77

0 commit comments

Comments
 (0)