From 41322f65cd8ad339bc3a5e140db9ee35ef27bab1 Mon Sep 17 00:00:00 2001 From: Roland Rabien Date: Thu, 30 Apr 2026 06:51:21 -0700 Subject: [PATCH] =?UTF-8?q?Release=201.0.28=20=E2=80=94=20switch=20to=20so?= =?UTF-8?q?calabs.com=20upload.php=20endpoint?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Bump VERSION - Add 'Created installers' entry to Changelist.txt - release.sh now uses the new upload.php URL with plugin/version/changelog form fields, replacing the old set.php endpoint --- Changelist.txt | 3 +++ VERSION | 2 +- release.sh | 7 ++++++- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/Changelist.txt b/Changelist.txt index 5136859..cbd80d0 100644 --- a/Changelist.txt +++ b/Changelist.txt @@ -1,3 +1,6 @@ +1.0.28: +- Created installers + 1.0.27: - Zip file updated diff --git a/VERSION b/VERSION index 3f11ef6..8b54409 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.0.27 \ No newline at end of file +1.0.28 diff --git a/release.sh b/release.sh index 370c85c..50fefed 100755 --- a/release.sh +++ b/release.sh @@ -34,8 +34,13 @@ fi gh release create "$VER" --title "$VER" -F /tmp/release_notes.txt "${ASSETS[@]}" +PLUGIN=wavetable for f in "./Binaries Linux"/*.deb \ "./Binaries Windows"/*.exe \ "./Binaries macOS"/*.pkg; do - curl -F "files=@${f}" "https://socalabs.com/files/set.php?key=$APIKEY" + curl -sS -F "files=@${f}" \ + -F "plugin=${PLUGIN}" \ + -F "version=${VER}" \ + -F "changelog=${NOTES}" \ + "https://socalabs.com/files/upload.php?key=$APIKEY" done