Remove dcdumper until further notice

This commit is contained in:
Matt Nadareski
2024-05-21 16:25:04 -04:00
parent c3bfd02310
commit 346dab0899
4 changed files with 1 additions and 6 deletions

View File

@@ -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)

View File

@@ -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"

View File

@@ -25,7 +25,6 @@
// Verification support only
CleanRip,
DCDumper,
PS3CFW,
UmdImageCreator,
XboxBackupCreator,

View File

@@ -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),