diff --git a/docs/content/docs/guides/EXTERNAL-HOST-WALKTHROUGH.md b/docs/content/docs/guides/EXTERNAL-HOST-WALKTHROUGH.md index b3438fa..989d497 100644 --- a/docs/content/docs/guides/EXTERNAL-HOST-WALKTHROUGH.md +++ b/docs/content/docs/guides/EXTERNAL-HOST-WALKTHROUGH.md @@ -43,7 +43,7 @@ starts on boot. To install a specific version: ```bash -sudo bash install.sh v0.92.0 +sudo bash install.sh v0.93.1 ``` Check that the service is running: @@ -219,7 +219,7 @@ curl -s http://192.0.2.1:8090/presets ```bash sudo bash install.sh # updates to latest release -sudo bash install.sh v0.93.0 # updates to a specific version +sudo bash install.sh v0.93.1 # updates to a specific version ``` The installer stops the service, downloads the new binary, and restarts diff --git a/docs/content/docs/guides/ON-DEVICE-INSTALL-WALKTHROUGH.md b/docs/content/docs/guides/ON-DEVICE-INSTALL-WALKTHROUGH.md index 2f42658..cbdb9a9 100644 --- a/docs/content/docs/guides/ON-DEVICE-INSTALL-WALKTHROUGH.md +++ b/docs/content/docs/guides/ON-DEVICE-INSTALL-WALKTHROUGH.md @@ -103,7 +103,7 @@ Verify the installed version: wget -qO- http://localhost:8000/health ``` -The JSON response should include `"version":"v0.92.0"` (or whichever +The JSON response should include `"version":"v0.93.1"` (or whichever version you installed). --- @@ -191,13 +191,13 @@ next reboot — which is fine for a one-time setup run): cd /tmp curl -L --fail -o soundtouch-cli \ - https://github.com/gesellix/Bose-SoundTouch/releases/download/v0.92.0/soundtouch-cli-v0.92.0-linux-armv7 + https://github.com/gesellix/Bose-SoundTouch/releases/download/v0.93.1/soundtouch-cli-v0.93.1-linux-armv7 chmod +x soundtouch-cli /tmp/soundtouch-cli --version ``` -Replace `v0.92.0` with the version you installed. +Replace `v0.93.1` with the version you installed. --- diff --git a/docs/content/docs/guides/RASPBERRY-PI.md b/docs/content/docs/guides/RASPBERRY-PI.md index 5382f83..3f8da60 100644 --- a/docs/content/docs/guides/RASPBERRY-PI.md +++ b/docs/content/docs/guides/RASPBERRY-PI.md @@ -39,7 +39,7 @@ You can customize the installation using environment variables: ```bash sudo \ - VERSION=v0.92.0 \ + VERSION=v0.93.1 \ HOSTNAME_FQDN=soundtouch.local \ HTTP_PORT=80 \ HTTPS_PORT=443 \ @@ -51,7 +51,7 @@ sudo \ To update the service to a specific version, run the installer with the version as an argument: ```bash -sudo bash install.sh v0.92.0 +sudo bash install.sh v0.93.1 ``` The installer will automatically fetch the latest version of itself for that release and then update the service binary and restart it. diff --git a/docs/static/images/ui-devices.png b/docs/static/images/ui-devices.png index 2b92e62..ee63a8e 100644 Binary files a/docs/static/images/ui-devices.png and b/docs/static/images/ui-devices.png differ diff --git a/docs/static/images/ui-migration.png b/docs/static/images/ui-migration.png index 66f0ef3..d624efa 100644 Binary files a/docs/static/images/ui-migration.png and b/docs/static/images/ui-migration.png differ diff --git a/docs/static/images/ui-settings.png b/docs/static/images/ui-settings.png index 8a4bf6a..b9d3586 100644 Binary files a/docs/static/images/ui-settings.png and b/docs/static/images/ui-settings.png differ diff --git a/docs/static/images/ui-sync.png b/docs/static/images/ui-sync.png index 49fef95..2628bd0 100644 Binary files a/docs/static/images/ui-sync.png and b/docs/static/images/ui-sync.png differ diff --git a/examples/navigation-station-demo/go.mod b/examples/navigation-station-demo/go.mod index f9af622..2385ceb 100644 --- a/examples/navigation-station-demo/go.mod +++ b/examples/navigation-station-demo/go.mod @@ -2,7 +2,7 @@ module navigation-station-demo go 1.26.3 -require github.com/gesellix/bose-soundtouch v0.91.0 +require github.com/gesellix/bose-soundtouch v0.93.1 require github.com/gorilla/websocket v1.5.3 // indirect diff --git a/examples/preset-management/go.mod b/examples/preset-management/go.mod index bc640f3..ea6bf72 100644 --- a/examples/preset-management/go.mod +++ b/examples/preset-management/go.mod @@ -2,7 +2,7 @@ module preset-management-example go 1.26.3 -require github.com/gesellix/bose-soundtouch v0.91.0 +require github.com/gesellix/bose-soundtouch v0.93.1 require github.com/gorilla/websocket v1.5.3 // indirect diff --git a/scripts/on-device-install/install.sh b/scripts/on-device-install/install.sh index 1adb4e3..b583711 100644 --- a/scripts/on-device-install/install.sh +++ b/scripts/on-device-install/install.sh @@ -9,7 +9,7 @@ set -eo pipefail # Override via environment variable or the --version/-v flag: # VERSION=0.92.0 curl -sSL .../install.sh | sh # curl -sSL .../install.sh | sh -s -- --version 0.92.0 -VERSION=${VERSION:-0.91.0} +VERSION=${VERSION:-0.93.1} # Parse optional command-line arguments so the script can be invoked as: # install.sh --version 0.92.0 diff --git a/scripts/raspberry-pi/README.md b/scripts/raspberry-pi/README.md index 0fb63cb..1dbf4e5 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.91.0 \ + VERSION=v0.93.1 \ 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 b964d2f..f1a10a9 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.91.0 \ +# VERSION=v0.93.1 \ # 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.91.0 +# sudo bash install.sh v0.93.1 # # 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.91.0}}" +VERSION="${1:-${VERSION:-v0.93.1}}" # Normalize version prefix if [[ ! "$VERSION" =~ ^v ]]; then VERSION="v${VERSION}" @@ -117,7 +117,7 @@ detect_arch_asset() { download_url_for() { local asset="$1" # Release asset pattern used by you earlier: - # soundtouch-service-v0.91.0-linux-armv7 + # soundtouch-service-v0.93.1-linux-armv7 echo "https://github.com/gesellix/Bose-SoundTouch/releases/download/${VERSION}/soundtouch-service-${VERSION}-${asset}" }