Release 1.0.28 — switch to socalabs.com upload.php endpoint

- 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
This commit is contained in:
Roland Rabien 2026-04-30 06:51:21 -07:00
commit 41322f65cd
3 changed files with 10 additions and 2 deletions

View file

@ -1,3 +1,6 @@
1.0.28:
- Created installers
1.0.27: 1.0.27:
- Zip file updated - Zip file updated

View file

@ -1 +1 @@
1.0.27 1.0.28

View file

@ -34,8 +34,13 @@ fi
gh release create "$VER" --title "$VER" -F /tmp/release_notes.txt "${ASSETS[@]}" gh release create "$VER" --title "$VER" -F /tmp/release_notes.txt "${ASSETS[@]}"
PLUGIN=wavetable
for f in "./Binaries Linux"/*.deb \ for f in "./Binaries Linux"/*.deb \
"./Binaries Windows"/*.exe \ "./Binaries Windows"/*.exe \
"./Binaries macOS"/*.pkg; do "./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 done