RomM
Beautiful, powerful, self-hosted rom manager and player
Alternative to: antstream arcade
4.9.0-alpha.2
2026-05-09[!NOTE]
API Changes
New endpoints
POST /api/collection/{id}/roms: Add ROMs (list of IDs) to a collectionDELETE /api/collection/{id}/roms: Remove ROMs (list of IDs) from a collectionPOST /api/export/pegasus: Export ROMs tometadata.pegasus.txtand write to platform folderPOST /api/play-sessions: Inject a list of play sessions (for playtime tracking)GET /api/play-sessions: Get filtered play sessionsDELETE /api/play-sessions/{session_id}: Delete play sessionPOST /api/sync/negotiate: Negotiate sync operations between a client device and serverPOST /api/sync/sessions/{session_id}/complete: Mark a sync session as completeGET /api/sync/sessions: List sync sessionsGET /api/sync/sessions/{session_id}: Get a specific sync sessionPOST /api/sync/devices/{device_id}/push-pull: Manually trigger a push-pull sync for a deviceChanged endpoints
/api/gamelist/export*→/api/export/gamelist-xml⚠️ConfigResponsereturns new fields:
DEFAULT_EXCLUDED_DIRS: default list of always-excluded foldersDEFAULT_EXCLUDED_FILES: default list of always-excluded filesDEFAULT_EXCLUDED_EXTENSIONS: default list of always-excluded extensionsGAMELIST_MEDIA_THUMBNAIL: one ofMetadataMediaTypeGAMELIST_MEDIA_IMAGE: of oneMetadataMediaTypeHeartbeatResponsenow returnsLIBRETRO_API_ENABLED- Device create and update endpoints now accept
sync_modeandsync_configfields- All datetime fields are now serialized to ensure ensuring UTC timezone is always present
Environment variables
- SYNC_BASE_PATH: (default:
/romm/sync)- ENABLE_SYNC_FOLDER_WATCHER: (default: false)
- SYNC_FOLDER_SCAN_DELAY: (default: 2 minutes)
- ENABLE_SYNC_PUSH_PULL: (default: false)
- SYNC_PUSH_PULL_CRON: (default: every 30 minutes)
- SYNC_SSH_KEYS_PATH: (default:
/romm/sync/keys)- SYNC_SSH_KNOWN_HOSTS_PATH: (default:
/romm/sync/known_hosts)
Highlights
Save sync engine
“Coming soon” no more! Third-party app developers will now be able to rely on RomM to keep save files in sync across devices and platforms. #3137
Devices (apps, handhelds, browsers) can choose to register themselves with the server, which uniquely identifies them with a token. The system tracks which device has the latest version of a save file, flags conflicts when two devices change the same save, and syncs in whichever way fits the device: on demand, via a watched folder, or through a scheduled background sync.
Play session tracking
Another one for the app developers: client devices submit batches of play sessions per device, recording when and how long games were played. Sessions track both the time window (start_time/end_time) and screen-on time (duration_ms), which may differ due to device suspension or back-grounding. #3155
Libretro thumbnails
The libretro thumbnail repository is now available as a first-class artwork source for region-correct box art (PAL/Europe, Japan, etc.). Matching is exact case-insensitive against the directory listing, so a ROM named “(Europe)” lands on the (Europe) artwork. The source is enabled by default, and you can set it’s priority in your config.yml via the scan.priority.artwork list. #3252
Pegasus metadata export
You can now auto-export a Pegasus compatible metadata.pegasus.txt file, just like the existing gamelist.xml export. Enable it in your config.yml file by setting scan.export.pegasus to true, and it should appear in each platform folder (alongside your ROMs). #3153
[!WARNING] The structure of scan exports in
config.ymlhas changed! If you’re currently exportinggamelist.xmlfiles withscan.export_gamelist, migrate toscan.export.gamelist_xml: true
Notable changes
- Gamelist export improvements by @vargash in https://github.com/rommapp/romm/pull/3202
- Send a suggestion to playmatch on manual match when enabled by @DevYukine in https://github.com/rommapp/romm/pull/3296
Fixes
- 4.8.1 hotfixes by @gantoine in https://github.com/rommapp/romm/pull/3221
- UI settings not woking after switching pages back and forth by @Namaneo in https://github.com/rommapp/romm/pull/3317
- MSDOS games fail to launch in console mode (“Error for site owner / Check console”) by @gantoine in https://github.com/rommapp/romm/pull/3294
- Include
cusregion in default ScreenScraper fallback regions by @gantoine in https://github.com/rommapp/romm/pull/3273 - Scan stalls on platforms with 10k+ already-scanned ROMs by @gantoine in https://github.com/rommapp/romm/pull/3249
- Respect LOGLEVEL env var across all log output sources by @gantoine in https://github.com/rommapp/romm/pull/3243
- Registration links redirect to login for unauthenticated users by @gantoine in https://github.com/rommapp/romm/pull/3231
- Address bugs and add test coverage for save-sync by @tmgast in https://github.com/rommapp/romm/pull/3135
- Fix age_ratings Pydantic validation error on MySQL/MariaDB for single-element arrays by @gantoine in https://github.com/rommapp/romm/pull/3223
- Parse Content-Type essence before validating resource downloads by @TechnicallyComputers in https://github.com/rommapp/romm/pull/3233
- [ROMM-3232] Fix content_hash not updated by @gantoine in https://github.com/rommapp/romm/pull/3234
- Fix extension exclusion not matching multi-dot filenames by @gantoine in https://github.com/rommapp/romm/pull/3326
- Fix chunked uploads writing to RAM/tmpfs and upload speed showing 0 B/s by @gantoine in https://github.com/rommapp/romm/pull/3316
- Fix RuffleRS scaling and overflow issues on large and small screens by @jondycz in https://github.com/rommapp/romm/pull/3245
- Fix RAHasher prod build by @dangmai in https://github.com/rommapp/romm/pull/3282
- Fix download failing when hash has not been computed by @Namaneo in https://github.com/rommapp/romm/pull/3264
- Fix race condition in collection and favorite rom membership updates by @Spinnich in https://github.com/rommapp/romm/pull/3263
- Fix settings drawer logout button overflowing on mobile by @gantoine in https://github.com/rommapp/romm/pull/3248
- [ROMM-3235] Improve light mode text by @gantoine in https://github.com/rommapp/romm/pull/3236
- Resolve MariaDB errors in migration downgrades (0068, 0072) by @gantoine in https://github.com/rommapp/romm/pull/3246
- Show TheGamesDB link on platform drawer when tgdb_id is set by @gantoine in https://github.com/rommapp/romm/pull/3254
- A bunch of minor bug fixes by @Namaneo in https://github.com/rommapp/romm/pull/3270
- Re-parse tags from filename when renaming a rom by @zurdi15 in https://github.com/rommapp/romm/pull/3295
- Open refresh metadata dialog with scan type and metadata source selection by @gantoine in https://github.com/rommapp/romm/pull/3293
Other changes
- Safer migrations by @gantoine in https://github.com/rommapp/romm/pull/3238
- Skip RAHasher subprocess for archived disc-platform ROMs by @gantoine in https://github.com/rommapp/romm/pull/3253
- Add missing index on
rom_files(rom_id)to fix slow game listing on large ROM sets by @gantoine in https://github.com/rommapp/romm/pull/3259 - Enforce LF line endings for shell scripts via .gitattributes by @Spinnich in https://github.com/rommapp/romm/pull/3266
- Describe architecture by @zurdi15 in https://github.com/rommapp/romm/pull/3299
- Replace HIGH_PRIO_STRUCTURE_PATH by @gantoine in https://github.com/rommapp/romm/pull/3322
- Replace deprecated
job.get_id()withjob.idfor rq >= 2.7.0 compatibility by @gantoine in https://github.com/rommapp/romm/pull/3320 - Bump RAHasher to 1.8.3 in docker/Dockerfile by @gantoine in https://github.com/rommapp/romm/pull/3277
- Bump pytest-asyncio for pytest 9 compatibility by @gantoine in https://github.com/rommapp/romm/pull/3269
- Bump vite from 6.4.1 to 6.4.2 in /frontend by @dependabot[bot] in https://github.com/rommapp/romm/pull/3227
- Bump postcss from 8.5.8 to 8.5.12 in /frontend by @dependabot[bot] in https://github.com/rommapp/romm/pull/3321
- Bump axios from 1.13.6 to 1.15.0 in /frontend by @dependabot[bot] in https://github.com/rommapp/romm/pull/3240
- Bump python-dotenv from 1.0.1 to 1.2.2 by @dependabot[bot] in https://github.com/rommapp/romm/pull/3301
- Bump follow-redirects from 1.15.11 to 1.16.0 in /frontend by @dependabot[bot] in https://github.com/rommapp/romm/pull/3267
- Bump pillow from 12.1.1 to 12.2.0 by @dependabot[bot] in https://github.com/rommapp/romm/pull/3257
- Bump mako from 1.3.10 to 1.3.11 by @dependabot[bot] in https://github.com/rommapp/romm/pull/3304
- Bump pytest from 8.4.1 to 9.0.3 by @dependabot[bot] in https://github.com/rommapp/romm/pull/3268
New Contributors
- @TechnicallyComputers made their first contribution in https://github.com/rommapp/romm/pull/3233
- @jondycz made their first contribution in https://github.com/rommapp/romm/pull/3245
- @Spinnich made their first contribution in https://github.com/rommapp/romm/pull/3263
- @Namaneo made their first contribution in https://github.com/rommapp/romm/pull/3264
- @dangmai made their first contribution in https://github.com/rommapp/romm/pull/3282
Full Changelog: https://github.com/rommapp/romm/compare/4.8.1…4.9.0-alpha.2