chore: update version to v0.104.1 in all installer scripts

This commit is contained in:
Tobias Gesellchen
2026-05-31 23:43:44 +02:00
parent d94b1bc067
commit 8232fd1401
10 changed files with 35 additions and 35 deletions
+2 -2
View File
@@ -29,6 +29,6 @@ sudo bash install-web.sh
Pass a version tag as the first argument to pin a specific release:
```bash
sudo bash install.sh v0.104.0
sudo bash install-web.sh v0.104.0
sudo bash install.sh v0.104.1
sudo bash install-web.sh v0.104.1
```
+3 -3
View File
@@ -10,7 +10,7 @@ set -euo pipefail
# Examples (override defaults via env vars):
#
# sudo \
# VERSION=v0.104.0 \
# VERSION=v0.104.1 \
# HTTP_PORT=8081 \
# bash install-web.sh
#
@@ -21,7 +21,7 @@ set -euo pipefail
# bash install-web.sh
#
# Or with a version argument to perform an update:
# sudo bash install-web.sh v0.104.0
# sudo bash install-web.sh v0.104.1
#
# 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.104.0}}"
VERSION="${1:-${VERSION:-v0.104.1}}"
# 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.104.0 \
# VERSION=v0.104.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.104.0
# sudo bash install.sh v0.104.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.104.0}}"
VERSION="${1:-${VERSION:-v0.104.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.104.0-linux-armv7
# soundtouch-service-v0.104.1-linux-armv7
echo "https://github.com/gesellix/Bose-SoundTouch/releases/download/${VERSION}/soundtouch-service-${VERSION}-${asset}"
}