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