Skip to content

Commit ec91c0b

Browse files
committed
Updated version. Updated ChangeLog. Updated workflows.
1 parent 0e4159f commit ec91c0b

4 files changed

Lines changed: 17 additions & 13 deletions

File tree

.github/workflows/mac.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,20 +29,18 @@ jobs:
2929
chmod +x ports/ci/mac/build.sh
3030
./ports/ci/mac/build.sh
3131
- name: Release Upload
32-
uses: softprops/action-gh-release@v1
32+
uses: softprops/action-gh-release@v3
3333
if: ${{ startsWith(github.ref, 'refs/tags/') && matrix.upload }}
3434
with:
3535
files: packages/mac/*
36-
env:
37-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
36+
token: ${{ secrets.GITHUB_TOKEN }}
3837
- name: Daily Build Upload
39-
uses: softprops/action-gh-release@v1
38+
uses: softprops/action-gh-release@v3
4039
if: ${{ !startsWith(github.ref, 'refs/tags/') && matrix.upload }}
4140
with:
4241
body: "${{ github.event.head_commit.message }} (commit: [${{ github.sha }}](https://github.com/webcamoid/akvirtualcamera/commit/${{ github.sha }}))<hr>**Note**: Ignore the commit information of the tag, the files in the release keep updating with every new build, these packages were built from [${{ github.sha }}](https://github.com/webcamoid/akvirtualcamera/commit/${{ github.sha }}) commit."
4342
prerelease: true
4443
files: packages/mac/*
4544
name: Daily Build
4645
tag_name: daily-build
47-
env:
48-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
46+
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/windows-msys.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -75,20 +75,18 @@ jobs:
7575
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
7676
run: ./ports/ci/windows-msys/test.sh
7777
- name: Release Upload
78-
uses: softprops/action-gh-release@v1
78+
uses: softprops/action-gh-release@v3
7979
if: ${{ startsWith(github.ref, 'refs/tags/') }}
8080
with:
8181
files: packages/windows-gcc/*
82-
env:
83-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
82+
token: ${{ secrets.GITHUB_TOKEN }}
8483
- name: Daily Build Upload
85-
uses: softprops/action-gh-release@v1
84+
uses: softprops/action-gh-release@v3
8685
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
8786
with:
8887
body: "${{ github.event.head_commit.message }} (commit: [${{ github.sha }}](https://github.com/webcamoid/akvirtualcamera/commit/${{ github.sha }}))<hr>**Note**: Ignore the commit information of the tag, the files in the release keep updating with every new build, these packages were built from [${{ github.sha }}](https://github.com/webcamoid/akvirtualcamera/commit/${{ github.sha }}) commit."
8988
prerelease: true
9089
files: packages/windows-gcc/*
9190
name: Daily Build
9291
tag_name: daily-build
93-
env:
94-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
92+
token: ${{ secrets.GITHUB_TOKEN }}

ChangeLog

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
akvirtualcamera 9.4.1:
2+
3+
- Disable MediaFoundation by default again. The virtual camera is detectable but
4+
IMFActivate::ActivateObject() always returns E_ACCESSDENIED, it's probably
5+
Windows 11 limiting it rather than a problem with the code.
6+
- Added information about the underlaying system API.
7+
- Fixed uninstall.
8+
19
akvirtualcamera 9.4.0:
210

311
- Microsoft Media Foundation virtual camera is now working.

commons.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ string(TOLOWER ${COMMONS_APPNAME} COMMONS_TARGET)
4040

4141
set(VER_MAJ 9)
4242
set(VER_MIN 4)
43-
set(VER_PAT 0)
43+
set(VER_PAT 1)
4444
set(VERSION ${VER_MAJ}.${VER_MIN}.${VER_PAT})
4545
math(EXPR VER_MIN_PAD "${VER_MIN} + 1000")
4646
math(EXPR VER_PAT_PAD "${VER_PAT} + 1000")

0 commit comments

Comments
 (0)