mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Bump version, disable long BSA test not that it passes
This commit is contained in:
parent
659452f2d5
commit
a6bbc62944
@ -6,6 +6,7 @@
|
|||||||
* Catch exceptions when ECS downloads manifest data
|
* Catch exceptions when ECS downloads manifest data
|
||||||
* Don't double-index game files in some situations (duplicate game names in config files)
|
* Don't double-index game files in some situations (duplicate game names in config files)
|
||||||
* Update all deps
|
* Update all deps
|
||||||
|
* Reduce memory usage of open files (may help with memory errors during BSA creation)
|
||||||
|
|
||||||
#### Version - 2.4.1.1 - 1/13/2020
|
#### Version - 2.4.1.1 - 1/13/2020
|
||||||
* HOTFIX: Fix game file sources that don't have MO2 specific names
|
* HOTFIX: Fix game file sources that don't have MO2 specific names
|
||||||
|
@ -70,7 +70,7 @@ namespace Compression.BSA.Test
|
|||||||
}
|
}
|
||||||
|
|
||||||
[Theory]
|
[Theory]
|
||||||
[InlineData(Game.SkyrimSpecialEdition, 29194)] // 3D NPCS This fails not sure why
|
//[InlineData(Game.SkyrimSpecialEdition, 29194)] // 3D NPCS
|
||||||
[InlineData(Game.SkyrimSpecialEdition, 12604)] // SkyUI
|
[InlineData(Game.SkyrimSpecialEdition, 12604)] // SkyUI
|
||||||
[InlineData(Game.Skyrim, 3863)] // SkyUI
|
[InlineData(Game.Skyrim, 3863)] // SkyUI
|
||||||
[InlineData(Game.Skyrim, 51473)] // INeed
|
[InlineData(Game.Skyrim, 51473)] // INeed
|
||||||
|
@ -10,10 +10,10 @@
|
|||||||
<WarningsAsErrors>nullable</WarningsAsErrors>
|
<WarningsAsErrors>nullable</WarningsAsErrors>
|
||||||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
||||||
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
|
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
|
||||||
<PackageVersion>2.2.1.2</PackageVersion>
|
<PackageVersion>2.4.1.2</PackageVersion>
|
||||||
<Version>2.2.1.2</Version>
|
<Version>2.4.1.2</Version>
|
||||||
<AssemblyVersion>2.2.1.2</AssemblyVersion>
|
<AssemblyVersion>2.4.1.2</AssemblyVersion>
|
||||||
<FileVersion>2.2.1.2</FileVersion>
|
<FileVersion>2.4.1.2</FileVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||||
<DocumentationFile>Compression.BSA.xml</DocumentationFile>
|
<DocumentationFile>Compression.BSA.xml</DocumentationFile>
|
||||||
|
@ -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.4.1.1</AssemblyVersion>
|
<AssemblyVersion>2.4.1.2</AssemblyVersion>
|
||||||
<FileVersion>2.4.1.1</FileVersion>
|
<FileVersion>2.4.1.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>
|
||||||
|
@ -14,10 +14,10 @@
|
|||||||
<PackageIconUrl>https://www.wabbajack.org/favicon.ico</PackageIconUrl>
|
<PackageIconUrl>https://www.wabbajack.org/favicon.ico</PackageIconUrl>
|
||||||
<RepositoryUrl>https://github.com/wabbajack-tools/wabbajack</RepositoryUrl>
|
<RepositoryUrl>https://github.com/wabbajack-tools/wabbajack</RepositoryUrl>
|
||||||
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
|
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
|
||||||
<PackageVersion>2.2.1.2</PackageVersion>
|
<PackageVersion>2.4.1.2</PackageVersion>
|
||||||
<Version>2.2.1.2</Version>
|
<Version>2.4.1.2</Version>
|
||||||
<AssemblyVersion>2.2.1.2</AssemblyVersion>
|
<AssemblyVersion>2.4.1.2</AssemblyVersion>
|
||||||
<FileVersion>2.2.1.2</FileVersion>
|
<FileVersion>2.4.1.2</FileVersion>
|
||||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||||
|
@ -4,8 +4,8 @@
|
|||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>net5.0-windows</TargetFramework>
|
<TargetFramework>net5.0-windows</TargetFramework>
|
||||||
<UseWPF>true</UseWPF>
|
<UseWPF>true</UseWPF>
|
||||||
<AssemblyVersion>2.4.1.1</AssemblyVersion>
|
<AssemblyVersion>2.4.1.2</AssemblyVersion>
|
||||||
<FileVersion>2.4.1.1</FileVersion>
|
<FileVersion>2.4.1.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>net5.0-windows</TargetFramework>
|
<TargetFramework>net5.0-windows</TargetFramework>
|
||||||
<AssemblyVersion>2.4.1.1</AssemblyVersion>
|
<AssemblyVersion>2.4.1.2</AssemblyVersion>
|
||||||
<FileVersion>2.4.1.1</FileVersion>
|
<FileVersion>2.4.1.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>
|
||||||
|
@ -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.4.1.1</AssemblyVersion>
|
<AssemblyVersion>2.4.1.2</AssemblyVersion>
|
||||||
<FileVersion>2.4.1.1</FileVersion>
|
<FileVersion>2.4.1.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