From 84ec23b49a79a63d17d159388de8f134ef84aebf Mon Sep 17 00:00:00 2001 From: Loup-Garou911XD Date: Tue, 8 Apr 2025 22:29:14 +0530 Subject: [PATCH 1/5] fix --- index.json | 1 + plugin_manager.py | 8 ++++---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/index.json b/index.json index f57b65b..5e701a4 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.1.3": null, "1.1.2": { "api_version": 9, "commit_sha": "8f484fc", diff --git a/plugin_manager.py b/plugin_manager.py index 2ae85c4..a7b6aad 100644 --- a/plugin_manager.py +++ b/plugin_manager.py @@ -1676,7 +1676,7 @@ class PluginCategoryWindow(popup.PopupMenuWindow): class PluginManagerWindow(bui.MainWindow): - def __init__(self, transition: str = "in_right", origin_widget: bui.widget = None): + def __init__(self, transition: str = "in_right", origin_widget: bui.Widget = None): self.plugin_manager = PluginManager() self.category_selection_button = None self.selected_category = 'All' @@ -2405,7 +2405,7 @@ class NewAllSettingsWindow(AllSettingsWindow): def __init__( self, transition: str | None = 'in_right', - origin_widget: bui.widget | None = None, + origin_widget: bui.Widget | None = None, ): # pylint: disable=too-many-statements # pylint: disable=too-many-locals @@ -2481,7 +2481,7 @@ class NewAllSettingsWindow(AllSettingsWindow): x_offs4 -= x_dif def _b_title( - x: float, y: float, button: bui.widget, text: str | bui.Lstr + x: float, y: float, button: bui.Widget, text: str | bui.Lstr ) -> None: bui.textwidget( parent=self._root_widget, @@ -2640,7 +2640,7 @@ class NewAllSettingsWindow(AllSettingsWindow): sel_name = bui.app.ui_v1.window_states.get(type(self), {}).get( 'sel_name' ) - sel: bui.widget | None + sel: bui.Widget | None if sel_name == 'Controllers': sel = self._controllers_button elif sel_name == 'Graphics': From 9aa2db9372ceabe96aceb0919ab631dadf6626ed Mon Sep 17 00:00:00 2001 From: Loup-Garou911XD <90267658+Loup-Garou911XD@users.noreply.github.com> Date: Tue, 8 Apr 2025 17:00:09 +0000 Subject: [PATCH 2/5] [ci] apply-version-metadata --- index.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/index.json b/index.json index 5e701a4..1602e32 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.1.3": null, + "1.1.3": { + "api_version": 9, + "commit_sha": "84ec23b", + "released_on": "08-04-2025", + "md5sum": "0bb8b264fe168cd4a0f792e1ec9e7190" + }, "1.1.2": { "api_version": 9, "commit_sha": "8f484fc", From 728b01b7586bb69ae88274a2ceb07175512db7ba Mon Sep 17 00:00:00 2001 From: Loup-Garou911XD Date: Tue, 8 Apr 2025 22:31:10 +0530 Subject: [PATCH 3/5] fix for fix --- index.json | 7 +------ plugin_manager.py | 2 +- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/index.json b/index.json index 1602e32..5e701a4 100644 --- a/index.json +++ b/index.json @@ -1,12 +1,7 @@ { "plugin_manager_url": "https://github.com/bombsquad-community/plugin-manager/{content_type}/{tag}/plugin_manager.py", "versions": { - "1.1.3": { - "api_version": 9, - "commit_sha": "84ec23b", - "released_on": "08-04-2025", - "md5sum": "0bb8b264fe168cd4a0f792e1ec9e7190" - }, + "1.1.3": null, "1.1.2": { "api_version": 9, "commit_sha": "8f484fc", diff --git a/plugin_manager.py b/plugin_manager.py index a7b6aad..f251c45 100644 --- a/plugin_manager.py +++ b/plugin_manager.py @@ -29,7 +29,7 @@ from datetime import datetime # Modules used for overriding AllSettingsWindow import logging -PLUGIN_MANAGER_VERSION = "1.1.2" +PLUGIN_MANAGER_VERSION = "1.1.3" 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. From 3dcab2bff0b50b75eb9375859897a1c9ee7614f3 Mon Sep 17 00:00:00 2001 From: Loup-Garou911XD <90267658+Loup-Garou911XD@users.noreply.github.com> Date: Tue, 8 Apr 2025 17:01:47 +0000 Subject: [PATCH 4/5] [ci] apply-version-metadata --- index.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/index.json b/index.json index 5e701a4..9fabd13 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.1.3": null, + "1.1.3": { + "api_version": 9, + "commit_sha": "728b01b", + "released_on": "08-04-2025", + "md5sum": "627d5263a4b2b0708558f1251965d15b" + }, "1.1.2": { "api_version": 9, "commit_sha": "8f484fc", From af177569a5e95c6c2a4fa1061a7f06dfb69aa5c2 Mon Sep 17 00:00:00 2001 From: Loup-Garou911XD Date: Tue, 8 Apr 2025 22:36:14 +0530 Subject: [PATCH 5/5] forgot the CHANGELOG --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f554e8..8b9db28 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ## Plugin Manager (dd-mm-yyyy) +### 1.1.3 (06-04-2025) + +- Hot Fix + ### 1.1.2 (06-04-2025) - Small UI fixes.