diff --git a/CHANGELOG.md b/CHANGELOG.md index 257f3dd9..615d764c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ ### Changelog +#### Version - 3.0.1.9 - 10/4/2022 +* Lots of compiler improvements for faster compilation +* Limit the log view to the last 200 messages for better UI performance +* Optimize BSA Building to give better performance and UI feedback + #### Version - 3.0.1.8 - 10/1/2022 * Fix broken ZEditMerge code (this stream is not readable) * Update out-of-date dependencies diff --git a/Wabbajack.App.Wpf/Wabbajack.App.Wpf.csproj b/Wabbajack.App.Wpf/Wabbajack.App.Wpf.csproj index acf63de6..ddac995a 100644 --- a/Wabbajack.App.Wpf/Wabbajack.App.Wpf.csproj +++ b/Wabbajack.App.Wpf/Wabbajack.App.Wpf.csproj @@ -64,7 +64,7 @@ NU1701 - + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/Wabbajack.Installer/AInstaller.cs b/Wabbajack.Installer/AInstaller.cs index ae051cf1..7f58b7ae 100644 --- a/Wabbajack.Installer/AInstaller.cs +++ b/Wabbajack.Installer/AInstaller.cs @@ -499,7 +499,7 @@ public abstract class AInstaller if (bsaPathsToNotBuild.Contains(f)) return f; - _logger.LogInformation("Deleting {RelativePath} it's not part of this ModList", relativeTo); + //_logger.LogInformation("Deleting {RelativePath} it's not part of this ModList", relativeTo); f.Delete(); return f; }).Sink();