mirror of
https://github.com/valinet/ExplorerPatcher.git
synced 2024-11-23 23:21:08 +01:00
Version: 22000.675.45.3
This commit is contained in:
parent
3ae2861762
commit
757e9f31cc
10
.github/workflows/build.yml
vendored
10
.github/workflows/build.yml
vendored
@ -144,7 +144,6 @@ jobs:
|
||||
- name: Generate release name
|
||||
shell: bash
|
||||
working-directory: build/Release
|
||||
if: github.ref == 'refs/heads/master' && github.event.inputs.ref == ''
|
||||
run: |
|
||||
echo "::set-output name=data::$(./ep_generate_release_name.exe)"
|
||||
id: release_name
|
||||
@ -152,7 +151,6 @@ jobs:
|
||||
- name: Generate release notes
|
||||
shell: bash
|
||||
working-directory: build/Release
|
||||
if: github.ref == 'refs/heads/master' && github.event.inputs.ref == ''
|
||||
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="${MY_STRING//'%'/'%25'}"
|
||||
@ -163,7 +161,7 @@ jobs:
|
||||
|
||||
- name: Create/update release (valinet)
|
||||
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
|
||||
with:
|
||||
draft: false
|
||||
@ -176,7 +174,7 @@ jobs:
|
||||
|
||||
- name: Upload setup (valinet)
|
||||
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:
|
||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
||||
asset_path: ./build/Release/ep_setup.exe
|
||||
@ -187,7 +185,7 @@ jobs:
|
||||
|
||||
- name: Create/update release (forks)
|
||||
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
|
||||
with:
|
||||
draft: false
|
||||
@ -200,7 +198,7 @@ jobs:
|
||||
|
||||
- name: Upload setup (forks)
|
||||
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:
|
||||
upload_url: ${{ steps.create_release_fork.outputs.upload_url }}
|
||||
asset_path: ./build/Release/ep_setup.exe
|
||||
|
@ -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`
|
||||
* 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
|
||||
|
||||
Tested on OS build 22000.613.
|
||||
|
@ -1,7 +1,7 @@
|
||||
#define VER_MAJOR 22000
|
||||
#define VER_MINOR 675
|
||||
#define VER_BUILD_HI 45
|
||||
#define VER_BUILD_LO 2
|
||||
#define VER_BUILD_LO 3
|
||||
#define VER_FLAGS VS_FF_PRERELEASE
|
||||
|
||||
|
||||
@ -12,5 +12,5 @@
|
||||
#define VER_STR(arg) #arg
|
||||
|
||||
// The String form of the version numbers
|
||||
#define VER_FILE_STRING VALUE "FileVersion", "22000.675.45.2"
|
||||
#define VER_PRODUCT_STRING VALUE "ProductVersion", "22000.675.45.2"
|
||||
#define VER_FILE_STRING VALUE "FileVersion", "22000.675.45.3"
|
||||
#define VER_PRODUCT_STRING VALUE "ProductVersion", "22000.675.45.3"
|
||||
|
Loading…
Reference in New Issue
Block a user