mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
2.1.3.3
This commit is contained in:
parent
d37d8f398d
commit
c28ec4a796
@ -1,5 +1,8 @@
|
||||
### Changelog
|
||||
|
||||
#### Version - 2.1.3.3 - 7/22/2020
|
||||
* Relax the RAR signature so it works with RAR 5 and RAR 4 formats
|
||||
|
||||
#### Version - 2.1.3.2 - 7/21/2020
|
||||
* Fixed regression with 7zip and bad archive files (.tar files with Nemesis)
|
||||
|
||||
|
@ -6,8 +6,8 @@
|
||||
<AssemblyName>wabbajack-cli</AssemblyName>
|
||||
<Company>Wabbajack</Company>
|
||||
<Platforms>x64</Platforms>
|
||||
<AssemblyVersion>2.1.3.2</AssemblyVersion>
|
||||
<FileVersion>2.1.3.2</FileVersion>
|
||||
<AssemblyVersion>2.1.3.3</AssemblyVersion>
|
||||
<FileVersion>2.1.3.3</FileVersion>
|
||||
<Copyright>Copyright © 2019-2020</Copyright>
|
||||
<Description>An automated ModList installer</Description>
|
||||
<PublishReadyToRun>true</PublishReadyToRun>
|
||||
|
@ -1,3 +1,4 @@
|
||||
Morrowind BSA,00 01 00 00,TES3, null, null, 0, null
|
||||
TES 4-5 and FO 3 BSA,42 53 41 00,BSA
|
||||
FO4 BSA,42 54 44 58,BA2
|
||||
FO4 BSA,42 54 44 58,BA2
|
||||
Relaxed RAR format,52 61 72 21,RAR
|
@ -440,6 +440,9 @@ namespace Wabbajack.Common.FileSignatures {
|
||||
// FO4 BSA
|
||||
(FileType.BA2, new byte[] {0x42, 0x54, 0x44, 0x58}),
|
||||
|
||||
// Relaxed RAR format
|
||||
(FileType.RAR, new byte[] {0x52, 0x61, 0x72, 0x21}),
|
||||
|
||||
// JPEG2000 image files
|
||||
(FileType.JP2, new byte[] {0x00, 0x00, 0x00, 0x0C, 0x6A, 0x50, 0x20, 0x20}),
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
<OutputType>WinExe</OutputType>
|
||||
<TargetFramework>netcoreapp3.1</TargetFramework>
|
||||
<UseWPF>true</UseWPF>
|
||||
<AssemblyVersion>2.1.3.2</AssemblyVersion>
|
||||
<FileVersion>2.1.3.2</FileVersion>
|
||||
<AssemblyVersion>2.1.3.3</AssemblyVersion>
|
||||
<FileVersion>2.1.3.3</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.1.3.2</AssemblyVersion>
|
||||
<FileVersion>2.1.3.2</FileVersion>
|
||||
<AssemblyVersion>2.1.3.3</AssemblyVersion>
|
||||
<FileVersion>2.1.3.3</FileVersion>
|
||||
<Copyright>Copyright © 2019-2020</Copyright>
|
||||
<Description>Wabbajack Server</Description>
|
||||
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
||||
|
@ -62,7 +62,8 @@ namespace Wabbajack.Test
|
||||
DownloadAndInstall(Game.Fallout4, 11925, "Anti-Tank Rifle"),
|
||||
DownloadAndInstall(Game.SkyrimSpecialEdition, 4783, "Frost Armor UNP"),
|
||||
DownloadAndInstall(Game.SkyrimSpecialEdition, 32359, "Frost Armor HDT"),
|
||||
DownloadAndInstall(Game.SkyrimSpecialEdition, 31667, "Nemesis"));
|
||||
DownloadAndInstall(Game.SkyrimSpecialEdition, 31667, "Nemesis"),
|
||||
DownloadAndInstall(Game.Fallout4, 40136, "RAR test File"));
|
||||
|
||||
// We're going to fully patch this mod from another source.
|
||||
await modfiles[3].Download.DeleteAsync();
|
||||
|
@ -6,8 +6,8 @@
|
||||
<UseWPF>true</UseWPF>
|
||||
<Platforms>x64</Platforms>
|
||||
<RuntimeIdentifier>win10-x64</RuntimeIdentifier>
|
||||
<AssemblyVersion>2.1.3.2</AssemblyVersion>
|
||||
<FileVersion>2.1.3.2</FileVersion>
|
||||
<AssemblyVersion>2.1.3.3</AssemblyVersion>
|
||||
<FileVersion>2.1.3.3</FileVersion>
|
||||
<Copyright>Copyright © 2019-2020</Copyright>
|
||||
<Description>An automated ModList installer</Description>
|
||||
<PublishReadyToRun>true</PublishReadyToRun>
|
||||
|
Loading…
Reference in New Issue
Block a user