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
|
### 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
|
* 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
|
* 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.
|
* 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>
|
<AssemblyName>wabbajack-cli</AssemblyName>
|
||||||
<Company>Wabbajack</Company>
|
<Company>Wabbajack</Company>
|
||||||
<Platforms>x64</Platforms>
|
<Platforms>x64</Platforms>
|
||||||
<AssemblyVersion>2.3.0.1</AssemblyVersion>
|
<AssemblyVersion>2.3.0.2</AssemblyVersion>
|
||||||
<FileVersion>2.3.0.1</FileVersion>
|
<FileVersion>2.3.0.2</FileVersion>
|
||||||
<Copyright>Copyright © 2019-2020</Copyright>
|
<Copyright>Copyright © 2019-2020</Copyright>
|
||||||
<Description>An automated ModList installer</Description>
|
<Description>An automated ModList installer</Description>
|
||||||
<PublishReadyToRun>true</PublishReadyToRun>
|
<PublishReadyToRun>true</PublishReadyToRun>
|
||||||
|
@ -4,8 +4,8 @@
|
|||||||
<OutputType>WinExe</OutputType>
|
<OutputType>WinExe</OutputType>
|
||||||
<TargetFramework>netcoreapp3.1</TargetFramework>
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
||||||
<UseWPF>true</UseWPF>
|
<UseWPF>true</UseWPF>
|
||||||
<AssemblyVersion>2.3.0.1</AssemblyVersion>
|
<AssemblyVersion>2.3.0.2</AssemblyVersion>
|
||||||
<FileVersion>2.3.0.1</FileVersion>
|
<FileVersion>2.3.0.2</FileVersion>
|
||||||
<Copyright>Copyright © 2019-2020</Copyright>
|
<Copyright>Copyright © 2019-2020</Copyright>
|
||||||
<Description>Wabbajack Application Launcher</Description>
|
<Description>Wabbajack Application Launcher</Description>
|
||||||
<PublishReadyToRun>true</PublishReadyToRun>
|
<PublishReadyToRun>true</PublishReadyToRun>
|
||||||
|
@ -3,8 +3,8 @@
|
|||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>netcoreapp3.1</TargetFramework>
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
||||||
<AssemblyVersion>2.3.0.1</AssemblyVersion>
|
<AssemblyVersion>2.3.0.2</AssemblyVersion>
|
||||||
<FileVersion>2.3.0.1</FileVersion>
|
<FileVersion>2.3.0.2</FileVersion>
|
||||||
<Copyright>Copyright © 2019-2020</Copyright>
|
<Copyright>Copyright © 2019-2020</Copyright>
|
||||||
<Description>Wabbajack Server</Description>
|
<Description>Wabbajack Server</Description>
|
||||||
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
<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]
|
[Fact]
|
||||||
public async Task SmallFilesShouldntCrash()
|
public async Task SmallFilesShouldntCrash()
|
||||||
{
|
{
|
||||||
@ -94,6 +95,7 @@ namespace Wabbajack.VirtualFileSystem.Test
|
|||||||
Assert.Equal(await temp.Dir.Combine(path).FileHashAsync(), hash);
|
Assert.Equal(await temp.Dir.Combine(path).FileHashAsync(), hash);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
[Fact]
|
[Fact]
|
||||||
public async Task MissingFileFromArchiveShouldBeFound()
|
public async Task MissingFileFromArchiveShouldBeFound()
|
||||||
|
@ -6,8 +6,8 @@
|
|||||||
<UseWPF>true</UseWPF>
|
<UseWPF>true</UseWPF>
|
||||||
<Platforms>x64</Platforms>
|
<Platforms>x64</Platforms>
|
||||||
<RuntimeIdentifier>win10-x64</RuntimeIdentifier>
|
<RuntimeIdentifier>win10-x64</RuntimeIdentifier>
|
||||||
<AssemblyVersion>2.3.0.1</AssemblyVersion>
|
<AssemblyVersion>2.3.0.2</AssemblyVersion>
|
||||||
<FileVersion>2.3.0.1</FileVersion>
|
<FileVersion>2.3.0.2</FileVersion>
|
||||||
<Copyright>Copyright © 2019-2020</Copyright>
|
<Copyright>Copyright © 2019-2020</Copyright>
|
||||||
<Description>An automated ModList installer</Description>
|
<Description>An automated ModList installer</Description>
|
||||||
<PublishReadyToRun>true</PublishReadyToRun>
|
<PublishReadyToRun>true</PublishReadyToRun>
|
||||||
|
Loading…
Reference in New Issue
Block a user