A snapshot of the non-game files as of0148cb8("port: F5/F6 hand-off -- one-minute human checks, and a refutation attempt that survived", 2026-09-04), the tip of auto/port-p6-audio. The branch was deleted from the server on 2026-09-17 during the consolidation cleanup; issue #7 asks for this work as a reviewable PR, so it is recovered here before the commits are garbage collected. Contents: the 84 files the branch changed relative to its fork pointb305aa4, which is this commit's parent. The tree is therefore 0148cb8's tree with the 854 exported game assets left out -- export-probe/, export-probe2/, three .wav renders of game audio and adv-v2-screenlog.tsv. Game data stays out of git; the exporter regenerates those from the disc. docs/port/DECISIONS.md still refers to them by name. Not recovered: the branch's own 366 commits. Keeping them would make those assets reachable again, so this is one snapshot instead. The original commits stay unreferenced in the server's object store, and in this clone under the local branch archive/port-p6-audio, until either is garbage collected. Refs #7. The OPTIONS work that issue #6 asks for is a subset of this branch, also recovered as recover/options-menu. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
50 lines
1.5 KiB
Plaintext
50 lines
1.5 KiB
Plaintext
# Rust build artifacts
|
|
/target/
|
|
**/target/
|
|
/dist/
|
|
|
|
# Extracted game assets — never commit these
|
|
assets/
|
|
*.iso
|
|
*.xiso
|
|
|
|
# IDE / OS
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Local dev overrides
|
|
.env
|
|
|
|
# Trunk build output
|
|
dist/
|
|
__pycache__/
|
|
|
|
# ── The port ────────────────────────────────────────────────────────────────
|
|
# Generated from the user's own disc. This repo stays clean-room: code, schemas,
|
|
# authored mappings and documentation only -- never game content.
|
|
#
|
|
# BOTH names are ignored on purpose. `export/` is what the exporter writes and
|
|
# what `ExportTree.locate()` reads today; `data/base/` is the name MODDING.md
|
|
# gives that same tree. Only one of them existed here, and it was the one
|
|
# nothing writes -- so the live output directory was tracked while MISSION §4
|
|
# said it was ignored. Ignoring both means renaming the tree to match the docs
|
|
# cannot silently start committing the disc.
|
|
/export/
|
|
/data/base/
|
|
# Transient inter-agent files. Deliberately outside history: they are working
|
|
# artefacts with provenance in their manifest, not results.
|
|
/exchange/
|
|
!/exchange/.gitkeep
|
|
.godot/
|
|
port/.godot/
|
|
|
|
# A mod is usually an EDITED GAME ASSET, and this repository never holds game
|
|
# assets. `data/mods/` is the user's own directory -- the exporter never touches
|
|
# it and neither does git, except for the README that explains the rule.
|
|
/data/mods/*
|
|
!/data/mods/README.md
|
|
!/data/mods/.gitkeep
|