From ec2ba08b5eb3b52bd7333b1459ce1194791b9f1b Mon Sep 17 00:00:00 2001 From: Francesco Destefano Date: Wed, 3 Jun 2026 00:43:39 -0500 Subject: [PATCH] Release v1.0.0 #major --- README.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/README.md b/README.md index 3532c6c..88b12d9 100644 --- a/README.md +++ b/README.md @@ -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. +## 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 +To build from source instead: + ```sh git clone cd RocketLeagueBot-Renderer