* Initialize and finalize AmpleWin: Full-featured Windows Port with Adaptive UI, optimized engine, and internationalized documentation * Update media args * AmpleWin: Finalized Windows Port with Adaptive UI, Optimized Engine, VGM Recording, and Shared Directory Support * Fix NameError: subprocess not defined in main.py * UI: Remove redundant MAME path label from Paths tab * UI: Implement smart slot validation for disabled options and click-to-browse Shared Directory * feat(win): editable console, launch logic fixes & doc updates * Fix path quoting issues, add file selectors for A/V, and normalize shared dir path * feat: sync with Ample v0.285 resources, update to MAME 0.285, and add ROM search filter * v0.285: Expand ROM library, implement download failover, and advanced SCSI sub-slot emulation * Adjust ROM download priority: prefer callapple.org for stability, mdk.cab as fallback * Sync roms.plist with upstream/master * docs(agent): record upstream synchronization session * refactor: rename mame_bin to mame directory * chore: update .gitignore for mame directory rename * fix(main): update download and detection paths to 'mame' * fix(main): robust path resolution for pyinstaller builds * docs(readme): add build_exe.bat to project structure * fix(build): remove creation of empty mame directory to avoid confusion * feat(build): auto-generate application icon from Assets.xcassets * Add AmpleLinux - Linux Port of Ample (Apple II/Mac emulator frontend) - Ported from AmpleWin with ~20 Linux-specific adaptations - Replaced winreg with gsettings/KDE dark mode detection - Replaced os.startfile with xdg-open - Removed MAME auto-download (users install via package manager) - Added system-wide MAME detection (PATH, /usr/bin, /usr/games) - Removed all .exe suffixes from binary references - Created AmpleLinux.sh launcher script - Dual-language READMEs (English + Traditional Chinese) * Fix: use python3 -m pip instead of pip3/pip for modern Linux compatibility * feat(linux): Finalize AmpleLinux port documentation and build scripts * Fix formatting for Windows and Linux user notes Updated user guidance for Windows and Linux users. * feat(linux): interactive .desktop install, runtime icon loading, updated docs * docs(linux): clarify mame_downloader.py usage status * docs: add PR draft template * fix(linux): add binutils dependency check for pyinstaller * Update: mame 0.286 --------- Co-authored-by: User <user@example.com>
9.4 KiB
Agent Task Audit Log - Ample Linux Port
📅 Session: 2026-03-02 (Session 3)
🎯 Objective: Upstream Version Tracking & Documentation Maintenance
Focused on updating the Linux port documentation to track MAME 0.286 and simplifying maintainability.
✅ Key Achievements:
- Documentation Refactoring:
- Renamed version-specific screenshot files (e.g.
screenshot-v0.28x.pngtoscreenshot.png). - Updated
README.mdandREADME_tw.mdto use generic "latest version" terminology to prevent the need for manual text updates upon future Ample/MAME releases.
- Renamed version-specific screenshot files (e.g.
🚀 Current Project Status
The Linux Port documentation is updated for MAME 0.286 and future-proofed against minor version increments.
📅 Session: 2026-02-17 (Session 2)
🎯 Objective: Real-World Testing & Deployment Fix
Deployed the Linux Port to an actual Linux machine for testing. Identified and fixed a critical dependency installation issue.
✅ Key Achievements:
-
Launcher Script Fix (
AmpleLinux.sh):- Bug: Original script used
pip3/pipcommands directly, which don't exist on many modern Linux distros (Debian 12+, Ubuntu 23+, Fedora 38+ enforce PEP 668). - Fix v1: Changed to
python3 -m pip(the universally reliable pip invocation). - Fix v2: Added automatic
--break-system-packagesfallback for PEP 668-compliant systems. - Error Messages: Added distro-specific guidance (apt/dnf/pacman) and venv instructions in error output.
- Bug: Original script used
-
Git Workflow:
- Created
linuxbranch frommaster. - Pushed to
origin/linuxfor cross-machine testing.
- Created
🔍 Testing Observations (Real Linux Machine):
pip3command was not in PATH → first fallback triggered.python3 -m pipalso failed (PEP 668 system Python restriction) → second fallback triggered with--break-system-packages.- Conclusion: Many modern Linux distros require either system packages (
sudo apt install python3-pyside6 python3-requests) or a venv approach. The launcher script now documents both paths clearly.
⚠️ Known Issue - Pending Resolution:
- Systems without any pip module need manual package installation first. The script provides clear guidance but cannot auto-resolve this without
sudo. - Recommended solutions (in priority order):
- System packages:
sudo apt install python3-pyside6 python3-requests - Install pip:
sudo apt install python3-pip, then re-run script - Use venv:
python3 -m venv venv && source venv/bin/activate && pip install -r requirements.txt && python3 main.py
- System packages:
🚀 Current Project Status
Codebase is ported and pushed to linux branch. Launcher script has been hardened for modern Linux distros. Awaiting successful end-to-end test with dependencies installed.
📅 Session: 2026-02-16 (Session 1)
🎯 Objective: Linux Port Creation
Ported AmpleWin (Windows) to Linux, following the original author's suggestion (ksherlock/ample#45) that Linux support would be easy to add.
✅ Key Achievements:
-
Codebase Porting (from AmpleWin):
- Zero-Modification Files:
data_manager.py,rom_manager.py,mame_launcher.py,requirements.txt— copied directly, no changes needed. - Simplified
mame_downloader.py: RemovedMameDownloadWorkerentirely (Linux users install MAME via their package manager). KeptVgmModDownloadWorkerwith Linux adaptations (7z via PATH, no.exesuffix, helpfulp7zipinstall instructions). main.py(~20 changes): Comprehensive platform adaptation:- Replaced
winregtheme detection withgsettings(GNOME 42+color-scheme) and KDE (kdeglobals) dark mode detection. - Replaced all
os.startfile()calls withxdg-openvia a helper function_xdg_open(). - Removed all
.exesuffixes from MAME binary references (mame.exe→mame,mame-vgm.exe→mame-vgm). - Enhanced
check_for_mame()to search system paths (/usr/bin/mame,/usr/games/mame,/usr/local/bin/mame) and usewhich mame. - Replaced
Download MAMEbutton with package manager guidance text. - Updated
shlex.split()fromposix=False(Windows) toposix=True(Linux). - Updated file browser filter from
*.exetoAll Files (*). - Changed window title and help URL.
- Replaced
- Zero-Modification Files:
-
Launcher Script:
- Created
AmpleLinux.shas equivalent ofAmpleWin.bat. - Includes Python 3 detection, pip dependency installation, and helpful error messages with distro-specific commands.
- Created
-
Documentation:
- Created dual-language READMEs (
README.mdEnglish,README_tw.mdTraditional Chinese). - Includes installation guide for all major distros (Ubuntu, Fedora, Arch, Flatpak).
- Troubleshooting section for PySide6, MAME detection, and theme issues.
- Created dual-language READMEs (
🔍 Design Decisions:
-
Separate Directory (not shared codebase): Chose to create
AmpleLinux/as a separate directory rather than refactoringAmpleWin/into a shared codebase. This maintains the project convention where each platform gets its own additive subdirectory, minimizing risk to the stable Windows port. -
No MAME Auto-Download: Following the original author's guidance ("let the user download it themselves"), Linux users install MAME via their system package manager. This is the Linux cultural norm and avoids complex binary distribution issues.
-
GNOME + KDE Theme Detection: Implemented multi-strategy dark mode detection covering GNOME 42+
color-scheme, older GNOMEgtk-theme, and KDEkdeglobals, with Qt palette as ultimate fallback.
🚀 Current Project Status
The Linux Port is functionally complete. All Windows-specific code has been adapted, and the application should work on major Linux distributions with GNOME or KDE desktops.
Handover Notes for Future Agents
1. Platform Differences from AmpleWin
- No
winreg: Theme detection usesgsettingsand KDE config file parsing. - No
os.startfile(): Usesxdg-openvia the_xdg_open()helper function. - No
.exesuffixes: All binary references use bare names (mame,mame-vgm). - No MAME auto-download: Users install via package manager. Settings dialog shows guidance.
shlex.split(posix=True): Linux uses POSIX-mode shell parsing (no special Windows path handling).- MAME detection: Checks
PATHviawhich, plus standard Linux paths (/usr/bin,/usr/games,/usr/local/bin).
2. Deployment (CRITICAL)
- PEP 668 Era: Modern Linux distros (Debian 12+, Ubuntu 23.04+, Fedora 38+) block global pip installs. The launcher script handles this with
--break-system-packagesfallback. - Recommended Install Methods (in priority order):
- System packages:
sudo apt install python3-pyside6 python3-requests mame - venv:
python3 -m venv venv && source venv/bin/activate && pip install -r requirements.txt - pip with override:
python3 -m pip install -r requirements.txt --break-system-packages
- System packages:
- Never use
pip3orpipdirectly in scripts — always usepython3 -m pipfor reliability.
3. Known Mantras (inherited from AmpleWin)
- Visual Parity is King: Every margin, font size, and color was cross-referenced with macOS.
- Authorship: This Linux Port is based on the AmpleWin collaboration between anomixer and Antigravity.
📅 Session: 2026-02-17 (Session 2)
🎯 Objective: First-Run Experience, Build System & Polish
✅ Key Changes:
-
Launcher Architecture (
AmpleLinux.sh):- Refactored to venv: Switched from system-level
aptdependencies to a strictly isolatedpython3 -m venvapproach. - Automated Setup: Script now auto-creates
.venv, installspython3-venv(if missing), and pip installsrequirements.txt. - Distro Agnostic: Only depends on
python3-fullandlibxcb-cursor*(apt) for the base interpreter; all libraries (PySide6) are pulled via pip. - ALSA Fix: Added auto-detection of
/proc/asoundandusermod -a -G audiofix for permission issues.
- Refactored to venv: Switched from system-level
-
User Experience Enhancements (
main.py):- Ubuntu Snap Integration: If MAME is missing on Ubuntu, offers
sudo snap install mamewith a non-blockingQProgressDialog. - Configuration Fix:
ensure_mame_ininow runsmame -ccinsideAmpleLinux/mameto keep config portable. - Path Precision:
update_command_linenow resolves absolute paths for-inipathand-rompath(e.g.,/home/user/...). - BGFX Cleanup: Removed Windows-only Direct3D options.
- UI Polish: "Generate VGM" now shows a "Feature not implemented" popup.
- Ubuntu Snap Integration: If MAME is missing on Ubuntu, offers
-
Build System (New):
make_icon.py: Created Linux-specific icon generator (produces standard PNG sizes: 16x16 to 512x512).build_elf.sh: Created PyInstaller build script that uses a temporary venv to bypass PEP 668 restrictions and produce a standalone ELF binary indist/.
🔍 Technical Decisions:
- PySide6 via pip: Moved away from
python3-pyside2(apt) because the codebase is written for PySide6. Using venv + pip ensures version consistency and avoids the "externally-managed-environment" error on modern distros. - MAME Snap: For Ubuntu users, Snap is the most reliable way to get a recent MAME version without PPA complexity.