1
0
mirror of https://github.com/valinet/ExplorerPatcher.git synced 2024-11-24 07:30:22 +01:00

Version: 22000.675.45.3

This commit is contained in:
Valentin Radu 2022-05-27 18:05:42 +03:00
parent 3ae2861762
commit 757e9f31cc
3 changed files with 11 additions and 9 deletions

View File

@ -144,7 +144,6 @@ jobs:
- name: Generate release name - name: Generate release name
shell: bash shell: bash
working-directory: build/Release working-directory: build/Release
if: github.ref == 'refs/heads/master' && github.event.inputs.ref == ''
run: | run: |
echo "::set-output name=data::$(./ep_generate_release_name.exe)" echo "::set-output name=data::$(./ep_generate_release_name.exe)"
id: release_name id: release_name
@ -152,7 +151,6 @@ jobs:
- name: Generate release notes - name: Generate release notes
shell: bash shell: bash
working-directory: build/Release working-directory: build/Release
if: github.ref == 'refs/heads/master' && github.event.inputs.ref == ''
run: | run: |
MY_STRING=$(./ep_generate_release_description.exe ${{ steps.vars.outputs.sha_short }} ${{ steps.vars.outputs.branch }} ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}) MY_STRING=$(./ep_generate_release_description.exe ${{ steps.vars.outputs.sha_short }} ${{ steps.vars.outputs.branch }} ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }})
MY_STRING="${MY_STRING//'%'/'%25'}" MY_STRING="${MY_STRING//'%'/'%25'}"
@ -163,7 +161,7 @@ jobs:
- name: Create/update release (valinet) - name: Create/update release (valinet)
uses: actions/create-release@v1 uses: actions/create-release@v1
if: github.repository_owner == 'valinet' && github.ref == 'refs/heads/master' && github.event.inputs.ref == '' if: github.repository_owner == 'valinet'
id: create_release id: create_release
with: with:
draft: false draft: false
@ -176,7 +174,7 @@ jobs:
- name: Upload setup (valinet) - name: Upload setup (valinet)
uses: actions/upload-release-asset@v1 uses: actions/upload-release-asset@v1
if: github.repository_owner == 'valinet' && github.ref == 'refs/heads/master' && github.event.inputs.ref == '' if: github.repository_owner == 'valinet'
with: with:
upload_url: ${{ steps.create_release.outputs.upload_url }} upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./build/Release/ep_setup.exe asset_path: ./build/Release/ep_setup.exe
@ -187,7 +185,7 @@ jobs:
- name: Create/update release (forks) - name: Create/update release (forks)
uses: actions/create-release@v1 uses: actions/create-release@v1
if: github.repository_owner != 'valinet' && github.ref == 'refs/heads/master' && github.event.inputs.ref == '' if: github.repository_owner != 'valinet'
id: create_release_fork id: create_release_fork
with: with:
draft: false draft: false
@ -200,7 +198,7 @@ jobs:
- name: Upload setup (forks) - name: Upload setup (forks)
uses: actions/upload-release-asset@v1 uses: actions/upload-release-asset@v1
if: github.repository_owner != 'valinet' && github.ref == 'refs/heads/master' && github.event.inputs.ref == '' if: github.repository_owner != 'valinet'
with: with:
upload_url: ${{ steps.create_release_fork.outputs.upload_url }} upload_url: ${{ steps.create_release_fork.outputs.upload_url }}
asset_path: ./build/Release/ep_setup.exe asset_path: ./build/Release/ep_setup.exe

View File

@ -19,6 +19,10 @@ Please make sure you are connected to the Internet while installing, the applica
* libvalinet: Fixed a memory leak in `toast.h` * libvalinet: Fixed a memory leak in `toast.h`
* sws: Fixed a bug that caused the switcher to display non-responsive (hung) immersive (UWP) windows twice in the list * sws: Fixed a bug that caused the switcher to display non-responsive (hung) immersive (UWP) windows twice in the list
##### 3
* sws: Fixed a bug that created unnecessary paint events when a window was flashing and the switcher is not shown
## 22000.613.44 ## 22000.613.44
Tested on OS build 22000.613. Tested on OS build 22000.613.

View File

@ -1,7 +1,7 @@
#define VER_MAJOR 22000 #define VER_MAJOR 22000
#define VER_MINOR 675 #define VER_MINOR 675
#define VER_BUILD_HI 45 #define VER_BUILD_HI 45
#define VER_BUILD_LO 2 #define VER_BUILD_LO 3
#define VER_FLAGS VS_FF_PRERELEASE #define VER_FLAGS VS_FF_PRERELEASE
@ -12,5 +12,5 @@
#define VER_STR(arg) #arg #define VER_STR(arg) #arg
// The String form of the version numbers // The String form of the version numbers
#define VER_FILE_STRING VALUE "FileVersion", "22000.675.45.2" #define VER_FILE_STRING VALUE "FileVersion", "22000.675.45.3"
#define VER_PRODUCT_STRING VALUE "ProductVersion", "22000.675.45.2" #define VER_PRODUCT_STRING VALUE "ProductVersion", "22000.675.45.3"