diff --git a/CHANGELIST.md b/CHANGELIST.md index 0112919d..b85b6e17 100644 --- a/CHANGELIST.md +++ b/CHANGELIST.md @@ -1,6 +1,7 @@ ### WIP (xxxx-xx-xx) - Add Bandai Pippin detection +- Zip manufacturer files for Redumper ### 3.0.0 (2023-11-14) diff --git a/MPF.Core/Modules/Redumper/Parameters.cs b/MPF.Core/Modules/Redumper/Parameters.cs index d12a90fd..a6d631e0 100644 --- a/MPF.Core/Modules/Redumper/Parameters.cs +++ b/MPF.Core/Modules/Redumper/Parameters.cs @@ -844,6 +844,12 @@ namespace MPF.Core.Modules.Redumper case MediaType.DVD: if (File.Exists($"{basePath}.log")) logFiles.Add($"{basePath}.log"); + if (File.Exists($"{basePath}.manufacturer")) + logFiles.Add($"{basePath}.manufacturer"); + if (File.Exists($"{basePath}.1.manufacturer")) + logFiles.Add($"{basePath}.1.manufacturer"); + if (File.Exists($"{basePath}.2.manufacturer")) + logFiles.Add($"{basePath}.2.manufacturer"); if (File.Exists($"{basePath}.physical")) logFiles.Add($"{basePath}.physical"); if (File.Exists($"{basePath}.1.physical"))