docs(install): bump example/default version v0.107.0 -> v0.111.3

The installer docs and the on-device + Raspberry Pi installer scripts all
defaulted to and showed v0.107.0. Update every install example and the
VERSION defaults to the current release v0.111.3 across the on-device and
Pi guides and scripts.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
Tobias Gesellchen
2026-06-25 09:47:19 +02:00
co-authored by Claude Opus 4.8
parent 2e6e88dd8c
commit 01ebbb102d
8 changed files with 33 additions and 33 deletions
+2 -2
View File
@@ -29,8 +29,8 @@ sudo bash install-player.sh
Pass a version tag as the first argument to pin a specific release:
```bash
sudo bash install.sh v0.107.0
sudo bash install-player.sh v0.107.0
sudo bash install.sh v0.111.3
sudo bash install-player.sh v0.111.3
```
> `install-web.sh` is the old name for `install-player.sh` and still works as a
+3 -3
View File
@@ -10,7 +10,7 @@ set -euo pipefail
# Examples (override defaults via env vars):
#
# sudo \
# VERSION=v0.107.0 \
# VERSION=v0.111.3 \
# HTTP_PORT=8081 \
# bash install-player.sh
#
@@ -21,7 +21,7 @@ set -euo pipefail
# bash install-player.sh
#
# Or with a version argument to perform an update:
# sudo bash install-player.sh v0.107.0
# sudo bash install-player.sh v0.111.3
#
# Notes:
# - This script downloads a release binary for your CPU (auto-detects armv7/arm64/amd64).
@@ -32,7 +32,7 @@ set -euo pipefail
# - Safe to re-run; it will update the binary, env file, and unit and restart.
# ==============================================================================
VERSION="${1:-${VERSION:-v0.107.0}}"
VERSION="${1:-${VERSION:-v0.111.3}}"
# Normalize version prefix
if [[ ! "$VERSION" =~ ^v ]]; then
VERSION="v${VERSION}"
+4 -4
View File
@@ -10,7 +10,7 @@ set -euo pipefail
# Examples (override defaults via env vars):
#
# sudo \
# VERSION=v0.107.0 \
# VERSION=v0.111.3 \
# 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.107.0
# sudo bash install.sh v0.111.3
#
# 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.107.0}}"
VERSION="${1:-${VERSION:-v0.111.3}}"
# 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.107.0-linux-armv7
# soundtouch-service-v0.111.3-linux-armv7
echo "https://github.com/gesellix/Bose-SoundTouch/releases/download/${VERSION}/soundtouch-service-${VERSION}-${asset}"
}