Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 6 additions & 0 deletions index.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
{
"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": "b0c463e",
"released_on": "26-01-2026",
"md5sum": "fc42fef8804cbfece0280ecb9491983c"
},
"1.1.5": {
"api_version": 9,
"commit_sha": "dd1a605",
Expand Down
7 changes: 4 additions & 3 deletions plugin_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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
)

Expand Down