mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-23 16:27:44 +01:00
feat: add third party repo to troubleshooting
This commit is contained in:
parent
e6947e0cb8
commit
2d56947f56
1 changed files with 5 additions and 1 deletions
|
|
@ -1,5 +1,7 @@
|
||||||
using System;
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
using Dalamud.Configuration;
|
||||||
using Dalamud.Plugin;
|
using Dalamud.Plugin;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
using Serilog;
|
using Serilog;
|
||||||
|
|
@ -17,6 +19,7 @@ namespace Dalamud
|
||||||
public bool DoDalamudTest { get; set; }
|
public bool DoDalamudTest { get; set; }
|
||||||
public bool DoPluginTest { get; set; }
|
public bool DoPluginTest { get; set; }
|
||||||
public bool InterfaceLoaded { get; set; }
|
public bool InterfaceLoaded { get; set; }
|
||||||
|
public List<ThirdRepoSetting> ThirdRepo { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void LogTroubleshooting(Dalamud dalamud, bool isInterfaceLoaded) {
|
public static void LogTroubleshooting(Dalamud dalamud, bool isInterfaceLoaded) {
|
||||||
|
|
@ -28,7 +31,8 @@ namespace Dalamud
|
||||||
Language = dalamud.StartInfo.Language.ToString(),
|
Language = dalamud.StartInfo.Language.ToString(),
|
||||||
DoDalamudTest = dalamud.Configuration.DoDalamudTest,
|
DoDalamudTest = dalamud.Configuration.DoDalamudTest,
|
||||||
DoPluginTest = dalamud.Configuration.DoPluginTest,
|
DoPluginTest = dalamud.Configuration.DoPluginTest,
|
||||||
InterfaceLoaded = isInterfaceLoaded
|
InterfaceLoaded = isInterfaceLoaded,
|
||||||
|
ThirdRepo = dalamud.Configuration.ThirdRepoList
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue