mirror of
https://github.com/SabreTools/MPF.git
synced 2026-07-02 17:24:48 +00:00
Update redumper to build 176
This commit is contained in:
@@ -16,6 +16,7 @@ namespace MPF.Modules.Redumper
|
||||
public const string Refine = "refine";
|
||||
public const string Split = "split";
|
||||
public const string Verify = "verify";
|
||||
public const string DVDKey = "dvdkey";
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
@@ -940,6 +940,7 @@ namespace MPF.Modules.Redumper
|
||||
case CommandStrings.Refine:
|
||||
case CommandStrings.Split:
|
||||
case CommandStrings.Verify:
|
||||
case CommandStrings.DVDKey:
|
||||
case CommandStrings.Info:
|
||||
ModeValues.Add(part);
|
||||
break;
|
||||
@@ -1268,8 +1269,10 @@ namespace MPF.Modules.Redumper
|
||||
if (match.Success)
|
||||
{
|
||||
string normalizedKey = match.Groups[2].Value.Replace(':', ' ');
|
||||
if (normalizedKey == "none")
|
||||
if (normalizedKey == "<none>")
|
||||
normalizedKey = "No Title Key";
|
||||
else if (normalizedKey == "<error>")
|
||||
normalizedKey = "Error Retrieving Title Key";
|
||||
|
||||
vobKeys += $"{match.Groups[1].Value} Title Key: {match.Groups[2].Value.Replace(':', ' ')}\n";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user