M5 ship infrastructure: icon, version, release script, README

- scripts/make-icon.py: generates a 1024x1024 source.png — dark
  rounded square + 2x2 tile grid with one active-blue tile and one
  broadcast-orange tile (matches the in-app accent colors).
  Regenerated all desktop icon sizes via 'pnpm tauri icon';
  pruned iOS/Android/UWP outputs.
- Version bump 0.0.1 -> 0.1.0 across package.json, Cargo.toml,
  tauri.conf.json. First real release.
- scripts/release.sh: takes vX.Y.Z, sanity-checks (clean tree,
  on main, in sync, tag matches package.json, installer exists,
  tag not already present), tags + pushes, uploads NSIS .exe to
  Forgejo via tea releases create --asset.
- README rewritten: Install section pointing at Forgejo releases,
  Using-it cheatsheet for all M2-M4 features (splits, broadcast,
  palette, etc.), Develop/Test/Release triplet for the WSL<->Windows
  workflow, icon regen instructions.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
megaproxy 2026-05-22 13:38:29 +01:00
parent b1412287be
commit dd1cf282e6
14 changed files with 270 additions and 59 deletions

85
scripts/release.sh Normal file
View file

@ -0,0 +1,85 @@
#!/usr/bin/env bash
#
# Tag a release, find the most recent NSIS installer, and upload it to Forgejo.
#
# Prereqs:
# 1. You've bumped the version in package.json, src-tauri/Cargo.toml and
# src-tauri/tauri.conf.json and committed + pushed to origin/main.
# 2. You've run `pnpm tauri build` on the Windows host so the installer
# exists at src-tauri/target/release/bundle/nsis/*.exe.
# 3. `tea login list` shows the `rdx4` login is active.
#
# Usage:
# scripts/release.sh v0.1.0
#
set -euo pipefail
TAG="${1:-}"
if [[ -z "$TAG" ]]; then
echo "usage: $0 <vX.Y.Z>" >&2
exit 1
fi
if [[ ! "$TAG" =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
echo "tag must look like v0.1.0 (got: $TAG)" >&2
exit 1
fi
cd "$(dirname "$0")/.."
# Sanity checks
if ! git diff --quiet || ! git diff --cached --quiet; then
echo "working tree dirty — commit or stash first" >&2
exit 1
fi
branch="$(git rev-parse --abbrev-ref HEAD)"
if [[ "$branch" != "main" ]]; then
echo "not on main (you're on '$branch') — bail" >&2
exit 1
fi
git fetch origin --quiet
if [[ "$(git rev-parse HEAD)" != "$(git rev-parse origin/main)" ]]; then
echo "HEAD is out of sync with origin/main — push or pull first" >&2
exit 1
fi
# Verify the tag's version matches package.json (catches "I forgot to bump")
pkg_version="$(node -p "require('./package.json').version" 2>/dev/null || true)"
expected_tag="v${pkg_version}"
if [[ "$TAG" != "$expected_tag" ]]; then
echo "package.json says version $pkg_version → expected tag $expected_tag, got $TAG" >&2
echo "bump package.json + src-tauri/Cargo.toml + src-tauri/tauri.conf.json first" >&2
exit 1
fi
# Find the installer
nsis_dir="src-tauri/target/release/bundle/nsis"
if [[ ! -d "$nsis_dir" ]]; then
echo "$nsis_dir not found — did you run 'pnpm tauri build' on Windows yet?" >&2
exit 1
fi
installer="$(ls -1t "$nsis_dir"/*-setup.exe 2>/dev/null | head -n1 || true)"
if [[ -z "$installer" || ! -f "$installer" ]]; then
echo "no *-setup.exe found in $nsis_dir" >&2
exit 1
fi
echo "Installer: $installer"
echo "Size: $(du -h "$installer" | cut -f1)"
# Tag and push
if git rev-parse "$TAG" >/dev/null 2>&1; then
echo "tag $TAG already exists locally — bail (delete it first if intentional)" >&2
exit 1
fi
git tag -a "$TAG" -m "Release $TAG"
git push origin "$TAG"
# Create the release with the installer attached
tea releases create \
--login rdx4 \
--tag "$TAG" \
--title "$TAG" \
--note "tiletopia $TAG. Download the .exe below, run it, accept SmartScreen (\"More info → Run anyway\") — installer isn't code-signed." \
--asset "$installer"
echo
echo "✓ released $TAG → https://git.rdx4.com/megaproxy/tiletopia/releases/tag/$TAG"