mirror of
https://github.com/Abdess/retrobios.git
synced 2026-06-24 20:12:49 +00:00
feat: add vsmile, tutor, vg5k, vgmplay profiles and system aliases
This commit is contained in:
parent
8f29e0e85c
commit
d3bd68f6ad
7 changed files with 140 additions and 13 deletions
|
|
@ -765,7 +765,7 @@ MANUFACTURER_PREFIXES = (
|
|||
"snk-", "panasonic-", "nec-", "epoch-", "mattel-", "fairchild-",
|
||||
"hartung-", "tiger-", "magnavox-", "philips-", "bandai-", "casio-",
|
||||
"coleco-", "commodore-", "sharp-", "sinclair-", "atari-", "sammy-",
|
||||
"gce-", "interton-", "texas-instruments-",
|
||||
"gce-", "interton-", "texas-instruments-", "videoton-",
|
||||
)
|
||||
|
||||
|
||||
|
|
@ -797,6 +797,7 @@ SYSTEM_ALIASES: dict[str, str] = {
|
|||
"atarist": "atari-st",
|
||||
"sega32x": "sega-32x",
|
||||
"segastv": "sega-stv",
|
||||
"ti994a": "ti99",
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -274,7 +274,7 @@ class Scraper(BaseScraper):
|
|||
system_col = self._clean_markdown((row[key] or ""))
|
||||
break
|
||||
slug = None
|
||||
for part in re.split(r'[`\s]+', folder_col):
|
||||
for part in re.split(r'[`\s/]+', folder_col):
|
||||
part = part.strip().strip('`').lower()
|
||||
if part and part in SYSTEM_SLUG_MAP:
|
||||
slug = SYSTEM_SLUG_MAP[part]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue