diff --git a/CHANGELOG.md b/CHANGELOG.md index f7b0ea09..4240f05e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ ### Changelog +#### Version - 2.1.0.1 - 7/6/2020 +* Don't include saves in .wabbajack files +* Don't delete saves from any MO2 profile during installation +* Don't try to hash .wabbajack files *in the middle of downloading them* +* Print the PrimaryKeyString in logs when an archive is missing (in case the archive name is blank) + #### Version - 2.1.0.0 - 7/2/2020 * Game files are available as downloads automatically during compilation/installation * Game files are patched/copied/used in BSA creation automatically diff --git a/Wabbajack.Lib/MO2Installer.cs b/Wabbajack.Lib/MO2Installer.cs index 95016d70..d9482e50 100644 --- a/Wabbajack.Lib/MO2Installer.cs +++ b/Wabbajack.Lib/MO2Installer.cs @@ -122,7 +122,7 @@ namespace Wabbajack.Lib if (missing.Count > 0) { foreach (var a in missing) - Info($"Unable to download {a.Name}"); + Info($"Unable to download {a.Name} ({a.State.PrimaryKeyString})"); if (IgnoreMissingFiles) Info("Missing some archives, but continuing anyways at the request of the user"); else