Skip to content

Commit 9e7427f

Browse files
committed
Fix plugin manager
1 parent c400ca5 commit 9e7427f

4 files changed

Lines changed: 7 additions & 5 deletions

File tree

blog/V1.10.Minor.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ title: Version 1.10 > Minor
1919
This changelog will contain all changes from 1.10.0 onwards before the next major version.
2020
!!!
2121

22+
==- Version 1.10.69
23+
Fix plugin manager not showing enabled plugins.
24+
[!badge variant="dark" text="Tumppi066"] [!badge variant="ghost" text="Plugin Manager"]
2225
==- Version 1.10.68
2326
Removed NavigationDetection AI Data collector.
2427
[!badge variant="dark" text="Glas42"] [!badge variant="ghost" text="NavigationDetection"]

changelog.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Removed NavigationDetection AI Data collector.
1+
Fix plugin manager not showing enabled plugins.

plugins/PluginManager/main.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,12 +126,11 @@ def page0(self):
126126

127127

128128
def colorPlugins(self):
129-
130-
enabledPlugins = settings.GetSettings("Plugins", "Enabled"), []
129+
enabledPlugins = settings.GetSettings("Plugins", "Enabled")
131130
if enabledPlugins == None:
132131
settings.CreateSettings("Plugins", "Enabled", [])
133132
enabledPlugins = []
134-
133+
135134
# Set plugin colors
136135
colorTone = settings.GetSettings("User Interface", "Theme")
137136
if colorTone == None:

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.10.68
1+
1.10.69

0 commit comments

Comments
 (0)