mirror of
https://github.com/bombsquad-community/plugin-manager.git
synced 2026-08-15 13:03:08 +00:00
commit
609129d884
2 changed files with 9 additions and 2 deletions
|
|
@ -1204,6 +1204,12 @@
|
|||
}
|
||||
],
|
||||
"versions": {
|
||||
"1.4.3": {
|
||||
"api_version": 8,
|
||||
"commit_sha": "f50a546",
|
||||
"released_on": "12-08-2024",
|
||||
"md5sum": "44e294a7b04a3e03b96ad430afb40d20"
|
||||
},
|
||||
"1.4.2": {
|
||||
"api_version": 8,
|
||||
"commit_sha": "2b5c9ee",
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ from urllib.request import Request, urlopen, urlretrieve
|
|||
from pathlib import Path
|
||||
from os import getcwd, remove
|
||||
from bauiv1lib.popup import PopupWindow
|
||||
from babase._mgen.enums import TimeType
|
||||
|
||||
|
||||
import asyncio
|
||||
import http.client
|
||||
|
|
@ -38,7 +38,8 @@ if TYPE_CHECKING:
|
|||
ANDROID = babase.app.classic.platform == "android"
|
||||
DIRPATH = Path(
|
||||
f"{_babase.app.python_directory_user if build_number < 21282 else _babase.app.env.python_directory_user}/image_id.json")
|
||||
APP_VERSION = _babase.app.version if build_number < 21282 else _babase.app.env.version
|
||||
APP_VERSION = _babase.app.version if build_number < 21282 else (
|
||||
_babase.app.env.engine_version if build_number > 21823 else _babase.app.env.version)
|
||||
|
||||
if ANDROID: # !can add ios in future
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue