Version bump to 2.3.4.1 - fix nexus client creation

This commit is contained in:
Timothy Baldridge 2020-11-15 17:40:49 -07:00
parent 6ee701262a
commit 247d19cba0
6 changed files with 14 additions and 9 deletions

View File

@ -1,5 +1,8 @@
### Changelog
#### Version - 2.3.4.1 - 11/15/2020
* Tell the mod updater to use the existing Nexus Client instead of creating a new one
#### Version - 2.3.4.0 - 11/15/2020
* Removed the internal Manifest Viewer, you can still view the Manifest of any Modlist on the website
* Improved Nexus warnings about being low on API calls

View File

@ -6,8 +6,8 @@
<AssemblyName>wabbajack-cli</AssemblyName>
<Company>Wabbajack</Company>
<Platforms>x64</Platforms>
<AssemblyVersion>2.3.4.0</AssemblyVersion>
<FileVersion>2.3.4.0</FileVersion>
<AssemblyVersion>2.3.4.1</AssemblyVersion>
<FileVersion>2.3.4.1</FileVersion>
<Copyright>Copyright © 2019-2020</Copyright>
<Description>An automated ModList installer</Description>
<PublishReadyToRun>true</PublishReadyToRun>

View File

@ -4,8 +4,8 @@
<OutputType>WinExe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<UseWPF>true</UseWPF>
<AssemblyVersion>2.3.4.0</AssemblyVersion>
<FileVersion>2.3.4.0</FileVersion>
<AssemblyVersion>2.3.4.1</AssemblyVersion>
<FileVersion>2.3.4.1</FileVersion>
<Copyright>Copyright © 2019-2020</Copyright>
<Description>Wabbajack Application Launcher</Description>
<PublishReadyToRun>true</PublishReadyToRun>

View File

@ -252,7 +252,9 @@ namespace Wabbajack.Lib.Downloaders
public override async Task<(Archive? Archive, TempFile NewFile)> FindUpgrade(Archive a, Func<Archive, Task<AbsolutePath>> downloadResolver)
{
var client = await NexusApiClient.Get();
var client = DownloadDispatcher.GetInstance<NexusDownloader>().Client ?? await NexusApiClient.Get();
await client.IsPremium();
if (client.RemainingAPICalls <= 0)
throw new NexusAPIQuotaExceeded();

View File

@ -3,8 +3,8 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<AssemblyVersion>2.3.4.0</AssemblyVersion>
<FileVersion>2.3.4.0</FileVersion>
<AssemblyVersion>2.3.4.1</AssemblyVersion>
<FileVersion>2.3.4.1</FileVersion>
<Copyright>Copyright © 2019-2020</Copyright>
<Description>Wabbajack Server</Description>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>

View File

@ -6,8 +6,8 @@
<UseWPF>true</UseWPF>
<Platforms>x64</Platforms>
<RuntimeIdentifier>win10-x64</RuntimeIdentifier>
<AssemblyVersion>2.3.4.0</AssemblyVersion>
<FileVersion>2.3.4.0</FileVersion>
<AssemblyVersion>2.3.4.1</AssemblyVersion>
<FileVersion>2.3.4.1</FileVersion>
<Copyright>Copyright © 2019-2020</Copyright>
<Description>An automated ModList installer</Description>
<PublishReadyToRun>true</PublishReadyToRun>