From 4228b3e4e8215f6861bd61fdac719b62fff7c0c7 Mon Sep 17 00:00:00 2001 From: Vishal Date: Sat, 20 Apr 2024 20:24:45 +0530 Subject: [PATCH 1/3] Update - 1.0.11 --- index.json | 1 + plugin_manager.py | 11 +++++++---- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/index.json b/index.json index 4b788a1..5f3b39a 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.11": null, "1.0.10": { "api_version": 8, "commit_sha": "6dd86ef", diff --git a/plugin_manager.py b/plugin_manager.py index 4cd8c35..3bde6b4 100644 --- a/plugin_manager.py +++ b/plugin_manager.py @@ -32,7 +32,7 @@ from threading import Thread import logging -PLUGIN_MANAGER_VERSION = "1.0.10" +PLUGIN_MANAGER_VERSION = "1.0.11" 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. @@ -1004,7 +1004,11 @@ class PluginWindow(popup.PopupWindow): if to_draw_button1: bui.buttonwidget(parent=self._root_widget, - position=(width * 0.1, pos), + position=( + width * ( + 0.1 if self.plugin.is_installed and has_update else + 0.25 if self.plugin.is_installed else + 0.4), pos), size=button_size, on_activate_call=button1_action, color=b1_color, @@ -1015,7 +1019,7 @@ class PluginWindow(popup.PopupWindow): if self.plugin.is_installed: bui.buttonwidget(parent=self._root_widget, - position=(width * 0.4, pos), + position=(width * (0.4 if has_update else 0.55), pos), size=button_size, on_activate_call=button2_action, color=b2_color, @@ -1025,7 +1029,6 @@ class PluginWindow(popup.PopupWindow): label=button2_label) if has_update: - # button3 = bui.buttonwidget(parent=self._root_widget, position=(width * 0.7, pos), size=button_size, From ea25d3ad47a50f7b8e8f8ccdd301bbb8417b4e0d Mon Sep 17 00:00:00 2001 From: vishal332008 Date: Sat, 20 Apr 2024 14:55:06 +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 5f3b39a..1a73d5c 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.11": null, + "1.0.11": { + "api_version": 8, + "commit_sha": "4228b3e", + "released_on": "20-04-2024", + "md5sum": "c22d4d2270e17971b6559edac845d0ff" + }, "1.0.10": { "api_version": 8, "commit_sha": "6dd86ef", From b1da130d505956af2b84715e3fcace7daf50fca0 Mon Sep 17 00:00:00 2001 From: Vishal Date: Sat, 20 Apr 2024 20:29:10 +0530 Subject: [PATCH 3/3] Update CHANGELOG.md --- CHANGELOG.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e89ea1e..1c6817a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,16 @@ ## Plugin Manager (dd-mm-yyyy) -### 1.0.10 (20-04-2024) +### 1.0.11 (20-04-2024) -- Fixing up the bug in Refreshing Plugins button. +- Fixed positions of a few buttons. + +### 1.0.10 (19-04-2024) + +- Fixed up a bug in Refreshing Plugins button. ### 1.0.9 (19-04-2024) -- Making the Plugin Manager look a little cleaner. +- Made the Plugin names look a little cleaner. ### 1.0.8 (11-04-2024)