mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-29 03:49:19 +01:00
feat(PluginManager): add switch to allow for loading plugins of all API levels
This commit is contained in:
parent
3274bd047d
commit
1e33b7deb5
4 changed files with 15 additions and 2 deletions
|
|
@ -464,6 +464,14 @@ namespace Dalamud.Interface.Internal
|
|||
this.dalamud.PluginManager.ScanDevPlugins();
|
||||
}
|
||||
|
||||
ImGui.Separator();
|
||||
|
||||
if (ImGui.MenuItem("Load all API levels", null, this.dalamud.Configuration.LoadAllApiLevels))
|
||||
{
|
||||
this.dalamud.Configuration.LoadAllApiLevels = !this.dalamud.Configuration.LoadAllApiLevels;
|
||||
this.dalamud.Configuration.Save();
|
||||
}
|
||||
|
||||
ImGui.Separator();
|
||||
ImGui.MenuItem("API Level:" + PluginManager.DalamudApiLevel, false);
|
||||
ImGui.MenuItem("Loaded plugins:" + this.dalamud.PluginManager?.InstalledPlugins.Count, false);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue