From 79cce37cf6f904fe68e073973e123c47a22fe348 Mon Sep 17 00:00:00 2001 From: Deterous <138427222+Deterous@users.noreply.github.com> Date: Sat, 17 May 2025 00:00:04 +0900 Subject: [PATCH] Add newlines to pkg info printing (#846) * Add newlines to pkg info printing * newline for ps4 too --- CHANGELIST.md | 1 + MPF.Frontend/Tools/PhysicalTool.cs | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELIST.md b/CHANGELIST.md index b355c3f5..5fd54ed6 100644 --- a/CHANGELIST.md +++ b/CHANGELIST.md @@ -50,6 +50,7 @@ - Explicitly unset Redumper speed, if needed - Simplify WriteOutputData path handling - Serialize JSON a slightly different way +- Add newlines to pkg info printing ### 3.3.0 (2025-01-03) diff --git a/MPF.Frontend/Tools/PhysicalTool.cs b/MPF.Frontend/Tools/PhysicalTool.cs index d28edb49..50a5a3fe 100644 --- a/MPF.Frontend/Tools/PhysicalTool.cs +++ b/MPF.Frontend/Tools/PhysicalTool.cs @@ -549,7 +549,7 @@ namespace MPF.Frontend.Tools var appPkgHeader = appPkgHeaderDeserializer.Deserialize(fileStream); if (appPkgHeader != null) - pkgInfo += $"{appPkgHeader.ContentID}"; + pkgInfo += $"{appPkgHeader.ContentID}" + Environment.NewLine; } if (pkgInfo == "") @@ -700,7 +700,7 @@ namespace MPF.Frontend.Tools var appPkgHeader = appPkgHeaderDeserializer.Deserialize(fileStream); if (appPkgHeader != null) - pkgInfo += $"{appPkgHeader.ContentID}"; + pkgInfo += $"{appPkgHeader.ContentID}" + Environment.NewLine; } if (pkgInfo == "")