mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
2.4.0.0
This commit is contained in:
parent
e0b6ab2492
commit
1e2ca462a5
@ -1,12 +1,13 @@
|
||||
### Changelog
|
||||
|
||||
#### Version - 2.4.0.0 - ???
|
||||
#### Version - 2.4.0.0 - 1/9/2020
|
||||
* Wabbajack is now based on .NET 5.0 (does not require a runtime download by users)
|
||||
* Origin is now supported as a game source
|
||||
* Basic (mostly untested) support for Dragon Age : Origins, Dragon Age 2, and Dragon Age: Inquisition
|
||||
* Replace RocksDB with SQLite should result in less process contention when running the UI and the CLI at the same time
|
||||
* Fixed Regression with CloudFront IPS4 sites not requesting logins before installation
|
||||
* Fixed regression that caused us to spam the Nexus with verify calls
|
||||
* Further fixes for IPS4 sites
|
||||
|
||||
#### Version - 2.3.6.2 - 12/31/2020
|
||||
* HOTFIX: Also apply the IPS4 changes to LL Meta lookups
|
||||
|
@ -6,8 +6,8 @@
|
||||
<AssemblyName>wabbajack-cli</AssemblyName>
|
||||
<Company>Wabbajack</Company>
|
||||
<Platforms>x64</Platforms>
|
||||
<AssemblyVersion>2.3.6.2</AssemblyVersion>
|
||||
<FileVersion>2.3.6.2</FileVersion>
|
||||
<AssemblyVersion>2.4.0.0</AssemblyVersion>
|
||||
<FileVersion>2.4.0.0</FileVersion>
|
||||
<Copyright>Copyright © 2019-2020</Copyright>
|
||||
<Description>An automated ModList installer</Description>
|
||||
<PublishReadyToRun>true</PublishReadyToRun>
|
||||
|
@ -4,8 +4,8 @@
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net5.0-windows</TargetFramework>
|
||||
<UseWPF>true</UseWPF>
|
||||
<AssemblyVersion>2.3.6.2</AssemblyVersion>
|
||||
<FileVersion>2.3.6.2</FileVersion>
|
||||
<AssemblyVersion>2.4.0.0</AssemblyVersion>
|
||||
<FileVersion>2.4.0.0</FileVersion>
|
||||
<Copyright>Copyright © 2019-2020</Copyright>
|
||||
<Description>Wabbajack Application Launcher</Description>
|
||||
<PublishReadyToRun>true</PublishReadyToRun>
|
||||
|
@ -50,11 +50,13 @@ namespace Wabbajack.Lib.WebAutomation
|
||||
"<h1>Temporarily Unavailable</h1>",
|
||||
"<center>Request Header Or Cookie Too Large</center>",
|
||||
//"<html><head></head><body></body></html>"
|
||||
"<span class=\"cf-error-code\">525</span>",
|
||||
"<span class=\"cf-error-code\">522</span>",
|
||||
};
|
||||
private readonly (string, int)[] KnownErrorStrings =
|
||||
{
|
||||
("<h1>400 Bad Request</h1>", 400),
|
||||
("We could not locate the item you are trying to view.", 404)
|
||||
("We could not locate the item you are trying to view.", 404),
|
||||
};
|
||||
private static readonly Random RetryRandom = new Random();
|
||||
|
||||
|
@ -3,8 +3,8 @@
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net5.0-windows</TargetFramework>
|
||||
<AssemblyVersion>2.3.6.2</AssemblyVersion>
|
||||
<FileVersion>2.3.6.2</FileVersion>
|
||||
<AssemblyVersion>2.4.0.0</AssemblyVersion>
|
||||
<FileVersion>2.4.0.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.6.2</AssemblyVersion>
|
||||
<FileVersion>2.3.6.2</FileVersion>
|
||||
<AssemblyVersion>2.4.0.0</AssemblyVersion>
|
||||
<FileVersion>2.4.0.0</FileVersion>
|
||||
<Copyright>Copyright © 2019-2020</Copyright>
|
||||
<Description>An automated ModList installer</Description>
|
||||
<PublishReadyToRun>true</PublishReadyToRun>
|
||||
|
Loading…
Reference in New Issue
Block a user