Release v1.0.0 #major
release / goreleaser (push) Successful in 27s

This commit is contained in:
2026-06-03 00:43:39 -05:00
parent 0fed1ee8d0
commit ec2ba08b5e
+29
View File
@@ -44,8 +44,37 @@ Built with Go (Fiber + SQLite + zstd) and Three.js.
The viewer shows a detailed arena, car models (blue/orange), ball with ring indicator, boost pads with pulsing animation when active, and optional ball-trail/prediction lines. The HUD displays real-time metrics, and the side panel lists recordings and server stats. The viewer shows a detailed arena, car models (blue/orange), ball with ring indicator, boost pads with pulsing animation when active, and optional ball-trail/prediction lines. The HUD displays real-time metrics, and the side panel lists recordings and server stats.
## Download
Prebuilt, statically-linked binaries for each tagged release are published to the
Gitea generic package registry under
[`texasmade/RocketLeagueBot-Renderer`](https://git.destefano.cloud/texasmade/-/packages/generic/RocketLeagueBot-Renderer).
No build toolchain required.
```sh
# Pick your platform: linux/darwin/windows and amd64/arm64.
# Windows binaries have a .exe suffix; macOS is "darwin".
VERSION=v1.0.0
FILE=RocketLeagueBot-Renderer_linux_amd64
curl -fLO "https://git.destefano.cloud/api/packages/texasmade/generic/RocketLeagueBot-Renderer/${VERSION}/${FILE}"
chmod +x "$FILE"
./"$FILE" -password=secret -http=:8080
```
Available filenames: `RocketLeagueBot-Renderer_{linux,darwin}_{amd64,arm64}` and
`RocketLeagueBot-Renderer_windows_amd64.exe`. A `checksums.txt` is published
alongside each version — verify with:
```sh
curl -fLO "https://git.destefano.cloud/api/packages/texasmade/generic/RocketLeagueBot-Renderer/${VERSION}/checksums.txt"
sha256sum -c checksums.txt --ignore-missing
```
## Quickstart ## Quickstart
To build from source instead:
```sh ```sh
git clone <repo> git clone <repo>
cd RocketLeagueBot-Renderer cd RocketLeagueBot-Renderer