From 88834bd9795538b4a8f963a873affcbd359f5ba3 Mon Sep 17 00:00:00 2001 From: Vishal Date: Sat, 20 Apr 2024 02:22:22 +0530 Subject: [PATCH 1/3] Update - 1.0.9 --- index.json | 1 + plugin_manager.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/index.json b/index.json index 20baf29..e9cc3c8 100644 --- a/index.json +++ b/index.json @@ -1,6 +1,7 @@ { "plugin_manager_url": "https://github.com/bombsquad-community/plugin-manager/{content_type}/{tag}/plugin_manager.py", "versions": { + "1.0.9": null, "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', From 2fe33c11a0c8fd4a9595f95adb4dc64941ad4c14 Mon Sep 17 00:00:00 2001 From: vishal332008 Date: Fri, 19 Apr 2024 20:52:44 +0000 Subject: [PATCH 2/3] [ci] apply-version-metadata --- index.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/index.json b/index.json index e9cc3c8..67c287c 100644 --- a/index.json +++ b/index.json @@ -1,7 +1,12 @@ { "plugin_manager_url": "https://github.com/bombsquad-community/plugin-manager/{content_type}/{tag}/plugin_manager.py", "versions": { - "1.0.9": null, + "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", From 611d3d27e4a83386eb16a1907366ac3f70c51427 Mon Sep 17 00:00:00 2001 From: Vishal Date: Sat, 20 Apr 2024 02:24:28 +0530 Subject: [PATCH 3/3] Update CHANGELOG.md --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) 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.