From b97cabd1e6a8c360aaa1a50b14ae9d772490b17c Mon Sep 17 00:00:00 2001 From: Timothy Baldridge Date: Mon, 23 Dec 2019 10:29:28 -0700 Subject: [PATCH] Prep for beta 10 --- CHANGELOG.md | 5 +++++ Wabbajack.Lib/ACompiler.cs | 3 ++- Wabbajack.Lib/CerasConfig.cs | 3 ++- Wabbajack.Lib/Data.cs | 3 ++- Wabbajack/Properties/AssemblyInfo.cs | 4 ++-- Wabbajack/View Models/ModListVM.cs | 3 ++- 6 files changed, 15 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a5c5249..e9c07627 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Wabbajack.Lib/ACompiler.cs b/Wabbajack.Lib/ACompiler.cs index 4b4ce288..4ab1f37d 100644 --- a/Wabbajack.Lib/ACompiler.cs +++ b/Wabbajack.Lib/ACompiler.cs @@ -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); diff --git a/Wabbajack.Lib/CerasConfig.cs b/Wabbajack.Lib/CerasConfig.cs index 3997c8bf..ac82ccda 100644 --- a/Wabbajack.Lib/CerasConfig.cs +++ b/Wabbajack.Lib/CerasConfig.cs @@ -32,7 +32,8 @@ namespace Wabbajack.Lib }, }; - Config.VersionTolerance.Mode = VersionToleranceMode.Standard; + // DISABLED FOR THIS RELEASE + //Config.VersionTolerance.Mode = VersionToleranceMode.Standard; } } } diff --git a/Wabbajack.Lib/Data.cs b/Wabbajack.Lib/Data.cs index fd87897e..adf76b3d 100644 --- a/Wabbajack.Lib/Data.cs +++ b/Wabbajack.Lib/Data.cs @@ -119,7 +119,8 @@ namespace Wabbajack.Lib /// /// Whether readme is a website /// - public bool ReadmeIsWebsite; + /// DISABLED FOR THIS RELEASE + //public bool ReadmeIsWebsite; } public class Directive diff --git a/Wabbajack/Properties/AssemblyInfo.cs b/Wabbajack/Properties/AssemblyInfo.cs index 01dfc2cd..66493ac4 100644 --- a/Wabbajack/Properties/AssemblyInfo.cs +++ b/Wabbajack/Properties/AssemblyInfo.cs @@ -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")] diff --git a/Wabbajack/View Models/ModListVM.cs b/Wabbajack/View Models/ModListVM.cs index 184d3d6b..78d4df79 100644 --- a/Wabbajack/View Models/ModListVM.cs +++ b/Wabbajack/View Models/ModListVM.cs @@ -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); }