mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Version bump to 2.3.4.0
This commit is contained in:
parent
8edd84f934
commit
6ee701262a
@ -1,7 +1,9 @@
|
||||
### 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
|
||||
* 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
|
||||
* Game file hashes are now stored on Github instead of on the build server
|
||||
|
@ -6,8 +6,8 @@
|
||||
<AssemblyName>wabbajack-cli</AssemblyName>
|
||||
<Company>Wabbajack</Company>
|
||||
<Platforms>x64</Platforms>
|
||||
<AssemblyVersion>2.3.3.0</AssemblyVersion>
|
||||
<FileVersion>2.3.3.0</FileVersion>
|
||||
<AssemblyVersion>2.3.4.0</AssemblyVersion>
|
||||
<FileVersion>2.3.4.0</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.3.0</AssemblyVersion>
|
||||
<FileVersion>2.3.3.0</FileVersion>
|
||||
<AssemblyVersion>2.3.4.0</AssemblyVersion>
|
||||
<FileVersion>2.3.4.0</FileVersion>
|
||||
<Copyright>Copyright © 2019-2020</Copyright>
|
||||
<Description>Wabbajack Application Launcher</Description>
|
||||
<PublishReadyToRun>true</PublishReadyToRun>
|
||||
|
@ -71,7 +71,7 @@ namespace Wabbajack.Lib.NexusApi
|
||||
{
|
||||
return env_key;
|
||||
}
|
||||
|
||||
|
||||
return await RequestAndCacheAPIKey();
|
||||
}
|
||||
}
|
||||
@ -155,7 +155,12 @@ namespace Wabbajack.Lib.NexusApi
|
||||
public async Task<UserStatus> GetUserStatus()
|
||||
{
|
||||
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()
|
||||
|
@ -3,8 +3,8 @@
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>netcoreapp3.1</TargetFramework>
|
||||
<AssemblyVersion>2.3.3.0</AssemblyVersion>
|
||||
<FileVersion>2.3.3.0</FileVersion>
|
||||
<AssemblyVersion>2.3.4.0</AssemblyVersion>
|
||||
<FileVersion>2.3.4.0</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.3.0</AssemblyVersion>
|
||||
<FileVersion>2.3.3.0</FileVersion>
|
||||
<AssemblyVersion>2.3.4.0</AssemblyVersion>
|
||||
<FileVersion>2.3.4.0</FileVersion>
|
||||
<Copyright>Copyright © 2019-2020</Copyright>
|
||||
<Description>An automated ModList installer</Description>
|
||||
<PublishReadyToRun>true</PublishReadyToRun>
|
||||
|
Loading…
Reference in New Issue
Block a user