Update - 1.0.9

This commit is contained in:
Vishal 2024-04-20 02:22:22 +05:30 committed by GitHub
parent 421e74189a
commit 88834bd979
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 2 deletions

View file

@ -1,6 +1,7 @@
{ {
"plugin_manager_url": "https://github.com/bombsquad-community/plugin-manager/{content_type}/{tag}/plugin_manager.py", "plugin_manager_url": "https://github.com/bombsquad-community/plugin-manager/{content_type}/{tag}/plugin_manager.py",
"versions": { "versions": {
"1.0.9": null,
"1.0.8": { "1.0.8": {
"api_version": 8, "api_version": 8,
"commit_sha": "85b5727", "commit_sha": "85b5727",

View file

@ -32,7 +32,7 @@ from threading import Thread
import logging import logging
PLUGIN_MANAGER_VERSION = "1.0.8" PLUGIN_MANAGER_VERSION = "1.0.9"
REPOSITORY_URL = "https://github.com/bombsquad-community/plugin-manager" REPOSITORY_URL = "https://github.com/bombsquad-community/plugin-manager"
# Current tag can be changed to "staging" or any other branch in # Current tag can be changed to "staging" or any other branch in
# plugin manager repo for testing purpose. # plugin manager repo for testing purpose.
@ -1897,7 +1897,7 @@ class PluginManagerWindow(bui.Window):
always_highlight=True, always_highlight=True,
color=color, color=color,
# on_select_call=lambda: None, # on_select_call=lambda: None,
text=plugin.name, text=plugin.name.replace('_', ' ').title(),
click_activate=True, click_activate=True,
on_activate_call=lambda: self.show_plugin_window(plugin), on_activate_call=lambda: self.show_plugin_window(plugin),
h_align='left', h_align='left',