mirror of
https://github.com/Abdess/retroarch_system.git
synced 2026-04-13 12:22:33 -05:00
feat: add vsmile, tutor, vg5k, vgmplay profiles and system aliases
This commit is contained in:
@@ -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]
|
||||
|
||||
Reference in New Issue
Block a user