Skip to content

Commit c843465

Browse files
committed
Setup: Rename ARM64 setup from ep_setup.arm64.exe into ep_setup_arm64.exe
1 parent 7444c7c commit c843465

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ jobs:
179179
build/Release/
180180
181181
# build/Release/x64/ep_setup.exe -> build/Release/ep_setup.exe
182-
# build/Release/ARM64/ep_setup.exe -> build/Release/ep_setup.arm64.exe
182+
# build/Release/ARM64/ep_setup.exe -> build/Release/ep_setup_arm64.exe
183183
- name: Stage files for release
184184
if: github.ref == 'refs/heads/master' && github.event.inputs.ref == ''
185185
shell: bash
@@ -188,7 +188,7 @@ jobs:
188188
cp build/Release/x64/ep_setup.exe build/Release/ep_setup.exe
189189
fi
190190
if [ -d "build/Release/ARM64" ] && ls build/Release/ARM64/ep_setup.exe 1> /dev/null 2>&1; then
191-
cp build/Release/ARM64/ep_setup.exe build/Release/ep_setup.arm64.exe
191+
cp build/Release/ARM64/ep_setup.exe build/Release/ep_setup_arm64.exe
192192
fi
193193
194194
- name: Generate release name
@@ -221,7 +221,7 @@ jobs:
221221
body: ${{ steps.release_description.outputs.data }}
222222
files: |
223223
build/Release/ep_setup.exe
224-
build/Release/ep_setup.arm64.exe
224+
build/Release/ep_setup_arm64.exe
225225
env:
226226
GITHUB_TOKEN: ${{ secrets.PAT }}
227227

@@ -237,6 +237,6 @@ jobs:
237237
body: ${{ steps.release_description.outputs.data }}
238238
files: |
239239
build/Release/ep_setup.exe
240-
build/Release/ep_setup.arm64.exe
240+
build/Release/ep_setup_arm64.exe
241241
env:
242242
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Tested on OS builds 19045.4598, 22621.3296, 22621.3810, 26120.961, and 26244.500
2626
* An ARM64 device to support the making and testing of ARM64 builds is not cheap, so please consider [donating @Amrsatrio via Ko-fi](https://ko-fi.com/amrsatrio) to recoup the costs.
2727
* Added an "Update now" button into update notifications for easier updating. (2b9c747, 8c16a9a)
2828
* Revised how files are packed in ep_setup for smaller size and easier maintenance. (30579b0, b253625, 04fd2b7, db54ce9, 126c024, c0201ff)
29-
* ⚠️ **Note for users with the pre-release versions enabled:** Versions before this one will not be able to update to this version or later versions due to the updater code of previous versions not supporting multiple binaries in one GitHub release. Please manually update by downloading the appropriate binary from this page.
29+
* EP's taskbar implementation for 24H2 is now available in [its releases repository](https://github.com/ExplorerPatcher/ep_taskbar_releases/releases/latest), as `ep_taskbar.5.dll`. If you want to try this out, follow the steps explained above.
3030

3131
## 22621.3527.65
3232

ExplorerPatcher/def.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#ifndef _M_ARM64
1616
#define SETUP_UTILITY_NAME "ep_setup.exe"
1717
#else
18-
#define SETUP_UTILITY_NAME "ep_setup.arm64.exe"
18+
#define SETUP_UTILITY_NAME "ep_setup_arm64.exe"
1919
#endif
2020
#define TOAST_BUFSIZ 1536
2121
#define SEH_REGPATH "Control Panel\\Quick Actions\\Control Center\\QuickActionsStateCapture\\ExplorerPatcher"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This project aims to enhance the working environment on Windows.
44

55
## How to?
66

7-
1. Download the latest version of the setup program [for x64](https://github.com/valinet/ExplorerPatcher/releases/latest/download/ep_setup.exe) or [for ARM64](https://github.com/valinet/ExplorerPatcher/releases/latest/download/ep_setup.arm64.exe).
7+
1. Download the latest version of the setup program [for x64](https://github.com/valinet/ExplorerPatcher/releases/latest/download/ep_setup.exe) or [for ARM64](https://github.com/valinet/ExplorerPatcher/releases/latest/download/ep_setup_arm64.exe).
88
2. Run the installer. It will automatically prompt for elevation, after which it will install the necessary files.
99
3. When done, you will be greeted with the familiar Windows 10 taskbar. To customize the options offered by the program, right click the taskbar and choose "Properties".
1010

@@ -20,7 +20,7 @@ That's it. It's that simple.
2020
## Updating
2121

2222
* The program features built-in updates: go to "Properties" - "Updates" to configure, check for and install the latest updates. Learn more [here](https://github.com/valinet/ExplorerPatcher/wiki/Configure-updates).
23-
* Download the latest version's [setup file for x64](https://github.com/valinet/ExplorerPatcher/releases/latest/download/ep_setup.exe) or [setup file for ARM64](https://github.com/valinet/ExplorerPatcher/releases/latest/download/ep_setup.arm64.exe) and simply run it.
23+
* Download the latest version's [setup file for x64](https://github.com/valinet/ExplorerPatcher/releases/latest/download/ep_setup.exe) or [setup file for ARM64](https://github.com/valinet/ExplorerPatcher/releases/latest/download/ep_setup_arm64.exe) and simply run it.
2424

2525
## Donate
2626

0 commit comments

Comments
 (0)