Browse Source

fix actions and changelog (#1576)

pull/1578/head
Jason Dove 1 year ago committed by GitHub
parent
commit
16007a888e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 8
      .github/workflows/artifacts.yml
  2. 2
      .github/workflows/docker.yml
  3. 5
      .github/workflows/pr.yml
  4. 2
      CHANGELOG.md

8
.github/workflows/artifacts.yml

@ -58,7 +58,7 @@ jobs: @@ -58,7 +58,7 @@ jobs:
run: dotnet restore -r "${{ matrix.target}}"
- name: Import Code-Signing Certificates
uses: Apple-Actions/import-codesign-certs@v1
uses: Apple-Actions/import-codesign-certs@v2
with:
p12-file-base64: ${{ secrets.apple_developer_certificate_p12_base64 }}
p12-password: ${{ secrets.apple_developer_certificate_password }}
@ -167,12 +167,6 @@ jobs: @@ -167,12 +167,6 @@ jobs:
with:
dotnet-version: 8.0.x
- name: Setup Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
if: ${{ matrix.kind == 'windows' }}
- name: Clean
run: dotnet clean --configuration Release && dotnet nuget locals all --clear

2
.github/workflows/docker.yml

@ -54,7 +54,7 @@ jobs: @@ -54,7 +54,7 @@ jobs:
fetch-depth: 0
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3
if: ${{ matrix.qemu == true }}
- name: Set up Docker Buildx

5
.github/workflows/pr.yml

@ -13,11 +13,6 @@ jobs: @@ -13,11 +13,6 @@ jobs:
with:
dotnet-version: 8.0.x
- name: Setup Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Clean
run: dotnet clean --configuration Release && dotnet nuget locals all --clear

2
CHANGELOG.md

@ -42,6 +42,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). @@ -42,6 +42,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- Recreate XMLTV channel list (including logos) when channels are edited in ErsatzTV
- This bug caused the ErsatzTV logo to be used instead of channel logos in some cases
- Update drop down search results in main search bar when items are created/edited/removed
- Fix green line at bottom of video when NVIDIA accel is used with intermittent watermark
### Changed
- Upgrade from .NET 7 to .NET 8
@ -59,7 +60,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). @@ -59,7 +60,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- Fix bug where previously-synchronized collection tags would disappear
- This bug affected Jellyfin, Emby and Plex collections
- Fix detection of AMF hardware acceleration on Windows
- Fix green line at bottom of video when NVIDIA accel is used with intermittent watermark
## [0.8.3-beta] - 2023-11-22
### Added

Loading…
Cancel
Save