Add newlines to pkg info printing (#846)

* Add newlines to pkg info printing

* newline for ps4 too
This commit is contained in:
Deterous
2025-05-17 00:00:04 +09:00
committed by GitHub
parent 4016b3fc19
commit 79cce37cf6
2 changed files with 3 additions and 2 deletions

View File

@@ -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)

View File

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