mirror of
https://github.com/bombsquad-community/plugin-manager.git
synced 2026-08-15 13:03:08 +00:00
Merge pull request #445 from Loup-Garou911XD/main
fix for bs build 22714
This commit is contained in:
commit
272bc0cb5c
3 changed files with 18 additions and 3 deletions
|
|
@ -1,5 +1,9 @@
|
|||
## Plugin Manager (dd-mm-yyyy)
|
||||
|
||||
### 1.1.8 (23-02-2026)
|
||||
|
||||
- Fix for bs 1.7.61 build no 22714
|
||||
|
||||
### 1.1.7 (15-02-2026)
|
||||
|
||||
- Added function to fill form details for plugin bug report button
|
||||
|
|
|
|||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"plugin_manager_url": "https://github.com/bombsquad-community/plugin-manager/{content_type}/{tag}/plugin_manager.py",
|
||||
"versions": {
|
||||
"1.1.8": {
|
||||
"api_version": 9,
|
||||
"commit_sha": "8222081",
|
||||
"released_on": "23-02-2026",
|
||||
"md5sum": "8e8e9fc5b818883102c6081619404318"
|
||||
},
|
||||
"1.1.7": {
|
||||
"api_version": 9,
|
||||
"commit_sha": "af881af",
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ from datetime import datetime
|
|||
# Modules used for overriding AllSettingsWindow
|
||||
import logging
|
||||
|
||||
PLUGIN_MANAGER_VERSION = "1.1.7"
|
||||
PLUGIN_MANAGER_VERSION = "1.1.8"
|
||||
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.
|
||||
|
|
@ -43,7 +43,12 @@ HEADERS = {
|
|||
"User-Agent": _env["legacy_user_agent_string"],
|
||||
}
|
||||
PLUGIN_DIRECTORY = _env["python_directory_user"]
|
||||
loop = babase._asyncio._asyncio_event_loop
|
||||
|
||||
# compatibility for older API versions.
|
||||
if _env.get("build_number", 0) < 22714:
|
||||
babase._asyncio._g_asyncio_event_loop = babase._asyncio._asyncio_event_loop
|
||||
|
||||
loop = babase._asyncio._g_asyncio_event_loop
|
||||
|
||||
open_popups = []
|
||||
|
||||
|
|
@ -3415,7 +3420,7 @@ class EntryPoint(babase.Plugin):
|
|||
from bauiv1lib.settings import allsettings
|
||||
allsettings.AllSettingsWindow = NewAllSettingsWindow
|
||||
DNSBlockWorkaround.apply()
|
||||
asyncio.set_event_loop(babase._asyncio._asyncio_event_loop)
|
||||
asyncio.set_event_loop(babase._asyncio._g_asyncio_event_loop)
|
||||
startup_tasks = StartupTasks()
|
||||
|
||||
loop.create_task(startup_tasks.execute())
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue