Crashdmp\ is where a dump sent in by a tester lands. Read it with cdb against the matching Release\rpl4opt.pdb - the PE timestamp recorded in the dump says which build it came from, and the symbols mean nothing unless it matches. Not tracked, because a minidump is not ours to keep: it carries process memory and the sender's own file paths. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
94 lines
2.0 KiB
Plaintext
94 lines
2.0 KiB
Plaintext
# Visual Studio build artifacts
|
|
[Dd]ebug/
|
|
[Rr]elease/
|
|
[Dd]ebug*/
|
|
[Rr]elease*/
|
|
x64/
|
|
x86/
|
|
[Bb]in/
|
|
[Oo]bj/
|
|
ipch/
|
|
*.aps
|
|
*.ncb
|
|
*.opensdf
|
|
*.sdf
|
|
*.suo
|
|
*.user
|
|
*.cachefile
|
|
*.sln.cache
|
|
*.vspscc
|
|
*.vssscc
|
|
*.pch
|
|
*.ilk
|
|
*.tlog
|
|
*.lastbuildstate
|
|
*.idb
|
|
*.pdb
|
|
*.obj
|
|
*.o
|
|
*.exe
|
|
*.dll
|
|
*.exp
|
|
*.map
|
|
|
|
# Visual Studio per-user / IDE state
|
|
.vs/
|
|
*.VC.db
|
|
*.VC.opendb
|
|
|
|
# Runtime / generated output
|
|
*.log
|
|
rpl4.log
|
|
|
|
# Where the game window and the exploded view's panes were last dragged
|
|
# to (RP412MFDLAYOUT). Per-machine by nature - it is screen coordinates
|
|
# on somebody's desk.
|
|
mfd_layout.cfg
|
|
|
|
# The pilot's callsign, remembered between sessions. Whoever is sitting
|
|
# at this machine, which is not the repo's business.
|
|
pilot.cfg
|
|
|
|
# Generated by stamp-version.ps1 as RP_L4's pre-build step. The patch
|
|
# number in it IS this repository's commit count, so a committed copy
|
|
# would be stale the moment it was committed.
|
|
/RP_L4/rpl4build.h
|
|
|
|
# Build-output static libs that land in lib/ (the two committed dependency
|
|
# libs, OpenAL32.lib and libsndfile-1.lib, stay tracked).
|
|
/lib/Munga_L4.lib
|
|
/lib/DivLoader.lib
|
|
|
|
# Stale Subversion metadata
|
|
.svn/
|
|
|
|
# OS cruft
|
|
Thumbs.db
|
|
desktop.ini
|
|
.DS_Store
|
|
|
|
# Packaged runnable game (pack-dist.ps1 output)
|
|
/dist/
|
|
|
|
# Local cockpit-launcher experiments — deliberately untracked
|
|
assets/RP411/startrp-800x600.bat
|
|
assets/RP411/startrp-800x600.ps1
|
|
|
|
# Bundled game working copy: committed wholesale as runtime data (see
|
|
# docs/ASSETS.md). Re-include the binaries the global rules above would skip.
|
|
!assets/**/*.exe
|
|
!assets/**/*.dll
|
|
# ...but never the spool runtime output or Windows thumbnail caches.
|
|
assets/**/*.spl
|
|
assets/**/last.spl
|
|
|
|
# packaged releases (attached to Gitea releases, not tracked)
|
|
RedPlanet-*.zip
|
|
|
|
# Crash dumps sent in by testers. Read them with cdb against the matching
|
|
# Release\rpl4opt.pdb - the PE timestamp in the dump says which build, and
|
|
# the symbols only mean anything if it matches. They are not ours to keep
|
|
# in the history: a minidump carries process memory and the sender's own
|
|
# file paths.
|
|
/Crashdmp/
|