The launcher reported "no client available" because its update source was
pinned to a GitHub Releases manifest in a PRIVATE repo — nothing anonymous
could ever be fetched from it. Switch the feed to the PUBLIC Gitea repo so a
friend needs no account, and add the two commands that publish it.
- ReleaseManifestClient.ProductionManifestUri now points at
git.snakedesert.se/erik/acdream raw on the `dist` branch. No update
machinery changed: the existing strict reader already accepts any HTTPS
manifest, so this is a URL swap plus a build script.
- tools/publish-bin.ps1 publishes the payloads into /bin and writes
bin/manifest.json (schema v1, SHA-256 + size per artifact):
client-win-x64.zip AcDream.App + acdream-headless
launcher-win-x64.zip acdream-launcher + co-deployed acdream-bake
Stamps InformationalVersion ONLY — never -p:Version, which also rewrites
project-reference versions inside the committed packages.<rid>.lock.json
files and churned every one of them with a throwaway build stamp.
- tools/publish-dist.ps1 pushes /bin to the Gitea-only `dist` branch from a
throwaway worktree, leaving the developer's checkout, index, and HEAD
untouched. It refuses a GitHub remote outright.
Why `dist` and not main: the launcher payload is ~103 MB because the launcher
and its co-deployed bake CLI are each self-contained single files (deliberate,
see AcDream.Launcher.csproj). GitHub hard-rejects files over 100 MB, and all
three refs currently track main, so payloads on main would break every GitHub
push. `dist` is a single-commit orphan branch that each publish REPLACES, so
superseded builds never accumulate. /bin stays gitignored repo-wide and is
force-added only on that branch.
Verified live: manifest and both payloads serve anonymously over HTTPS, and a
downloaded client payload matches its declared SHA-256 and size byte for byte.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
116 lines
3 KiB
Text
116 lines
3 KiB
Text
# Build output
|
||
bin/
|
||
obj/
|
||
out/
|
||
# NOTE: the repo-root /bin folder holds the alpha distribution feed written by
|
||
# tools/publish-bin.ps1. It stays IGNORED here on purpose so a stray `git add`
|
||
# can never put ~150 MB of payloads on main (GitHub also hard-rejects any file
|
||
# over 100 MB). tools/publish-dist.ps1 force-adds it onto the Gitea-only `dist`
|
||
# branch instead, which is what the launcher's update feed reads.
|
||
|
||
# Rider / VS
|
||
.idea/
|
||
.vs/
|
||
*.user
|
||
*.suo
|
||
|
||
# NuGet
|
||
*.nupkg
|
||
packages/
|
||
|
||
# OS
|
||
.DS_Store
|
||
Thumbs.db
|
||
|
||
# Reference repos and retail client (large, not our code, separate licenses)
|
||
# WorldBuilder is exempt — it's a load-bearing dependency tracked as a git
|
||
# submodule pointing at our fork (Phase N, see docs/architecture/worldbuilder-inventory.md).
|
||
references/*
|
||
!references/WorldBuilder
|
||
!references/WorldBuilder/
|
||
|
||
# Claude Code session state
|
||
.claude/
|
||
# Superpowers brainstorm visual-companion scratch (mockups regenerate; not source)
|
||
/.superpowers/
|
||
launch.log
|
||
launch-*.log
|
||
proveout*.log
|
||
launch.utf8.log
|
||
n4-verify*.log
|
||
|
||
# A6.P5 (2026-05-25) — door-stuck reproduction captures (multi-MB);
|
||
# the 3-record fixture extracted from these lives at
|
||
# tests/AcDream.Core.Tests/Fixtures/door-bug/over-penetration-capture.jsonl
|
||
door-stuck-capture.jsonl
|
||
door-stuck-*.launch.log
|
||
door-stuck-*.launch.utf8.log
|
||
door-fix-*.launch.log
|
||
door-fix-*.jsonl
|
||
door-walkthrough.*
|
||
|
||
# ImGui auto-saved window/docking state (per-user, not source)
|
||
imgui.ini
|
||
|
||
# User-only download cache (per-developer, not source)
|
||
refs/
|
||
|
||
# Python tooling (under tools/) — bytecode caches
|
||
__pycache__/
|
||
*.pyc
|
||
|
||
# Per-session scratch (Claude commit message drafts, ad-hoc temp files)
|
||
tmp/
|
||
|
||
# Disposable dotnet test/build output redirected by local validation runs
|
||
.test-out/
|
||
|
||
# Connected-gate, benchmark, and visual-capture artifacts are machine-local
|
||
logs/
|
||
|
||
# Git worktrees for isolated feature work
|
||
.worktrees/
|
||
|
||
# Per-session retail-debugger scratch — cdb scripts, logs, analysis helpers.
|
||
# The committed reference workflow lives in CLAUDE.md "Retail debugger toolchain";
|
||
# session-specific traces should not pollute the repo.
|
||
*.cdb
|
||
# tools/cdb/ holds committed reference scripts — exempt them from the blanket rule above.
|
||
!tools/cdb/*.cdb
|
||
launch_*.log
|
||
launch_*.err
|
||
launch_*.ps1
|
||
launch[0-9]*.log
|
||
analyze_*.ps1
|
||
peek_*.ps1
|
||
run_cdb_*.ps1
|
||
find_cdb.ps1
|
||
find_acclient.ps1
|
||
kill_cdb.ps1
|
||
append_memory.ps1
|
||
sky_*.log
|
||
smoke_test*
|
||
steep_roof_trace*
|
||
substep_trace*
|
||
sg_built.txt
|
||
# Stray bash-mangled path artifacts from PowerShell-via-bash escaping
|
||
C[-]*
|
||
|
||
# Obsidian vault config (personal, not project-wide)
|
||
.obsidian/
|
||
|
||
# Junction to Claude Code per-project memory (Obsidian vault visibility)
|
||
claude-memory
|
||
studio-shots/
|
||
|
||
# MP1b acdream-bake output — user-machine artifact, never committed
|
||
# (docs/superpowers/plans/2026-07-05-mp1b-pak-and-bake.md, Task 5).
|
||
*.pak
|
||
|
||
# session-local physics capture artifacts (worktree root)
|
||
/resolve-*.jsonl
|
||
/launch-*.log
|
||
|
||
# Campaign V capture/evidence output - session-local, never tracked (423 MB lesson, 2026-07-29)
|
||
artifacts/
|
||
341-slope-capture.jsonl
|