Update redumper to build 176

This commit is contained in:
Matt Nadareski
2023-06-26 01:06:46 -04:00
parent 8a5475380a
commit 32faa33ad3
4 changed files with 13 additions and 8 deletions

View File

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

View File

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