From b8ac1bc9d44a2e1939338beaadda7225ce2b22a7 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Wed, 12 Oct 2022 21:27:58 -0700 Subject: [PATCH] Fix missing info in Aaru --- CHANGELIST.md | 1 + MPF.Modules/Aaru/Parameters.cs | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/CHANGELIST.md b/CHANGELIST.md index 2f4ed6df..b31767ab 100644 --- a/CHANGELIST.md +++ b/CHANGELIST.md @@ -139,6 +139,7 @@ - Enable separated protection info output by default - Try adding MPF logs to zip - Create MPF log helper and filter for deletion +- Fix missing info in Aaru ### 2.3 (2022-02-05) - Start overhauling Redump information pulling, again diff --git a/MPF.Modules/Aaru/Parameters.cs b/MPF.Modules/Aaru/Parameters.cs index 4d2bb22f..9a421584 100644 --- a/MPF.Modules/Aaru/Parameters.cs +++ b/MPF.Modules/Aaru/Parameters.cs @@ -7,6 +7,7 @@ using System.Text.RegularExpressions; using System.Xml; using System.Xml.Schema; using System.Xml.Serialization; +using MPF.Core.Converters; using MPF.Core.Data; using MPF.CueSheets; using RedumpLib.Data; @@ -196,6 +197,9 @@ namespace MPF.Modules.Aaru // TODO: Fill in submission info specifics for Aaru string outputDirectory = Path.GetDirectoryName(basePath); + // TODO: Determine if there's an Aaru version anywhere + info.DumpingInfo.DumpingProgram = EnumConverter.LongName(this.InternalProgram); + // Deserialize the sidecar, if possible var sidecar = GenerateSidecar(basePath + ".cicm.xml");