From 56fccc28504cec483936b26ebe7f32193c5a4d2a Mon Sep 17 00:00:00 2001 From: Halgari Date: Wed, 26 Oct 2022 14:49:59 -0600 Subject: [PATCH] 3.0.3.0 --- CHANGELOG.md | 6 ++++++ .../VerificationCacheTests.cs | 1 - Wabbajack.Networking.NexusApi/NexusApi.cs | 3 +-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c2bdcef8..f00af9ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ ### Changelog +#### Version - 3.0.3.0 - 10/26/2022 +* Verify hashes of all installed files +* Verify contents of BSAs during installation +* Provide a new CLI command for verifying a installed modlist +* When downloading from one Nexus CDN server fails, WJ will now try alternate Nexus servers + #### Version - 3.0.2.3 - 10/19/2022 * HOTFIX: revert GameFinder library to 1.8 until it's a bit more forgiving of corrupt files diff --git a/Wabbajack.Downloaders.Dispatcher.Test/VerificationCacheTests.cs b/Wabbajack.Downloaders.Dispatcher.Test/VerificationCacheTests.cs index ac202ca5..9627f268 100644 --- a/Wabbajack.Downloaders.Dispatcher.Test/VerificationCacheTests.cs +++ b/Wabbajack.Downloaders.Dispatcher.Test/VerificationCacheTests.cs @@ -9,7 +9,6 @@ namespace Wabbajack.Downloaders.Dispatcher.Test; public class VerificationCacheTests { - private readonly TemporaryFileManager _temp; private readonly ILogger _logger; public VerificationCacheTests(ILogger logger) diff --git a/Wabbajack.Networking.NexusApi/NexusApi.cs b/Wabbajack.Networking.NexusApi/NexusApi.cs index caa4cbb9..f78c8e94 100644 --- a/Wabbajack.Networking.NexusApi/NexusApi.cs +++ b/Wabbajack.Networking.NexusApi/NexusApi.cs @@ -33,8 +33,7 @@ public class NexusApi private (ValidateInfo info, ResponseMetadata header) _lastValidatedInfo; public NexusApi(ITokenProvider apiKey, ILogger logger, HttpClient client, - IResource limiter, - ApplicationInfo appInfo, JsonSerializerOptions jsonOptions) + IResource limiter, ApplicationInfo appInfo, JsonSerializerOptions jsonOptions) { ApiKey = apiKey; _logger = logger;