mirror of
https://github.com/Psychotoxical/psysonic.git
synced 2026-07-21 23:05:46 +00:00
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:
@@ -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'
|
||||
|
||||
Reference in New Issue
Block a user