perf(lyrics): fix CPU spikes during lyric transitions; fix release workflow

CSS: remove `font-weight` from transition list on `.fs-lyric-line` — it
triggers layout reflow on every animation frame when the active line changes.
Replaced with `transform: scaleX(1.015)` on `.fsl-active` (compositor-only).
Added `contain: layout style` to `.fs-lyrics-overlay` to isolate reflows.

Cargo.lock: update for thread-priority crate (added in previous audio commit).

CI: replace delete-asset workaround with `updaterJsonKeepUniversal: false`
to prevent tauri-action from uploading a latest.json with wrong signature.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Psychotoxical
2026-04-07 12:30:32 +02:00
parent 44287a7ceb
commit 8add62a502
3 changed files with 26 additions and 13 deletions
+4 -10
View File
@@ -124,16 +124,10 @@ jobs:
with:
releaseId: ${{ needs.create-release.outputs.release_id }}
args: ${{ matrix.settings.args }}
# tauri-action auto-generates a latest.json using the pubkey from tauri.conf.json
# as the signature value (wrong). Delete it so only our generate-update-manifest.js
# output is ever used as the canonical update manifest.
- name: remove tauri-action generated update manifest
shell: bash
run: |
gh release delete-asset ${{ github.ref_name }} latest.json --yes || true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Prevent tauri-action from auto-uploading a latest.json that uses
# the PUBLIC KEY as the signature value. Our generate-update-manifest.js
# builds the correct manifest with real .sig file contents.
updaterJsonKeepUniversal: false
- name: sign and upload Windows NSIS updater bundle
if: matrix.settings.platform == 'windows-latest'