chore: rename module from torrentclaw-cli to unarr

- Rename Go module path github.com/torrentclaw/torrentclaw-cli → github.com/torrentclaw/unarr
- Update all imports, ldflags, scripts, docs, and Docker config
- Add GitHub Actions release workflow (goreleaser on tag push)
This commit is contained in:
Deivid Soto 2026-03-30 13:06:07 +02:00
parent 9cc806d11f
commit 5a7449b9e6
58 changed files with 166 additions and 141 deletions

View file

@ -1,6 +1,6 @@
# unarr — Windows installer (PowerShell 5.1+)
# Usage: irm https://get.unarr.com/install.ps1 | iex
# or: irm https://raw.githubusercontent.com/torrentclaw/torrentclaw-cli/main/install.ps1 | iex
# or: irm https://raw.githubusercontent.com/torrentclaw/unarr/main/install.ps1 | iex
#
# Options (env vars):
# $env:INSTALL_DIR = "C:\path" — where to place the binary
@ -15,7 +15,7 @@ param(
$ErrorActionPreference = "Stop"
$Repo = "torrentclaw/torrentclaw-cli"
$Repo = "torrentclaw/unarr"
$Binary = "unarr.exe"
# ---- Helpers ----