Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Backtrack ROMPatch methods to other consoles #73

Merged
merged 1 commit into from
Dec 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ ROMParser
General
~~~~~~~

- Add ROMPatch method to (most) other consoles
- Updated regex
- Add more tests

Expand Down
7 changes: 7 additions & 0 deletions romsearch/configs/platforms/Nintendo - Game Boy Color.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,10 @@ unzip: false
# RetroAchievements
ra_id: 6
ra_hash_method: "md5"

# ROMPatcher
patch_method: "rompatcher.js"
file_exts:
- ".gbc"
patch_file_exts:
- ".bps"
7 changes: 7 additions & 0 deletions romsearch/configs/platforms/Nintendo - Game Boy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,10 @@ unzip: false
# RetroAchievements
ra_id: 4
ra_hash_method: "md5"

# ROMPatcher
patch_method: "rompatcher.js"
file_exts:
- ".gb"
patch_file_exts:
- ".bps"
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,10 @@ unzip: false
# RetroAchievements
ra_id: 7
ra_hash_method: "custom"

# ROMPatcher
patch_method: "rompatcher.js"
file_exts:
- ".nes"
patch_file_exts:
- ".ips"
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,10 @@ unzip: false
# RetroAchievements
ra_id: 3
ra_hash_method: "custom"

# ROMPatcher
patch_method: "rompatcher.js"
file_exts:
- ".sfc"
patch_file_exts:
- ".bps"
7 changes: 7 additions & 0 deletions romsearch/configs/platforms/Sony - PlayStation Portable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,10 @@ unzip: true
# RetroAchievements
ra_id: 41
ra_hash_method: "custom"

# ROMPatcher
patch_method: "xdelta"
file_exts:
- ".iso"
patch_file_exts:
- ".xdelta"
Loading