mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Version bump to 2.3.4.1 - fix nexus client creation
This commit is contained in:
parent
6ee701262a
commit
247d19cba0
@ -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
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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();
|
||||
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user