From 93c3f68443765a6bb00b0a70af851e663f9a5500 Mon Sep 17 00:00:00 2001 From: Tobias Gesellchen Date: Mon, 11 May 2026 00:49:16 +0200 Subject: [PATCH] Bump the default version in install scripts to v0.74.0 --- scripts/on-device-install/install.sh | 2 +- scripts/raspberry-pi/install.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/on-device-install/install.sh b/scripts/on-device-install/install.sh index 1c2bf95..b0dd330 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.73.0} +VERSION=${VERSION:-0.74.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/install.sh b/scripts/raspberry-pi/install.sh index 4502dcd..60db617 100644 --- a/scripts/raspberry-pi/install.sh +++ b/scripts/raspberry-pi/install.sh @@ -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.24.0}}" +VERSION="${1:-${VERSION:-v0.74.0}}" # Normalize version prefix if [[ ! "$VERSION" =~ ^v ]]; then VERSION="v${VERSION}"