From 5ba0776787f91e94aeffe9f1d5801a60b676cb15 Mon Sep 17 00:00:00 2001 From: Tobias Gesellchen Date: Fri, 15 May 2026 12:38:33 +0200 Subject: [PATCH] Bump install scripts to v0.79.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit on-device-install and raspberry-pi installers default to the new v0.79.0 release binary. Also refreshes two stale comment examples in the raspberry-pi install script (v0.17.0 → v0.78.0, v0.18.1 → v0.79.0) so the in-file usage hints reflect the same era as the default. Co-Authored-By: Claude Opus 4.7 (1M context) --- scripts/on-device-install/install.sh | 2 +- scripts/raspberry-pi/README.md | 2 +- scripts/raspberry-pi/install.sh | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/on-device-install/install.sh b/scripts/on-device-install/install.sh index c04fe23..6f8913c 100644 --- a/scripts/on-device-install/install.sh +++ b/scripts/on-device-install/install.sh @@ -1,7 +1,7 @@ #!/bin/bash set -eo pipefail -VERSION=${VERSION:-0.78.0} +VERSION=${VERSION:-0.79.0} GH_REPO=${GH_REPO:-gesellix/Bose-SoundTouch} BINARY_URL=${BINARY_URL:-https://github.com/$GH_REPO/releases/download/v$VERSION/soundtouch-service-v$VERSION-linux-armv7} INIT_SCRIPT_URL=${INIT_SCRIPT_URL:-https://raw.githubusercontent.com/$GH_REPO/v$VERSION/scripts/on-device-install/aftertouch} diff --git a/scripts/raspberry-pi/README.md b/scripts/raspberry-pi/README.md index 3dd3404..17eeaab 100644 --- a/scripts/raspberry-pi/README.md +++ b/scripts/raspberry-pi/README.md @@ -28,7 +28,7 @@ You can override defaults: ```bash sudo \ - VERSION=v0.78.0 \ + VERSION=v0.79.0 \ HOSTNAME_FQDN=soundtouch.local \ HTTP_PORT=80 \ HTTPS_PORT=443 \ diff --git a/scripts/raspberry-pi/install.sh b/scripts/raspberry-pi/install.sh index f0196bf..8972337 100644 --- a/scripts/raspberry-pi/install.sh +++ b/scripts/raspberry-pi/install.sh @@ -10,7 +10,7 @@ set -euo pipefail # Examples (override defaults via env vars): # # sudo \ -# VERSION=v0.17.0 \ +# VERSION=v0.78.0 \ # HOSTNAME_FQDN=soundtouch.local \ # HTTP_PORT=80 \ # HTTPS_PORT=443 \ @@ -18,7 +18,7 @@ set -euo pipefail # bash install.sh # # Or with a version argument to perform an update: -# sudo bash install.sh v0.18.1 +# sudo bash install.sh v0.79.0 # # Notes: # - This script downloads a release binary for your CPU (auto-detects armv7/arm64/amd64). @@ -28,7 +28,7 @@ set -euo pipefail # - Safe to re-run; it will update binary/config/unit and restart the service. # ============================================================================== -VERSION="${1:-${VERSION:-v0.78.0}}" +VERSION="${1:-${VERSION:-v0.79.0}}" # Normalize version prefix if [[ ! "$VERSION" =~ ^v ]]; then VERSION="v${VERSION}"