Wails ships no Gitea provider, so add updater/gitea (~250 lines): latest non-draft release newer than current wins, pre-releases skipped unless AllowPrerelease, exact AniTrack-linux-amd64 asset match, .sha512/.sig sidecars parsed into updater.Verification (sha512+ed25519ph, mirroring wails3 updater sign). Anything missing or malformed is an error, never an unsigned install. Includes semver compare, streaming download with progress, and unit tests (picking rules, fail-closed sidecars, server errors, progress) plus an opt-in live probe (ANITRACK_LIVE_TEST=1) proven against the real instance. Also: embed updater.pub (public half; private key lives in password manager + UPDATER_SIGNING_KEY CI secret, updater.key gitignored) and ignore CI-side updater-dist/ staging.
49 lines
1.1 KiB
Plaintext
49 lines
1.1 KiB
Plaintext
# ---> Go
|
|
# If you prefer the allow list template instead of the deny list, see community template:
|
|
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
|
|
#
|
|
# Binaries for programs and plugins
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
|
|
# Test binary, built with `go test -c`
|
|
*.test
|
|
|
|
# Output of the go coverage tool, specifically when used with LiteIDE
|
|
*.out
|
|
|
|
# Dependency directories (remove the comment below to include it)
|
|
# vendor/
|
|
|
|
# Go workspace file
|
|
go.work
|
|
|
|
# ---> Wails
|
|
build/bin
|
|
.task/
|
|
node_modules
|
|
frontend/dist
|
|
frontend/package.json.md5
|
|
# Root-level lockfile only: the frontend lockfile IS tracked so CI installs
|
|
# are reproducible and setup-node's npm cache has something to hash.
|
|
/package-lock.json
|
|
.idea
|
|
.env
|
|
environment.go
|
|
# Updater signing private key. The public half (updater.pub) is committed and
|
|
# embedded; the private key lives in the password manager + CI secrets only.
|
|
updater.key
|
|
|
|
# REST (http files)
|
|
http-client.private.env.json
|
|
|
|
# Build artifacts
|
|
*.tar
|
|
*.tar.gz
|
|
/AniTrack
|
|
# Updater CI staging (bare binary + sidecars, runner-ephemeral)
|
|
updater-dist/
|