fix some installer errors not showing info header

This commit is contained in:
Jesse Plamondon-Willard 2021-08-22 12:14:59 -04:00
parent 26a629f41b
commit 3804ae6284
No known key found for this signature in database
GPG Key ID: CF8B1456B3E29F49
2 changed files with 4 additions and 1 deletions

View File

@ -2,6 +2,9 @@
# Release notes
## Upcoming release
* For players:
* Fixed some installer errors now show info header.
* For mod authors:
* Added `helper.Translation.GetInAllLocales` to get a translation in every available locale.
* Fixed `helper.Data.WriteJsonFile` not deleting the file if the model is null, unlike the other `Write*` methods.

View File

@ -272,7 +272,6 @@ namespace StardewModdingApi.Installer
DirectoryInfo bundleDir = new DirectoryInfo(this.BundlePath);
paths = new InstallerPaths(bundleDir, installDir, context.ExecutableName);
}
Console.Clear();
/*********
@ -309,6 +308,7 @@ namespace StardewModdingApi.Installer
return;
}
}
Console.Clear();
/*********