mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-18 22:07:44 +01:00
feat: add staging/beta key
This commit is contained in:
parent
0200468149
commit
25e01599ec
3 changed files with 21 additions and 9 deletions
|
|
@ -70,10 +70,10 @@ namespace Dalamud.Support
|
|||
DalamudGitHash = Util.GetGitHash(),
|
||||
GameVersion = startInfo.GameVersion.ToString(),
|
||||
Language = startInfo.Language.ToString(),
|
||||
DoDalamudTest = configuration.DoDalamudTest,
|
||||
BetaKey = configuration.DalamudBetaKey,
|
||||
DoPluginTest = configuration.DoPluginTest,
|
||||
InterfaceLoaded = interfaceManager?.IsReady ?? false,
|
||||
ThirdRepo = configuration.ThirdRepoList,
|
||||
HasThirdRepo = configuration.ThirdRepoList is { Count: > 0 },
|
||||
ForcedMinHook = EnvironmentConfiguration.DalamudForceMinHook,
|
||||
};
|
||||
|
||||
|
|
@ -107,7 +107,9 @@ namespace Dalamud.Support
|
|||
|
||||
public string Language { get; set; }
|
||||
|
||||
public bool DoDalamudTest { get; set; }
|
||||
public bool DoDalamudTest => false;
|
||||
|
||||
public string? BetaKey { get; set; }
|
||||
|
||||
public bool DoPluginTest { get; set; }
|
||||
|
||||
|
|
@ -115,7 +117,9 @@ namespace Dalamud.Support
|
|||
|
||||
public bool ForcedMinHook { get; set; }
|
||||
|
||||
public List<ThirdPartyRepoSettings> ThirdRepo { get; set; }
|
||||
public List<ThirdPartyRepoSettings> ThirdRepo => new();
|
||||
|
||||
public bool HasThirdRepo { get; set; }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue