chore: bump to v0.93.1

This commit is contained in:
Tobias Gesellchen
2026-05-24 17:49:17 +02:00
parent b9aa29b92c
commit 872a121cbd
12 changed files with 15 additions and 15 deletions
@@ -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
@@ -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.
---
+2 -2
View File
@@ -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.
Binary file not shown.

Before

Width:  |  Height:  |  Size: 143 KiB

After

Width:  |  Height:  |  Size: 139 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 515 KiB

After

Width:  |  Height:  |  Size: 514 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 432 KiB

After

Width:  |  Height:  |  Size: 430 KiB

BIN
View File
Binary file not shown.

Before

Width:  |  Height:  |  Size: 94 KiB

After

Width:  |  Height:  |  Size: 93 KiB

+1 -1
View File
@@ -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
+1 -1
View File
@@ -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
+1 -1
View File
@@ -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
+1 -1
View File
@@ -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 \
+4 -4
View File
@@ -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}"
}