Prep for beta 10

This commit is contained in:
Timothy Baldridge 2019-12-23 10:29:28 -07:00
parent 05fd3225fa
commit b97cabd1e6
6 changed files with 15 additions and 6 deletions

View File

@ -1,5 +1,10 @@
### Changelog
#### Version - 1.0 beta 10 - 12/23/2019
* Many internal bug fixes releated to deadlocking
* Take the system RAM into account when configuring queue sizes
* Fixed the "This shouldn't happen" bug during patching. Thanks Noggog for spending countless hours on tracking down the problems.
#### Version - 1.0 beta 9 - 12/18/2019
* Create output folders before trying to download a file

View File

@ -95,7 +95,8 @@ namespace Wabbajack.Lib
ModList.Readme = $"readme{readme.Extension}";
}
ModList.ReadmeIsWebsite = ReadmeIsWebsite;
// DISABLED FOR THIS RELEASE
//ModList.ReadmeIsWebsite = ReadmeIsWebsite;
//ModList.ToJSON(Path.Combine(ModListOutputFolder, "modlist.json"));
ModList.ToCERAS(Path.Combine(ModListOutputFolder, "modlist"), CerasConfig.Config);

View File

@ -32,7 +32,8 @@ namespace Wabbajack.Lib
},
};
Config.VersionTolerance.Mode = VersionToleranceMode.Standard;
// DISABLED FOR THIS RELEASE
//Config.VersionTolerance.Mode = VersionToleranceMode.Standard;
}
}
}

View File

@ -119,7 +119,8 @@ namespace Wabbajack.Lib
/// <summary>
/// Whether readme is a website
/// </summary>
public bool ReadmeIsWebsite;
/// DISABLED FOR THIS RELEASE
//public bool ReadmeIsWebsite;
}
public class Directive

View File

@ -49,5 +49,5 @@ using System.Windows;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.14.0")]
[assembly: AssemblyFileVersion("1.0.14.0")]
[assembly: AssemblyVersion("1.0.15.0")]
[assembly: AssemblyFileVersion("1.0.15.0")]

View File

@ -87,7 +87,8 @@ namespace Wabbajack
public void OpenReadmeWindow()
{
if (string.IsNullOrEmpty(Readme)) return;
if (SourceModList.ReadmeIsWebsite)
// DISABLED FOR THIS RELEASE
if (false) // SourceModList.ReadmeIsWebsite)
{
Process.Start(Readme);
}