From 584639193d36c3533208e3b907921018ecf209f8 Mon Sep 17 00:00:00 2001 From: byrongamatos Date: Thu, 23 Jul 2026 01:00:44 +0200 Subject: [PATCH] =?UTF-8?q?chore:=20publish=20v1=20VST=20packs=20=E2=80=94?= =?UTF-8?q?=20real=20sha256/bytes=20in=20vst=5Fpacks.json?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The three per-platform packs are now published as immutable releases on got-feedback/feedback (vst-{mac,win,linux}-v1), sliced from the fat .vst3 tree by feedBack#1025's content_packs.py --vst. Replaces the 0-byte placeholders so rb_vst_pack_status.has_pack flips true and the first-run download prompt can actually fetch + sha256-verify the pack. Verified end-to-end: downloading vst-linux-pack-v1.zip from its release URL yields 170531592 bytes / sha256 78312f13… matching this manifest. Co-Authored-By: Claude Opus 4.8 (1M context) Signed-off-by: byrongamatos --- data/vst_packs.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/data/vst_packs.json b/data/vst_packs.json index 060a3042..94dc6e8e 100644 --- a/data/vst_packs.json +++ b/data/vst_packs.json @@ -1,17 +1,17 @@ { "mac": { "url": "https://github.com/got-feedBack/feedBack/releases/download/vst-mac-v1/vst-mac-pack-v1.zip", - "sha256": "0000000000000000000000000000000000000000000000000000000000000000", - "bytes": 0 + "sha256": "87bf27866085ae39721e9a31108258b3b0ad229e078dd2fbd6572ad10b09745b", + "bytes": 252316382 }, "win": { "url": "https://github.com/got-feedBack/feedBack/releases/download/vst-win-v1/vst-win-pack-v1.zip", - "sha256": "0000000000000000000000000000000000000000000000000000000000000000", - "bytes": 0 + "sha256": "9963c4ba85b9126e20da4f7c3e839fbd29e24b7b0058ef4d27ff611644da6f73", + "bytes": 244558568 }, "linux": { "url": "https://github.com/got-feedBack/feedBack/releases/download/vst-linux-v1/vst-linux-pack-v1.zip", - "sha256": "0000000000000000000000000000000000000000000000000000000000000000", - "bytes": 0 + "sha256": "78312f13435fd760aa97a21161584f622330b1e42782267f7f869c944aa72dec", + "bytes": 170531592 } }