add 2 games, fix compression, update download-o-rama

This commit is contained in:
zefie
2025-08-14 00:23:16 -04:00
parent 9a9d161dc1
commit e8922bddfe
213 changed files with 1363 additions and 36 deletions

View File

@@ -900,13 +900,13 @@ class WTVClientSessionData {
this.SaveIfRegistered(true);
}
getBoxName() {
getBoxName(full = true) {
switch (this.get("wtv-client-rom-type")) {
case "US-DTV-disk-0MB-16MB-softmodem-CPU5230":
case "US-DTV-disk-0MB-32MB-softmodem-CPU5230":
case "US-WEBSTAR-disk-0MB-8MB-softmodem-CPU5230":
case "US-WEBSTAR-disk-0MB-16MB-softmodem-CPU5230":
return "satellite receiver";
return (full ? "WebTV satellite receiver" : "satellite receiver");
case "US-LC2-flashdisk-0MB-16MB-softmodem-CPU5230":
case "US-LC2-disk-0MB-8MB":
@@ -920,10 +920,10 @@ class WTVClientSessionData {
case "JP-LC2-disk-0MB-8MB-CPU5230":
case "JP-LC2-disk-0MB-16MB-CPU5230":
case "JP-LC2-flash-2MB-8MB-CPU5230":
return "Plus receiver";
return (full ? "WebTV Plus receiver" : "Plus receiver");
default:
return "Internet terminal";
return (full ? "WebTV Internet terminal" : "Internet terminal");
}
}