mirror of
https://github.com/saymrwulf/crisis.git
synced 2026-05-14 20:37:54 +00:00
- bundle.sh assembles CrisisViz.app (Info.plist + AppIcon.icns + resources) and ad-hoc codesigns it so it launches as a proper Foreground app. - Tools/MakeAppIcon.swift renders the app icon programmatically (10 sizes, 16-1024 px) as a 3-round mini-DAG matching the live node palette. - CrisisApp.swift forces .regular activation policy via NSApplicationDelegate so the Dock tile and menu bar appear even when launched unbundled via `swift run CrisisViz`. - Ignore build artifacts (.build, AppIcon.iconset, CrisisViz.app) and the user-local .claude/ auto-memory directory. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
29 lines
259 B
Text
29 lines
259 B
Text
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
*.egg
|
|
|
|
# Virtual environment
|
|
.venv/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Claude Code auto-memory (user-local)
|
|
.claude/
|
|
|
|
# Testing
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|