Fix TSO extraction issues

This commit is contained in:
Timothy Baldridge 2020-10-05 18:05:45 -06:00
parent 8047bc3caa
commit e4439f9e60
6 changed files with 14 additions and 9 deletions

View File

@ -1,6 +1,9 @@
### Changelog
#### Version - 2.3.0.1 - 10/1/2020
#### Version - 2.3.0.2 - 10/5/2020
* Fixed a situation where 7zip would refuse to extract very large archives
#### Version - 2.3.0.1 - 10/4/2020
* Rewrote the file extraction routines. New code uses less memory, less disk space, and performs less thrashing on HDDs
* Reworked IPS4 integration to reduce download failures
* Profiles can now contain an (optional) file `compiler_settings.json` that includes options for other games to be used during install.

View File

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

View File

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

View File

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

View File

@ -68,6 +68,7 @@ namespace Wabbajack.VirtualFileSystem.Test
}
}
/* Takes to long to run in CI, enable when needed for verification
[Fact]
public async Task SmallFilesShouldntCrash()
{
@ -94,6 +95,7 @@ namespace Wabbajack.VirtualFileSystem.Test
Assert.Equal(await temp.Dir.Combine(path).FileHashAsync(), hash);
}
}
*/
[Fact]
public async Task MissingFileFromArchiveShouldBeFound()

View File

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