From 2a70e273e1e932fc83456067f55f24e10b7e938c Mon Sep 17 00:00:00 2001 From: Rikko Date: Wed, 14 Sep 2022 00:34:21 +0530 Subject: [PATCH 1/6] Make plugin settings to cyan color --- plugin_manager.py | 1 + 1 file changed, 1 insertion(+) diff --git a/plugin_manager.py b/plugin_manager.py index a6b18b8..8721d38 100644 --- a/plugin_manager.py +++ b/plugin_manager.py @@ -832,6 +832,7 @@ class PluginWindow(popup.PopupWindow): size=(40, 40), button_type="square", label="", + color=(0, 0.75, 0.75), on_activate_call=self.settings) ba.imagewidget(parent=self._root_widget, position=(settings_pos_x, settings_pos_y), From c48ad15ca537f4df59e28a89b6d4c54abc07f14f Mon Sep 17 00:00:00 2001 From: Rikko Date: Fri, 16 Sep 2022 03:59:44 +0530 Subject: [PATCH 2/6] Remove some debug prints --- plugin_manager.py | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/plugin_manager.py b/plugin_manager.py index 8721d38..85a4379 100644 --- a/plugin_manager.py +++ b/plugin_manager.py @@ -2089,24 +2089,3 @@ class EntryPoint(ba.Plugin): startup_tasks = StartupTasks() loop = asyncio.get_event_loop() loop.create_task(startup_tasks.execute()) - # loop = asyncio.get_event_loop() - # loop.create_task(do()) - # pm = PluginManager() - # pm.plugin_index() - - def on_app_pause(self) -> None: - """Called after pausing game activity.""" - print("pause") - - def on_app_resume(self) -> None: - """Called after the game continues.""" - print("resume") - - def on_app_shutdown(self) -> None: - """Called before closing the application.""" - print("shutdown") - # print(ba.app.config["Community Plugin Manager"]) - # with open(_env["config_file_path"], "r") as fin: - # c = fin.read() - # import json - # print(json.loads(c)["Community Plugin Manager"]) From eee2047add3ba8e17e534499bc89a32515b65a0d Mon Sep 17 00:00:00 2001 From: Rikko Date: Fri, 16 Sep 2022 04:00:20 +0530 Subject: [PATCH 3/6] Release v0.1.6 --- index.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index.json b/index.json index 75a82b6..8cac22b 100644 --- a/index.json +++ b/index.json @@ -1,6 +1,7 @@ { "plugin_manager_url": "http://github.com/bombsquad-community/plugin-manager/{content_type}/{tag}/plugin_manager.py", "versions": { + "0.1.6": null, "0.1.5": { "api_version": 7, "commit_sha": "6998ded", @@ -20,4 +21,4 @@ "http://github.com/bombsquad-community/plugin-manager/{content_type}/{tag}/plugins/maps.json" ], "external_source_url": "http://github.com/{repository}/{content_type}/{tag}/category.json" -} \ No newline at end of file +} From 56e0f23282eacdc9ed4e327817bf6288f496431d Mon Sep 17 00:00:00 2001 From: rikkolovescats Date: Thu, 15 Sep 2022 22:31:18 +0000 Subject: [PATCH 4/6] [ci] apply-version-metadata --- index.json | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/index.json b/index.json index 8cac22b..dfb0eef 100644 --- a/index.json +++ b/index.json @@ -1,7 +1,12 @@ { "plugin_manager_url": "http://github.com/bombsquad-community/plugin-manager/{content_type}/{tag}/plugin_manager.py", "versions": { - "0.1.6": null, + "0.1.6": { + "api_version": 7, + "commit_sha": "eee2047", + "released_on": "15-09-2022", + "md5sum": "5b4ffdc55edae0d53f71ae8b723be731" + }, "0.1.5": { "api_version": 7, "commit_sha": "6998ded", @@ -21,4 +26,4 @@ "http://github.com/bombsquad-community/plugin-manager/{content_type}/{tag}/plugins/maps.json" ], "external_source_url": "http://github.com/{repository}/{content_type}/{tag}/category.json" -} +} \ No newline at end of file From 2a7ad8e49728da7bec57c0a01654a8750b3a1605 Mon Sep 17 00:00:00 2001 From: Rikko Date: Fri, 16 Sep 2022 04:03:59 +0530 Subject: [PATCH 5/6] Bump to v0.1.6 --- index.json | 9 ++------- plugin_manager.py | 2 +- 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/index.json b/index.json index dfb0eef..8cac22b 100644 --- a/index.json +++ b/index.json @@ -1,12 +1,7 @@ { "plugin_manager_url": "http://github.com/bombsquad-community/plugin-manager/{content_type}/{tag}/plugin_manager.py", "versions": { - "0.1.6": { - "api_version": 7, - "commit_sha": "eee2047", - "released_on": "15-09-2022", - "md5sum": "5b4ffdc55edae0d53f71ae8b723be731" - }, + "0.1.6": null, "0.1.5": { "api_version": 7, "commit_sha": "6998ded", @@ -26,4 +21,4 @@ "http://github.com/bombsquad-community/plugin-manager/{content_type}/{tag}/plugins/maps.json" ], "external_source_url": "http://github.com/{repository}/{content_type}/{tag}/category.json" -} \ No newline at end of file +} diff --git a/plugin_manager.py b/plugin_manager.py index 85a4379..399482c 100644 --- a/plugin_manager.py +++ b/plugin_manager.py @@ -20,7 +20,7 @@ _env = _ba.env() _uiscale = ba.app.ui.uiscale -PLUGIN_MANAGER_VERSION = "0.1.5" +PLUGIN_MANAGER_VERSION = "0.1.6" REPOSITORY_URL = "http://github.com/bombsquad-community/plugin-manager" CURRENT_TAG = "main" # XXX: Using https with `ba.open_url` seems to trigger a pop-up dialog box on From 6238803a536bbb290f5bbe816bdc8410ffbecc11 Mon Sep 17 00:00:00 2001 From: rikkolovescats Date: Thu, 15 Sep 2022 22:34:24 +0000 Subject: [PATCH 6/6] [ci] apply-version-metadata --- index.json | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/index.json b/index.json index 8cac22b..363be82 100644 --- a/index.json +++ b/index.json @@ -1,7 +1,12 @@ { "plugin_manager_url": "http://github.com/bombsquad-community/plugin-manager/{content_type}/{tag}/plugin_manager.py", "versions": { - "0.1.6": null, + "0.1.6": { + "api_version": 7, + "commit_sha": "2a7ad8e", + "released_on": "15-09-2022", + "md5sum": "56950f6455606f7705eebd3e9a38c78f" + }, "0.1.5": { "api_version": 7, "commit_sha": "6998ded", @@ -21,4 +26,4 @@ "http://github.com/bombsquad-community/plugin-manager/{content_type}/{tag}/plugins/maps.json" ], "external_source_url": "http://github.com/{repository}/{content_type}/{tag}/category.json" -} +} \ No newline at end of file