Change default values of AutoDeduplicate and EnableHttp to true.

This commit is contained in:
Ottermandias 2022-07-11 17:25:17 +02:00
parent aed1474db8
commit 2412e3be08

View file

@ -58,8 +58,8 @@ public partial class Configuration : IPluginConfiguration
public bool FixMainWindow { get; set; } = false; public bool FixMainWindow { get; set; } = false;
public bool ShowAdvanced { get; set; } public bool ShowAdvanced { get; set; }
public bool AutoDeduplicateOnImport { get; set; } = false; public bool AutoDeduplicateOnImport { get; set; } = true;
public bool EnableHttpApi { get; set; } public bool EnableHttpApi { get; set; } = true;
public string DefaultModImportPath { get; set; } = string.Empty; public string DefaultModImportPath { get; set; } = string.Empty;
public bool AlwaysOpenDefaultImport { get; set; } = false; public bool AlwaysOpenDefaultImport { get; set; } = false;