diff --git a/CHANGELOG.md b/CHANGELOG.md index 48ec792..eb08654 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ## Plugin Manager (dd-mm-yyyy) +### 1.0.9 (20-04-2024) + +- Making the Plugin Manager look a little cleaner. + ### 1.0.8 (11-04-2024) - Avoid making app-mode related calls while `SceneAppMode` isn't set. diff --git a/index.json b/index.json index 20baf29..67c287c 100644 --- a/index.json +++ b/index.json @@ -1,6 +1,12 @@ { "plugin_manager_url": "https://github.com/bombsquad-community/plugin-manager/{content_type}/{tag}/plugin_manager.py", "versions": { + "1.0.9": { + "api_version": 8, + "commit_sha": "88834bd", + "released_on": "19-04-2024", + "md5sum": "57157cb438d793370586e1ccc957ad30" + }, "1.0.8": { "api_version": 8, "commit_sha": "85b5727", diff --git a/plugin_manager.py b/plugin_manager.py index 47507bc..9d8899f 100644 --- a/plugin_manager.py +++ b/plugin_manager.py @@ -32,7 +32,7 @@ from threading import Thread import logging -PLUGIN_MANAGER_VERSION = "1.0.8" +PLUGIN_MANAGER_VERSION = "1.0.9" REPOSITORY_URL = "https://github.com/bombsquad-community/plugin-manager" # Current tag can be changed to "staging" or any other branch in # plugin manager repo for testing purpose. @@ -1897,7 +1897,7 @@ class PluginManagerWindow(bui.Window): always_highlight=True, color=color, # on_select_call=lambda: None, - text=plugin.name, + text=plugin.name.replace('_', ' ').title(), click_activate=True, on_activate_call=lambda: self.show_plugin_window(plugin), h_align='left',