From 25740c29368da5434eabbfd96d982ac65d587b50 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Tue, 14 Nov 2023 21:19:52 -0500 Subject: [PATCH] Zip manufacturer files for Redumper (fixes #604) --- CHANGELIST.md | 1 + MPF.Core/Modules/Redumper/Parameters.cs | 6 ++++++ 2 files changed, 7 insertions(+) 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"))