mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
feat: add ever started loading plugins to ts payload
This commit is contained in:
parent
bb6be3fdfc
commit
77fc349c58
1 changed files with 3 additions and 0 deletions
|
|
@ -69,6 +69,7 @@ public static class Troubleshooting
|
|||
{
|
||||
LoadedPlugins = pluginManager?.InstalledPlugins?.Select(x => x.Manifest)?.OrderByDescending(x => x.InternalName).ToArray(),
|
||||
PluginStates = pluginManager?.InstalledPlugins?.ToDictionary(x => x.Manifest.InternalName, x => x.State.ToString()),
|
||||
EverStartedLoadingPlugins = pluginManager?.InstalledPlugins.Where(x => x.HasEverStartedLoad).Select(x => x.InternalName).ToList(),
|
||||
DalamudVersion = Util.AssemblyVersion,
|
||||
DalamudGitHash = Util.GetGitHash(),
|
||||
GameVersion = startInfo.GameVersion.ToString(),
|
||||
|
|
@ -105,6 +106,8 @@ public static class Troubleshooting
|
|||
|
||||
public Dictionary<string, string>? PluginStates { get; set; }
|
||||
|
||||
public List<string>? EverStartedLoadingPlugins { get; set; }
|
||||
|
||||
public string DalamudVersion { get; set; }
|
||||
|
||||
public string DalamudGitHash { get; set; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue