mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
Add defaults to configuration
This commit is contained in:
parent
f695aee954
commit
f66e5ca08b
1 changed files with 5 additions and 5 deletions
|
|
@ -47,12 +47,12 @@ namespace Dalamud.Configuration.Internal
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the language code to load Dalamud localization with.
|
/// Gets or sets the language code to load Dalamud localization with.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string LanguageOverride { get; set; }
|
public string LanguageOverride { get; set; } = null;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the last loaded Dalamud version.
|
/// Gets or sets the last loaded Dalamud version.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string LastVersion { get; set; }
|
public string LastVersion { get; set; } = null;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the chat type used by default for plugin messages.
|
/// Gets or sets the chat type used by default for plugin messages.
|
||||||
|
|
@ -62,17 +62,17 @@ namespace Dalamud.Configuration.Internal
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets a value indicating whether or not plugin testing builds should be shown.
|
/// Gets or sets a value indicating whether or not plugin testing builds should be shown.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public bool DoPluginTest { get; set; }
|
public bool DoPluginTest { get; set; } = false;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets a value indicating whether or not Dalamud testing builds should be used.
|
/// Gets or sets a value indicating whether or not Dalamud testing builds should be used.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public bool DoDalamudTest { get; set; }
|
public bool DoDalamudTest { get; set; } = false;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets a value indicating whether or not XL should download the Dalamud .NET runtime.
|
/// Gets or sets a value indicating whether or not XL should download the Dalamud .NET runtime.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public bool DoDalamudRuntime { get; set; }
|
public bool DoDalamudRuntime { get; set; } = false;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets a list of custom repos.
|
/// Gets or sets a list of custom repos.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue