Version bump to 2.3.4.0

This commit is contained in:
Timothy Baldridge 2020-11-14 23:20:05 -07:00
parent 8edd84f934
commit 6ee701262a
6 changed files with 18 additions and 11 deletions

View File

@ -1,7 +1,9 @@
### Changelog ### Changelog
#### Version - next #### 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 * 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
* Added marker for "utility modlists" we will expand on this feature further in later releases
#### Version - 2.3.3.0 - 11/5/2020 #### Version - 2.3.3.0 - 11/5/2020
* Game file hashes are now stored on Github instead of on the build server * Game file hashes are now stored on Github instead of on the build server

View File

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

View File

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

View File

@ -71,7 +71,7 @@ namespace Wabbajack.Lib.NexusApi
{ {
return env_key; return env_key;
} }
return await RequestAndCacheAPIKey(); return await RequestAndCacheAPIKey();
} }
} }
@ -155,7 +155,12 @@ namespace Wabbajack.Lib.NexusApi
public async Task<UserStatus> GetUserStatus() public async Task<UserStatus> GetUserStatus()
{ {
var url = "https://api.nexusmods.com/v1/users/validate.json"; var url = "https://api.nexusmods.com/v1/users/validate.json";
return await Get<UserStatus>(url); var result = await Get<UserStatus>(url);
Utils.Log($"Logged into the nexus as {result.name}");
Utils.Log($"Nexus calls remaining: {DailyRemaining} daily, {HourlyRemaining} hourly");
return result;
} }
public async Task<(int, int)> GetRemainingApiCalls() public async Task<(int, int)> GetRemainingApiCalls()

View File

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

View File

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