mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Version 2.1.0.0
This commit is contained in:
parent
14010629d8
commit
69fcc0cdc4
@ -1,10 +1,11 @@
|
|||||||
### Changelog
|
### Changelog
|
||||||
|
|
||||||
#### Version - 2.1.0.0 - ???
|
#### Version - 2.1.0.0 - 7/2/2020
|
||||||
* Game files are available as downloads automatically during compilation/installation
|
* Game files are available as downloads automatically during compilation/installation
|
||||||
* Game files are patched/copied/used in BSA creation automatically
|
* Game files are patched/copied/used in BSA creation automatically
|
||||||
* CleanedESM support removed from the compiler stack (still usable during installation for backwards compatibility)
|
* CleanedESM support removed from the compiler stack (still usable during installation for backwards compatibility)
|
||||||
* VR games automatically pull from base games if they are required and are installed during compilation
|
* VR games automatically pull from base games if they are required and are installed during compilation
|
||||||
|
* New `wabbajack-cli.exe` command `inlined-file-report` which will print statistics on the patches/included files in a `.wabbajack` file
|
||||||
|
|
||||||
#### Version - 2.0.9.4 - 6/16/2020
|
#### Version - 2.0.9.4 - 6/16/2020
|
||||||
* Improve interactions between server and client code
|
* Improve interactions between server and client code
|
||||||
|
@ -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.0.9.4</AssemblyVersion>
|
<AssemblyVersion>2.1.0.0</AssemblyVersion>
|
||||||
<FileVersion>2.0.9.4</FileVersion>
|
<FileVersion>2.1.0.0</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.0.9.4</AssemblyVersion>
|
<AssemblyVersion>2.1.0.0</AssemblyVersion>
|
||||||
<FileVersion>2.0.9.4</FileVersion>
|
<FileVersion>2.1.0.0</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>
|
||||||
|
@ -8,10 +8,10 @@
|
|||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="CefSharp.Common">
|
<PackageReference Include="CefSharp.Common">
|
||||||
<Version>83.3.120-pre</Version>
|
<Version>83.4.20</Version>
|
||||||
</PackageReference>
|
</PackageReference>
|
||||||
<PackageReference Include="CefSharp.OffScreen">
|
<PackageReference Include="CefSharp.OffScreen">
|
||||||
<Version>83.3.120-pre</Version>
|
<Version>83.4.20</Version>
|
||||||
</PackageReference>
|
</PackageReference>
|
||||||
<PackageReference Include="F23.StringSimilarity">
|
<PackageReference Include="F23.StringSimilarity">
|
||||||
<Version>3.1.0</Version>
|
<Version>3.1.0</Version>
|
||||||
|
@ -3,8 +3,8 @@
|
|||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>netcoreapp3.1</TargetFramework>
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
||||||
<AssemblyVersion>2.0.9.4</AssemblyVersion>
|
<AssemblyVersion>2.1.0.0</AssemblyVersion>
|
||||||
<FileVersion>2.0.9.4</FileVersion>
|
<FileVersion>2.1.0.0</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>
|
||||||
|
@ -25,8 +25,8 @@
|
|||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="CefSharp.Common" Version="83.3.120-pre" />
|
<PackageReference Include="CefSharp.Common" Version="83.4.20" />
|
||||||
<PackageReference Include="CefSharp.OffScreen" Version="83.3.120-pre" />
|
<PackageReference Include="CefSharp.OffScreen" Version="83.4.20" />
|
||||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.6.1" />
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.6.1" />
|
||||||
<PackageReference Include="xunit" Version="2.4.1" />
|
<PackageReference Include="xunit" Version="2.4.1" />
|
||||||
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.2" />
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.2" />
|
||||||
|
@ -55,9 +55,9 @@
|
|||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="CefSharp.Wpf" Version="83.3.120-pre" />
|
<PackageReference Include="CefSharp.Wpf" Version="83.4.20" />
|
||||||
<PackageReference Include="DynamicData" Version="6.15.4" />
|
<PackageReference Include="DynamicData" Version="6.15.4" />
|
||||||
<PackageReference Include="Extended.Wpf.Toolkit" Version="4.0.0" />
|
<PackageReference Include="Extended.Wpf.Toolkit" Version="4.0.1" />
|
||||||
<PackageReference Include="Fody" Version="6.2.0">
|
<PackageReference Include="Fody" Version="6.2.0">
|
||||||
<PrivateAssets>all</PrivateAssets>
|
<PrivateAssets>all</PrivateAssets>
|
||||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||||
|
Loading…
Reference in New Issue
Block a user