mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Fix TSO extraction issues
This commit is contained in:
parent
8047bc3caa
commit
e4439f9e60
@ -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.
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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()
|
||||
|
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user