Compare commits

..

3 commits
v1.1.9 ... main

Author SHA1 Message Date
Loup
d442c44ea8
Merge pull request #469 from bombsquad-community/fix_119
Some checks failed
CI / build (push) Has been cancelled
Create Release / Create Release (push) Has been cancelled
fix for 1.1.9 breaking on older versions
2026-06-12 11:12:04 +05:30
Loup-Garou911XD
7acd7a87ab [ci] apply-version-metadata 2026-06-12 05:41:53 +00:00
Loup-Garou911XD
a1baa5fca2
fix for 1.1.9 breaking on older versions 2026-06-12 11:10:44 +05:30
3 changed files with 12 additions and 3 deletions

View file

@ -1,5 +1,9 @@
## Plugin Manager (dd-mm-yyyy)
### 1.1.10 (12-06-2026)
- Fix for older bs versions using `EXPORT_CLASS_NAME_SHORTCUTS` import
### 1.1.9 (11-06-2026)
- Fix for bs 1.7.63

View file

@ -1,6 +1,12 @@
{
"plugin_manager_url": "https://github.com/bombsquad-community/plugin-manager/{content_type}/{tag}/plugin_manager.py",
"versions": {
"1.1.10": {
"api_version": 9,
"commit_sha": "a1baa5f",
"released_on": "12-06-2026",
"md5sum": "ee4f7e3e88c2982bc8290e204b10b050"
},
"1.1.9": {
"api_version": 9,
"commit_sha": "3adfe38",

View file

@ -2,7 +2,6 @@
import babase
import bauiv1 as bui
from bauiv1lib import popup, confirm
from babase._meta import _DEPRECATED_EXPORT_SHORTCUTS
from bauiv1lib.settings.allsettings import AllSettingsWindow
import urllib.request
@ -26,7 +25,7 @@ from datetime import datetime
# Modules used for overriding AllSettingsWindow
import logging
PLUGIN_MANAGER_VERSION = "1.1.9"
PLUGIN_MANAGER_VERSION = "1.1.10"
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.
@ -82,7 +81,7 @@ REGEXP = {
"plugin_entry_points": re.compile(
bytes(
"(ba_meta export (plugin|{})\n+class )(.*)\\(".format(
_regexp_friendly_class_name_shortcut(_DEPRECATED_EXPORT_SHORTCUTS["plugin"]),
_regexp_friendly_class_name_shortcut("babase.Plugin"),
),
"utf-8"
),