mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Prep for beta 10
This commit is contained in:
parent
05fd3225fa
commit
b97cabd1e6
@ -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
|
||||
|
||||
|
@ -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);
|
||||
|
@ -32,7 +32,8 @@ namespace Wabbajack.Lib
|
||||
|
||||
},
|
||||
};
|
||||
Config.VersionTolerance.Mode = VersionToleranceMode.Standard;
|
||||
// DISABLED FOR THIS RELEASE
|
||||
//Config.VersionTolerance.Mode = VersionToleranceMode.Standard;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -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
|
||||
|
@ -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")]
|
||||
|
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user