diff --git a/CHANGELOG.md b/CHANGELOG.md index 623fa999..534f89c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ### Changelog +### Version - 4.0.0.0 +* The entire user interface has been reworked. + * Modlists with WebP images now load correctly on Windows installations without the WebP image extensions + * The search functionality has been improved to better show relevant searches on list titles #### Version - 3.3.1.0 - TBA * Fixed `--outputPath` not being used for the CLI `compile` (thanks to @majcosta for fixing that) * Improved Log message for cases where low storage on the drive Wabbajack is installed on causes compiles to fail diff --git a/Wabbajack.App.Wpf/Util/UIUtils.cs b/Wabbajack.App.Wpf/Util/UIUtils.cs index df8aba19..ed3bf055 100644 --- a/Wabbajack.App.Wpf/Util/UIUtils.cs +++ b/Wabbajack.App.Wpf/Util/UIUtils.cs @@ -150,7 +150,7 @@ namespace Wabbajack if (memStream == null) return default; try { - return url.EndsWith("webp", StringComparison.InvariantCultureIgnoreCase) ? BitmapImageFromWebp(memStream.ToArray(), true) : BitmapImageFromStream(memStream); + return url.EndsWith("webp", StringComparison.InvariantCultureIgnoreCase) ? BitmapImageFromWebp(memStream.ToArray()) : BitmapImageFromStream(memStream); } catch (Exception ex) { diff --git a/Wabbajack.App.Wpf/Wabbajack.App.Wpf.csproj b/Wabbajack.App.Wpf/Wabbajack.App.Wpf.csproj index 3602270a..d69db409 100644 --- a/Wabbajack.App.Wpf/Wabbajack.App.Wpf.csproj +++ b/Wabbajack.App.Wpf/Wabbajack.App.Wpf.csproj @@ -102,7 +102,6 @@ all runtime; build; native; contentfiles; analyzers; buildtransitive -