forked from rommapp/romm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.example.yml
38 lines (35 loc) · 1.31 KB
/
config.example.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
exclude:
# Exclude platforms to be scanned
platforms:
- 'romm'
# Exclude roms or parts of roms to be scanned
roms:
## Single file games section
single_file:
# Exclude matched file names to be scanned
names:
- 'info.txt'
# Exclude all files with certain extensions to be scanned
extensions:
- 'xml'
## Multi files games section
multi_file:
# Exclude matched 'folder' (RomM identifies folders as multi file games) names to be scanned
names:
- 'my_multi_file_game'
- 'DLC'
parts:
# Exclude matched file names to be scanned from multi file roms
# Keep in mind that RomM doesn't scan folders inside multi files games,
# so there is no need to exclude folders from inside of multi files games.
names:
- 'data.xml'
# Exclude all files with certain extensions to be scanned from multi file roms
extensions:
- 'txt'
# Asociate different platform names to your current file system platform names
system:
platforms:
# [your custom platform folder name]: [RomM platform name]
gc: 'ngc' # In this example if you have a 'gc' folder, RomM will treat it like the 'ngc' folder
psx: 'ps' # In this example if you have a 'psx' folder, RomM will treat it like the 'ps' folder