mirror of
https://github.com/SabreTools/MPF.git
synced 2026-07-02 17:24:48 +00:00
Electronic not Electric (fixes #402)
This commit is contained in:
@@ -113,6 +113,7 @@
|
||||
- Update Aaru submodule to latest devel
|
||||
- Add Sony Electronic Book system
|
||||
- Verify GD-ROM outputs, finally
|
||||
- Electronic not Electric
|
||||
|
||||
### 2.3 (2022-02-05)
|
||||
- Start overhauling Redump information pulling, again
|
||||
|
||||
@@ -237,7 +237,7 @@ namespace MPF.Library
|
||||
case RedumpSystem.PalmOS:
|
||||
case RedumpSystem.PocketPC:
|
||||
case RedumpSystem.RainbowDisc:
|
||||
case RedumpSystem.SonyElectricBook:
|
||||
case RedumpSystem.SonyElectronicBook:
|
||||
resultProgress?.Report(Result.Success("Running copy protection scan... this might take a while!"));
|
||||
(string protectionString, Dictionary<string, List<string>> fullProtections) = await GetCopyProtection(drive, options, protectionProgress);
|
||||
info.CopyProtection.Protection = protectionString;
|
||||
|
||||
@@ -468,7 +468,7 @@ namespace MPF.Modules.DiscImageCreator
|
||||
case RedumpSystem.EnhancedCD:
|
||||
case RedumpSystem.IBMPCcompatible:
|
||||
case RedumpSystem.RainbowDisc:
|
||||
case RedumpSystem.SonyElectricBook:
|
||||
case RedumpSystem.SonyElectronicBook:
|
||||
if (File.Exists($"{basePath}_subIntention.txt"))
|
||||
{
|
||||
FileInfo fi = new FileInfo($"{basePath}_subIntention.txt");
|
||||
|
||||
@@ -2446,8 +2446,8 @@ namespace RedumpLib.Data
|
||||
[System(Category = SystemCategory.Other, LongName = "Sega Prologue 21 Multimedia Karaoke System", ShortName = "sp21", HasCues = true, HasDat = true)]
|
||||
SegaPrologue21MultimediaKaraokeSystem,
|
||||
|
||||
[System(Category = SystemCategory.Other, Available = false, LongName = "Sony Electric Book")]
|
||||
SonyElectricBook,
|
||||
[System(Category = SystemCategory.Other, Available = false, LongName = "Sony Electronic Book")]
|
||||
SonyElectronicBook,
|
||||
|
||||
[System(Category = SystemCategory.Other, Available = false, LongName = "Super Audio CD")]
|
||||
SuperAudioCD,
|
||||
|
||||
@@ -674,7 +674,7 @@ namespace RedumpLib.Data
|
||||
break;
|
||||
|
||||
// UNKNOWN
|
||||
case RedumpSystem.SonyElectricBook:
|
||||
case RedumpSystem.SonyElectronicBook:
|
||||
types.Add(MediaType.CDROM);
|
||||
break;
|
||||
|
||||
@@ -2049,10 +2049,10 @@ namespace RedumpLib.Data
|
||||
case "sega prologue21":
|
||||
case "sega prologue 21":
|
||||
return RedumpSystem.SegaPrologue21MultimediaKaraokeSystem;
|
||||
case "electricbook":
|
||||
case "sonyelectricbook":
|
||||
case "sony electric book":
|
||||
return RedumpSystem.SonyElectricBook;
|
||||
case "electronicbook":
|
||||
case "sonyelectronicbook":
|
||||
case "sony electronic book":
|
||||
return RedumpSystem.SonyElectronicBook;
|
||||
case "sacd":
|
||||
case "superaudiocd":
|
||||
case "super audio cd":
|
||||
|
||||
Reference in New Issue
Block a user