Skip to content
Merged
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
15 changes: 15 additions & 0 deletions docs/reference/configuration-file.md
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,21 @@ scan:
- "jp"
```

### `scan.priority.region_mode`

Controls how ScreenScraper applies `scan.priority.region` when picking regional media. With the default `prefer_rom_tags`, the region tags in the ROM's own filename win and `scan.priority.region` only reorders those tags. With `prefer_config`, the configured regions come first, so you can pull the FR box for an `(Europe)` dump even when `fr` is not in the filename, then fall back to the ROM's tags when a preferred region has no media.

**Default:** `prefer_rom_tags`

```yaml
scan:
priority:
region:
- "fr"
- "eu"
region_mode: "prefer_config"
```

### `scan.priority.language`

Preferred localisation language.
Expand Down
Loading