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 == "")