mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
commit
85a3509520
@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
#### Version - 2.0.8.0 - ??
|
#### Version - 2.0.8.0 - ??
|
||||||
* Make sure the MEGA client is logged out before logging in (#881)
|
* Make sure the MEGA client is logged out before logging in (#881)
|
||||||
|
* Removed final references to `nexus_link_cache` (#865)
|
||||||
|
|
||||||
#### Version - 2.0.7.0 - 5/28/2020
|
#### Version - 2.0.7.0 - 5/28/2020
|
||||||
* Code is now robust when dealing with invasive Anti-virus software. We'll retry deletes/opens if the file is in use
|
* Code is now robust when dealing with invasive Anti-virus software. We'll retry deletes/opens if the file is in use
|
||||||
|
@ -41,8 +41,6 @@ namespace Wabbajack.Common
|
|||||||
public static readonly Extension ESM = new Extension(".esm");
|
public static readonly Extension ESM = new Extension(".esm");
|
||||||
public static readonly Extension ESP = new Extension(".esp");
|
public static readonly Extension ESP = new Extension(".esp");
|
||||||
|
|
||||||
public static string NexusCacheDirectory = "nexus_link_cache";
|
|
||||||
|
|
||||||
public static string WABBAJACK_INCLUDE = "WABBAJACK_INCLUDE";
|
public static string WABBAJACK_INCLUDE = "WABBAJACK_INCLUDE";
|
||||||
public static string WABBAJACK_ALWAYS_ENABLE = "WABBAJACK_ALWAYS_ENABLE";
|
public static string WABBAJACK_ALWAYS_ENABLE = "WABBAJACK_ALWAYS_ENABLE";
|
||||||
public static string WABBAJACK_NOMATCH_INCLUDE = "WABBAJACK_NOMATCH_INCLUDE";
|
public static string WABBAJACK_NOMATCH_INCLUDE = "WABBAJACK_NOMATCH_INCLUDE";
|
||||||
|
@ -14,8 +14,7 @@ namespace Wabbajack.Lib.CompilationSteps
|
|||||||
{
|
{
|
||||||
_cruftFiles = new HashSet<string>
|
_cruftFiles = new HashSet<string>
|
||||||
{
|
{
|
||||||
"7z.dll", "7z.exe", "vfs_staged_files\\", "nexus.key_cache", "patch_cache\\",
|
"7z.dll", "7z.exe", "vfs_staged_files\\", "nexus.key_cache", "patch_cache\\"
|
||||||
Consts.NexusCacheDirectory + "\\"
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -246,9 +246,6 @@ namespace Wabbajack.Lib.NexusApi
|
|||||||
headers.Add(("Accept", "application/json"));
|
headers.Add(("Accept", "application/json"));
|
||||||
headers.Add(("Application-Name", Consts.AppName));
|
headers.Add(("Application-Name", Consts.AppName));
|
||||||
headers.Add(("Application-Version", $"{Assembly.GetEntryAssembly()?.GetName()?.Version ?? new Version(0, 1)}"));
|
headers.Add(("Application-Version", $"{Assembly.GetEntryAssembly()?.GetName()?.Version ?? new Version(0, 1)}"));
|
||||||
|
|
||||||
if (!Directory.Exists(Consts.NexusCacheDirectory))
|
|
||||||
Directory.CreateDirectory(Consts.NexusCacheDirectory);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static async Task<NexusApiClient> Get(string? apiKey = null)
|
public static async Task<NexusApiClient> Get(string? apiKey = null)
|
||||||
|
Loading…
Reference in New Issue
Block a user