Hotfix for breaking existing lists (for real this time)

This commit is contained in:
halgari 2020-08-21 10:42:56 -06:00
parent cf1c62b7c7
commit 049dff0d1c
6 changed files with 12 additions and 9 deletions

View File

@ -1,5 +1,8 @@
### Changelog
#### Version - 2.2.1.3 - 8/21/2020
* HOTFIX - No really...stop doing that
#### Version - 2.2.1.3 - 8/20/2020
* HOTFIX - We broke installation of existing lists...let's stop doing that

View File

@ -6,8 +6,8 @@
<AssemblyName>wabbajack-cli</AssemblyName>
<Company>Wabbajack</Company>
<Platforms>x64</Platforms>
<AssemblyVersion>2.2.1.3</AssemblyVersion>
<FileVersion>2.2.1.3</FileVersion>
<AssemblyVersion>2.2.1.4</AssemblyVersion>
<FileVersion>2.2.1.4</FileVersion>
<Copyright>Copyright © 2019-2020</Copyright>
<Description>An automated ModList installer</Description>
<PublishReadyToRun>true</PublishReadyToRun>

View File

@ -4,8 +4,8 @@
<OutputType>WinExe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<UseWPF>true</UseWPF>
<AssemblyVersion>2.2.1.3</AssemblyVersion>
<FileVersion>2.2.1.3</FileVersion>
<AssemblyVersion>2.2.1.4</AssemblyVersion>
<FileVersion>2.2.1.4</FileVersion>
<Copyright>Copyright © 2019-2020</Copyright>
<Description>Wabbajack Application Launcher</Description>
<PublishReadyToRun>true</PublishReadyToRun>

View File

@ -3,8 +3,8 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<AssemblyVersion>2.2.1.3</AssemblyVersion>
<FileVersion>2.2.1.3</FileVersion>
<AssemblyVersion>2.2.1.4</AssemblyVersion>
<FileVersion>2.2.1.4</FileVersion>
<Copyright>Copyright © 2019-2020</Copyright>
<Description>Wabbajack Server</Description>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>

View File

@ -212,7 +212,7 @@ namespace Wabbajack
{
if (modList == null) return ErrorResponse.Fail("Modlist path resulted in a null object.");
if (modList.Error != null) return ErrorResponse.Fail("Modlist is corrupt", modList.Error);
if (modList.WabbajackVersion != null && modList.Version > Consts.CurrentWabbajackVersion)
if (modList.WabbajackVersion != null && modList.WabbajackVersion > Consts.CurrentWabbajackVersion)
return ErrorResponse.Fail("The Modlist you are trying to install was made using a newer Version of Wabbajack. Please update Wabbajack before installing!");
return ErrorResponse.Success;
});

View File

@ -6,8 +6,8 @@
<UseWPF>true</UseWPF>
<Platforms>x64</Platforms>
<RuntimeIdentifier>win10-x64</RuntimeIdentifier>
<AssemblyVersion>2.2.1.3</AssemblyVersion>
<FileVersion>2.2.1.3</FileVersion>
<AssemblyVersion>2.2.1.4</AssemblyVersion>
<FileVersion>2.2.1.4</FileVersion>
<Copyright>Copyright © 2019-2020</Copyright>
<Description>An automated ModList installer</Description>
<PublishReadyToRun>true</PublishReadyToRun>