From 50d2737fb56b68f74f6ec707a694129b35f613a6 Mon Sep 17 00:00:00 2001 From: Timothy Baldridge Date: Wed, 18 Mar 2020 20:16:38 -0600 Subject: [PATCH] Small fixes for a bunch of small issues that came up in the past few weeks. --- CHANGELOG.md | 6 ++++++ Wabbajack.Common/GameMetaData.cs | 3 ++- Wabbajack.Lib/MO2Installer.cs | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5405256a..8349698d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ ### Changelog +#### Version - 1.1.2.0 - +* We now set VRAM settings for Skyrim LE ENBs +* Fixes for Morrowind Game metadata +* We now provide suggestions for users who try to install modlists for games they don't have installed +* We now warn users if they aren't running a modern version of Windows + #### Version - 1.1.1.0 - 3/9/2020 * Hotfix for Virtual Memory errors while creating BSAs diff --git a/Wabbajack.Common/GameMetaData.cs b/Wabbajack.Common/GameMetaData.cs index 7fa11eb7..26412424 100644 --- a/Wabbajack.Common/GameMetaData.cs +++ b/Wabbajack.Common/GameMetaData.cs @@ -334,7 +334,8 @@ namespace Wabbajack.Common { "SkyrimVR.exe" }, - MainExecutable = "SkyrimVR.exe" + MainExecutable = "SkyrimVR.exe", + CommonlyConfusedWith = new []{Game.Skyrim, Game.SkyrimSpecialEdition} } }, { diff --git a/Wabbajack.Lib/MO2Installer.cs b/Wabbajack.Lib/MO2Installer.cs index 656da8b1..0f856f46 100644 --- a/Wabbajack.Lib/MO2Installer.cs +++ b/Wabbajack.Lib/MO2Installer.cs @@ -59,7 +59,7 @@ namespace Wabbajack.Lib if (otherGame != null) { await Utils.Log(new CriticalFailureIntervention( - $"In order to do a proper install Wabbajack needs to know where your {game.HumanFriendlyGameName} folder resides. However this game doesn't seem to be installed, we did however find a installed" + + $"In order to do a proper install Wabbajack needs to know where your {game.HumanFriendlyGameName} folder resides. However this game doesn't seem to be installed, we did however find a installed " + $"copy of {otherGame.HumanFriendlyGameName}, did you install the wrong game?", $"Could not locate {game.HumanFriendlyGameName}")) .Task;