docs/scripts: bump stale 0.111.x example versions to current release

Repo-wide sweep of example version strings still pinned around 0.111.2/
0.111.3 (four releases behind) across install-script comments, README
walkthroughs, the FALLBACK_VERSION defaults in on-device-install and
raspberry-pi install scripts, and the bug-report issue template's version
placeholder. Bumped to 0.123.0, the current release.

Left untouched: RFC-5737 example IPs and Go test fixtures that happened to
match the same version-number pattern, dated blog posts, and the Hugo
theme's own unrelated version pin.
This commit is contained in:
Tobias Gesellchen
2026-08-15 19:13:22 +02:00
parent 9244c00cff
commit b49fa59b70
9 changed files with 34 additions and 34 deletions
+2 -2
View File
@@ -31,8 +31,8 @@ Both install the **latest release** by default (resolved from GitHub's
specific release:
```bash
sudo bash install.sh v0.111.3
sudo bash install-player.sh v0.111.3
sudo bash install.sh v0.123.0
sudo bash install-player.sh v0.123.0
```
## Removal
+3 -3
View File
@@ -10,7 +10,7 @@ set -euo pipefail
# Examples (override defaults via env vars):
#
# sudo \
# VERSION=v0.111.3 \
# VERSION=v0.123.0 \
# 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.111.3
# sudo bash install-player.sh v0.123.0
#
# Notes:
# - This script downloads a release binary for your CPU (auto-detects armv7/arm64/amd64).
@@ -41,7 +41,7 @@ if [[ -n "$VERSION" && ! "$VERSION" =~ ^v ]]; then
fi
GH_REPO="${GH_REPO:-gesellix/Bose-SoundTouch}"
# Used only when the latest-release lookup fails (offline / rate-limited).
FALLBACK_VERSION="${FALLBACK_VERSION:-v0.111.3}"
FALLBACK_VERSION="${FALLBACK_VERSION:-v0.123.0}"
SERVICE_NAME="${SERVICE_NAME:-soundtouch-player}"
BIN_PATH="${BIN_PATH:-/usr/local/bin/soundtouch-player}"
+4 -4
View File
@@ -10,7 +10,7 @@ set -euo pipefail
# Examples (override defaults via env vars):
#
# sudo \
# VERSION=v0.111.3 \
# VERSION=v0.123.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.111.3
# sudo bash install.sh v0.123.0
#
# Notes:
# - This script downloads a release binary for your CPU (auto-detects armv7/arm64/amd64).
@@ -37,7 +37,7 @@ if [[ -n "$VERSION" && ! "$VERSION" =~ ^v ]]; then
fi
GH_REPO="${GH_REPO:-gesellix/Bose-SoundTouch}"
# Used only when the latest-release lookup fails (offline / rate-limited).
FALLBACK_VERSION="${FALLBACK_VERSION:-v0.111.3}"
FALLBACK_VERSION="${FALLBACK_VERSION:-v0.123.0}"
SERVICE_NAME="${SERVICE_NAME:-soundtouch-service}"
BIN_PATH="${BIN_PATH:-/usr/local/bin/soundtouch-service}"
@@ -122,7 +122,7 @@ detect_arch_asset() {
download_url_for() {
local asset="$1"
# Release asset pattern used by you earlier:
# soundtouch-service-v0.111.3-linux-armv7
# soundtouch-service-v0.123.0-linux-armv7
echo "https://github.com/gesellix/Bose-SoundTouch/releases/download/${VERSION}/soundtouch-service-${VERSION}-${asset}"
}