- src/ironnest_assist/ -> src/fenigma/ - run.sh invokes -m fenigma.app - APP_ID: eu.dominik-roth.IronNestAssist -> eu.dominik-roth.FeNigma - window title, IronNestApp class -> FeNigmaApp - __init__.py docstring, README pgrep hint updated IRON NEST (the game's own name, e.g. NEST_KEYWORD in ocr.py) is left untouched, only our own project/app naming changed. Verified: clean import under the new module path, install.sh still builds the venv correctly, and the OCR regression sweep (9 known screenshots) still passes. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
10 lines
211 B
Bash
Executable File
10 lines
211 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Launch FeNigma.
|
|
set -euo pipefail
|
|
cd "$(dirname "${BASH_SOURCE[0]}")"
|
|
|
|
PYTHON=python3
|
|
[ -x .venv/bin/python3 ] && PYTHON=.venv/bin/python3
|
|
|
|
exec env PYTHONPATH=src "$PYTHON" -m fenigma.app
|