Skip to content

Commit 41322f6

Browse files
committed
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
1 parent 1572b87 commit 41322f6

3 files changed

Lines changed: 10 additions & 2 deletions

File tree

Changelist.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
1.0.28:
2+
- Created installers
3+
14
1.0.27:
25
- Zip file updated
36

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.27
1+
1.0.28

release.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,13 @@ fi
3434

3535
gh release create "$VER" --title "$VER" -F /tmp/release_notes.txt "${ASSETS[@]}"
3636

37+
PLUGIN=wavetable
3738
for f in "./Binaries Linux"/*.deb \
3839
"./Binaries Windows"/*.exe \
3940
"./Binaries macOS"/*.pkg; do
40-
curl -F "files=@${f}" "https://socalabs.com/files/set.php?key=$APIKEY"
41+
curl -sS -F "files=@${f}" \
42+
-F "plugin=${PLUGIN}" \
43+
-F "version=${VER}" \
44+
-F "changelog=${NOTES}" \
45+
"https://socalabs.com/files/upload.php?key=$APIKEY"
4146
done

0 commit comments

Comments
 (0)