mirror of
https://github.com/bombsquad-community/plugin-manager.git
synced 2026-08-15 13:03:08 +00:00
commit
c2c2a04891
3 changed files with 13 additions and 3 deletions
|
|
@ -1,5 +1,9 @@
|
||||||
## Plugin Manager (dd-mm-yyyy)
|
## Plugin Manager (dd-mm-yyyy)
|
||||||
|
|
||||||
|
### 1.1.9 (11-06-2026)
|
||||||
|
|
||||||
|
- Fix for bs 1.7.63
|
||||||
|
|
||||||
### 1.1.8 (23-02-2026)
|
### 1.1.8 (23-02-2026)
|
||||||
|
|
||||||
- Fix for bs 1.7.61 build no 22714
|
- Fix for bs 1.7.61 build no 22714
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,12 @@
|
||||||
{
|
{
|
||||||
"plugin_manager_url": "https://github.com/bombsquad-community/plugin-manager/{content_type}/{tag}/plugin_manager.py",
|
"plugin_manager_url": "https://github.com/bombsquad-community/plugin-manager/{content_type}/{tag}/plugin_manager.py",
|
||||||
"versions": {
|
"versions": {
|
||||||
|
"1.1.9": {
|
||||||
|
"api_version": 9,
|
||||||
|
"commit_sha": "3adfe38",
|
||||||
|
"released_on": "11-06-2026",
|
||||||
|
"md5sum": "d7e990ea4e5c530f780e617c9bdafb42"
|
||||||
|
},
|
||||||
"1.1.8": {
|
"1.1.8": {
|
||||||
"api_version": 9,
|
"api_version": 9,
|
||||||
"commit_sha": "8222081",
|
"commit_sha": "8222081",
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
import babase
|
import babase
|
||||||
import bauiv1 as bui
|
import bauiv1 as bui
|
||||||
from bauiv1lib import popup, confirm
|
from bauiv1lib import popup, confirm
|
||||||
from babase._meta import EXPORT_CLASS_NAME_SHORTCUTS
|
from babase._meta import _DEPRECATED_EXPORT_SHORTCUTS
|
||||||
from bauiv1lib.settings.allsettings import AllSettingsWindow
|
from bauiv1lib.settings.allsettings import AllSettingsWindow
|
||||||
|
|
||||||
import urllib.request
|
import urllib.request
|
||||||
|
|
@ -26,7 +26,7 @@ from datetime import datetime
|
||||||
# Modules used for overriding AllSettingsWindow
|
# Modules used for overriding AllSettingsWindow
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
PLUGIN_MANAGER_VERSION = "1.1.8"
|
PLUGIN_MANAGER_VERSION = "1.1.9"
|
||||||
REPOSITORY_URL = "https://github.com/bombsquad-community/plugin-manager"
|
REPOSITORY_URL = "https://github.com/bombsquad-community/plugin-manager"
|
||||||
# Current tag can be changed to "staging" or any other branch in
|
# Current tag can be changed to "staging" or any other branch in
|
||||||
# plugin manager repo for testing purpose.
|
# plugin manager repo for testing purpose.
|
||||||
|
|
@ -82,7 +82,7 @@ REGEXP = {
|
||||||
"plugin_entry_points": re.compile(
|
"plugin_entry_points": re.compile(
|
||||||
bytes(
|
bytes(
|
||||||
"(ba_meta export (plugin|{})\n+class )(.*)\\(".format(
|
"(ba_meta export (plugin|{})\n+class )(.*)\\(".format(
|
||||||
_regexp_friendly_class_name_shortcut(EXPORT_CLASS_NAME_SHORTCUTS["plugin"]),
|
_regexp_friendly_class_name_shortcut(_DEPRECATED_EXPORT_SHORTCUTS["plugin"]),
|
||||||
),
|
),
|
||||||
"utf-8"
|
"utf-8"
|
||||||
),
|
),
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue