feat: assign every installation of a plugin a unique id, to be used to differentiate between them in the future(api9+)

This commit is contained in:
goat 2023-07-10 22:31:37 +02:00
parent 1b46bbac87
commit 4dc43b7ed3
No known key found for this signature in database
GPG key ID: 49E2AA8C6A76498B
5 changed files with 42 additions and 3 deletions

View file

@ -2186,6 +2186,14 @@ internal class PluginInstallerWindow : Window, IDisposable
ImGuiHelpers.SafeTextWrapped(manifest.Description);
}
// Working Plugin ID
if (this.hasDevPlugins)
{
ImGuiHelpers.ScaledDummy(3);
ImGui.TextColored(ImGuiColors.DalamudGrey, $"WorkingPluginId: {manifest.WorkingPluginId}");
ImGuiHelpers.ScaledDummy(3);
}
// Available commands (if loaded)
if (plugin.IsLoaded)
{