ci: host soundfonts on the public feedback-soundfonts repo

feedback-desktop is private, so its release assets aren't fetchable by
the unauthenticated build curl or by end users at runtime. Move the
GeneralUser-GS + FluidR3_GM downloads to the public got-feedback/
feedback-soundfonts repo (freely-redistributable GM soundfonts, no
third-party content). Checksums unchanged.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
byrongamatos
2026-06-17 01:09:38 +02:00
co-authored by Claude Opus 4.8
parent 0e7c428a9c
commit e59d68d3f2
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -12,7 +12,7 @@
"url": "https://github.com/FluidSynth/fluidsynth/releases/download/v2.5.4/fluidsynth-v2.5.4-win10-x64-cpp11.zip" "url": "https://github.com/FluidSynth/fluidsynth/releases/download/v2.5.4/fluidsynth-v2.5.4-win10-x64-cpp11.zip"
}, },
"soundfont_general_user": { "soundfont_general_user": {
"url": "https://github.com/got-feedback/feedback-desktop/releases/download/soundfonts-v1/GeneralUser-GS.sf2", "url": "https://github.com/got-feedback/feedback-soundfonts/releases/download/soundfonts-v1/GeneralUser-GS.sf2",
"sha256": "9575028c7a1f589f5770fccc8cff2734566af40cd26ed836944e9a5152688cfe" "sha256": "9575028c7a1f589f5770fccc8cff2734566af40cd26ed836944e9a5152688cfe"
}, },
"python_standalone_macos_arm64": { "python_standalone_macos_arm64": {
+2 -2
View File
@@ -15,12 +15,12 @@ import * as crypto from 'crypto';
import { restartPython } from './python'; import { restartPython } from './python';
// ── Source of truth for the high-quality soundfont ────────────────────────── // ── Source of truth for the high-quality soundfont ──────────────────────────
// Self-hosted mirror of FluidR3_GM.sf2 on this repo's releases. When a new // Public mirror of FluidR3_GM.sf2 on the feedback-soundfonts repo. When a new
// soundfonts release ships, bump both constants together; a mismatch fails // soundfonts release ships, bump both constants together; a mismatch fails
// the download fast with a clear error rather than serving silently-wrong // the download fast with a clear error rather than serving silently-wrong
// bytes. Source + licence info live on the release page itself. // bytes. Source + licence info live on the release page itself.
const SOUNDFONT_URL = const SOUNDFONT_URL =
'https://github.com/got-feedback/feedback-desktop/releases/download/soundfonts-v1/FluidR3_GM.sf2'; 'https://github.com/got-feedback/feedback-soundfonts/releases/download/soundfonts-v1/FluidR3_GM.sf2';
const SOUNDFONT_SHA256 = '74594e8f4250680adf590507a306655a299935343583256f3b722c48a1bc1cb0'; const SOUNDFONT_SHA256 = '74594e8f4250680adf590507a306655a299935343583256f3b722c48a1bc1cb0';
const SOUNDFONT_EXPECTED_SIZE_MB = 142; const SOUNDFONT_EXPECTED_SIZE_MB = 142;