From f0b36c742be273dc97083d90eff31088d4dc22f8 Mon Sep 17 00:00:00 2001 From: Loup-Garou911XD <90267658+Loup-Garou911XD@users.noreply.github.com> Date: Mon, 26 Jan 2026 16:05:30 +0530 Subject: [PATCH 1/4] fix_moreWindow_scale --- CHANGELOG.md | 4 ++++ index.json | 1 + plugin_manager.py | 5 +++-- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 65c4e009..031ef8f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ## Plugin Manager (dd-mm-yyyy) +### 1.1.6 (26-01-2026) + +- Fix UI scaling for more window + ### 1.1.5 (26-01-2026) - Various UI bugfixes and improvements diff --git a/index.json b/index.json index e082962a..01eb39ac 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.6": null, "1.1.5": { "api_version": 9, "commit_sha": "dd1a605", diff --git a/plugin_manager.py b/plugin_manager.py index 0b76453f..b5fa0690 100644 --- a/plugin_manager.py +++ b/plugin_manager.py @@ -64,9 +64,10 @@ def _regexp_friendly_class_name_shortcut(string): return string.replace(".", "\\ def _by_scale(a, b, c): + u = _uiscale() return ( - a if _uiscale is babase.UIScale.SMALL else - b if _uiscale is babase.UIScale.MEDIUM else + a if u is babase.UIScale.SMALL else + b if u is babase.UIScale.MEDIUM else c ) From 81978848648def2131dd9eee7ccc6a24bdfc3003 Mon Sep 17 00:00:00 2001 From: Loup-Garou911XD <90267658+Loup-Garou911XD@users.noreply.github.com> Date: Mon, 26 Jan 2026 10:36:37 +0000 Subject: [PATCH 2/4] [ci] apply-version-metadata --- index.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/index.json b/index.json index 01eb39ac..2984b0a2 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.6": null, + "1.1.6": { + "api_version": 9, + "commit_sha": "f0b36c7", + "released_on": "26-01-2026", + "md5sum": "157026aa0c09b762aff92c73048bafcd" + }, "1.1.5": { "api_version": 9, "commit_sha": "dd1a605", From b0c463e32cdebaebc6800460794f4dd4925e5ce5 Mon Sep 17 00:00:00 2001 From: Loup-Garou911XD <90267658+Loup-Garou911XD@users.noreply.github.com> Date: Mon, 26 Jan 2026 16:10:31 +0530 Subject: [PATCH 3/4] ci --- index.json | 7 +------ plugin_manager.py | 2 +- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/index.json b/index.json index 2984b0a2..01eb39ac 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.6": { - "api_version": 9, - "commit_sha": "f0b36c7", - "released_on": "26-01-2026", - "md5sum": "157026aa0c09b762aff92c73048bafcd" - }, + "1.1.6": null, "1.1.5": { "api_version": 9, "commit_sha": "dd1a605", diff --git a/plugin_manager.py b/plugin_manager.py index b5fa0690..8bb30068 100644 --- a/plugin_manager.py +++ b/plugin_manager.py @@ -26,7 +26,7 @@ # Modules used for overriding AllSettingsWindow import logging -PLUGIN_MANAGER_VERSION = "1.1.5" +PLUGIN_MANAGER_VERSION = "1.1.6" 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 d516c5e2d4bfaa0ef40543e3201f4321a4ae0f17 Mon Sep 17 00:00:00 2001 From: Loup-Garou911XD <90267658+Loup-Garou911XD@users.noreply.github.com> Date: Mon, 26 Jan 2026 10:40:59 +0000 Subject: [PATCH 4/4] [ci] apply-version-metadata --- index.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/index.json b/index.json index 01eb39ac..2af4f5f2 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.6": null, + "1.1.6": { + "api_version": 9, + "commit_sha": "b0c463e", + "released_on": "26-01-2026", + "md5sum": "fc42fef8804cbfece0280ecb9491983c" + }, "1.1.5": { "api_version": 9, "commit_sha": "dd1a605",