Skip to content

Commit

Permalink
Fix plugin manager
Browse files Browse the repository at this point in the history
  • Loading branch information
Tumppi066 committed Apr 9, 2024
1 parent c400ca5 commit 9e7427f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
3 changes: 3 additions & 0 deletions blog/V1.10.Minor.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ title: Version 1.10 > Minor
This changelog will contain all changes from 1.10.0 onwards before the next major version.
!!!

==- Version 1.10.69
Fix plugin manager not showing enabled plugins.
[!badge variant="dark" text="Tumppi066"] [!badge variant="ghost" text="Plugin Manager"]
==- Version 1.10.68
Removed NavigationDetection AI Data collector.
[!badge variant="dark" text="Glas42"] [!badge variant="ghost" text="NavigationDetection"]
Expand Down
2 changes: 1 addition & 1 deletion changelog.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Removed NavigationDetection AI Data collector.
Fix plugin manager not showing enabled plugins.
5 changes: 2 additions & 3 deletions plugins/PluginManager/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,12 +126,11 @@ def page0(self):


def colorPlugins(self):

enabledPlugins = settings.GetSettings("Plugins", "Enabled"), []
enabledPlugins = settings.GetSettings("Plugins", "Enabled")
if enabledPlugins == None:
settings.CreateSettings("Plugins", "Enabled", [])
enabledPlugins = []

# Set plugin colors
colorTone = settings.GetSettings("User Interface", "Theme")
if colorTone == None:
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.10.68
1.10.69

0 comments on commit 9e7427f

Please sign in to comment.