diff --git a/CHANGELIST.md b/CHANGELIST.md index 0cbc2384..bf9c3761 100644 --- a/CHANGELIST.md +++ b/CHANGELIST.md @@ -18,6 +18,7 @@ - Remove unnecessary field in execution contexts - Slight tweak to deal with net20 - Make some methods required for override +- Remove dcdumper until further notice ### 3.1.9a (2024-05-21) diff --git a/MPF.Core/Converters/EnumConverter.cs b/MPF.Core/Converters/EnumConverter.cs index 8f837fe5..5151a229 100644 --- a/MPF.Core/Converters/EnumConverter.cs +++ b/MPF.Core/Converters/EnumConverter.cs @@ -100,7 +100,6 @@ namespace MPF.Core.Converters #region Verification support only InternalProgram.CleanRip => "CleanRip", - InternalProgram.DCDumper => "DCDumper", InternalProgram.PS3CFW => "PS3 CFW", InternalProgram.UmdImageCreator => "UmdImageCreator", InternalProgram.XboxBackupCreator => "XboxBackupCreator", @@ -177,9 +176,6 @@ namespace MPF.Core.Converters // Verification support only "cleanrip" or "cr" => InternalProgram.CleanRip, - "dc" - or "dcd" - or "dcdumper" => InternalProgram.DCDumper, "ps3cfw" or "ps3" or "getkey" diff --git a/MPF.Core/Data/Enumerations.cs b/MPF.Core/Data/Enumerations.cs index 19a38397..b162227f 100644 --- a/MPF.Core/Data/Enumerations.cs +++ b/MPF.Core/Data/Enumerations.cs @@ -25,7 +25,6 @@ // Verification support only CleanRip, - DCDumper, PS3CFW, UmdImageCreator, XboxBackupCreator, diff --git a/MPF.Core/DumpEnvironment.cs b/MPF.Core/DumpEnvironment.cs index cd702221..76e2c21a 100644 --- a/MPF.Core/DumpEnvironment.cs +++ b/MPF.Core/DumpEnvironment.cs @@ -173,7 +173,6 @@ namespace MPF.Core { InternalProgram.Aaru => new Processors.Aaru(System, Type), InternalProgram.CleanRip => new CleanRip(System, Type), - InternalProgram.DCDumper => null, // TODO: Create correct parameter type when supported InternalProgram.DiscImageCreator => new DiscImageCreator(System, Type), InternalProgram.PS3CFW => new PS3CFW(System, Type), InternalProgram.Redumper => new Redumper(System, Type),