mirror of
https://github.com/bombsquad-community/plugin-manager.git
synced 2025-11-07 17:36:00 +00:00
commit
a23e8cd532
3 changed files with 67 additions and 16 deletions
|
|
@ -1,6 +1,12 @@
|
|||
## Plugin Manager (dd-mm-yyyy)
|
||||
|
||||
|
||||
### 0.1.7 (03-10-2022)
|
||||
|
||||
- Added New Option in settings for Notifying new plugins.
|
||||
- Added a Discord Button to join Bombsquad's Official Discord server.
|
||||
|
||||
|
||||
### 0.1.6 (15-09-2022)
|
||||
|
||||
- Distinguish the settings button with a cyan color (previously was green) in plugin manager window.
|
||||
|
|
|
|||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"plugin_manager_url": "http://github.com/bombsquad-community/plugin-manager/{content_type}/{tag}/plugin_manager.py",
|
||||
"versions": {
|
||||
"0.1.7": {
|
||||
"api_version": 7,
|
||||
"commit_sha": "2fe966c",
|
||||
"released_on": "04-10-2022",
|
||||
"md5sum": "78d7a6b3a62f8920d0da0acab20b419a"
|
||||
},
|
||||
"0.1.6": {
|
||||
"api_version": 7,
|
||||
"commit_sha": "2a7ad8e",
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ _env = _ba.env()
|
|||
_uiscale = ba.app.ui.uiscale
|
||||
|
||||
|
||||
PLUGIN_MANAGER_VERSION = "0.1.6"
|
||||
PLUGIN_MANAGER_VERSION = "0.1.7"
|
||||
REPOSITORY_URL = "http://github.com/bombsquad-community/plugin-manager"
|
||||
CURRENT_TAG = "main"
|
||||
# XXX: Using https with `ba.open_url` seems to trigger a pop-up dialog box on
|
||||
|
|
@ -36,6 +36,7 @@ REGEXP = {
|
|||
"plugin_entry_points": re.compile(b"(ba_meta export plugin\n+class )(.*)\\("),
|
||||
"minigames": re.compile(b"(ba_meta export game\n+class )(.*)\\("),
|
||||
}
|
||||
DISCORD_URL = "http://ballistica.net/discord"
|
||||
|
||||
_CACHE = {}
|
||||
|
||||
|
|
@ -124,7 +125,6 @@ class StartupTasks:
|
|||
plugin_manager_config = ba.app.config.setdefault("Community Plugin Manager", {})
|
||||
plugin_manager_config.setdefault("Custom Sources", [])
|
||||
installed_plugins = plugin_manager_config.setdefault("Installed Plugins", {})
|
||||
|
||||
for plugin_name in tuple(installed_plugins.keys()):
|
||||
plugin = PluginLocal(plugin_name)
|
||||
if not plugin.is_installed:
|
||||
|
|
@ -135,6 +135,7 @@ class StartupTasks:
|
|||
"Auto Update Plugin Manager": True,
|
||||
"Auto Update Plugins": True,
|
||||
"Auto Enable Plugins After Installation": True,
|
||||
"Notify New Plugins": True
|
||||
}
|
||||
settings = plugin_manager_config.setdefault("Settings", {})
|
||||
|
||||
|
|
@ -174,12 +175,33 @@ class StartupTasks:
|
|||
plugins_to_update.append(plugin.update())
|
||||
await asyncio.gather(*plugins_to_update)
|
||||
|
||||
async def notify_new_plugins(self):
|
||||
if not ba.app.config["Community Plugin Manager"]["Settings"]["Notify New Plugins"]:
|
||||
return
|
||||
|
||||
await self.plugin_manager.setup_index()
|
||||
try:
|
||||
num_of_plugins = ba.app.config["Community Plugin Manager"]["Existing Number of Plugins"]
|
||||
except Exception:
|
||||
ba.app.config["Community Plugin Manager"]["Existing Number of Plugins"] = len(await self.plugin_manager.categories["All"].get_plugins())
|
||||
num_of_plugins = ba.app.config["Community Plugin Manager"]["Existing Number of Plugins"]
|
||||
ba.app.config.commit()
|
||||
return
|
||||
|
||||
new_num_of_plugins = len(await self.plugin_manager.categories["All"].get_plugins())
|
||||
|
||||
if num_of_plugins < new_num_of_plugins:
|
||||
ba.screenmessage("We got new Plugins for you to try!")
|
||||
ba.app.config["Community Plugin Manager"]["Existing Number of Plugins"] = new_num_of_plugins
|
||||
ba.app.config.commit()
|
||||
|
||||
async def execute(self):
|
||||
self.setup_config()
|
||||
try:
|
||||
await asyncio.gather(
|
||||
self.update_plugin_manager(),
|
||||
self.update_plugins(),
|
||||
self.notify_new_plugins(),
|
||||
)
|
||||
except urllib.error.URLError:
|
||||
pass
|
||||
|
|
@ -898,6 +920,7 @@ class PluginManager:
|
|||
self._index = _CACHE.get("index", {})
|
||||
self.categories = {}
|
||||
self.module_path = sys.modules[__name__].__file__
|
||||
self._index_setup_in_progress = False
|
||||
|
||||
async def get_index(self):
|
||||
if not self._index:
|
||||
|
|
@ -910,13 +933,20 @@ class PluginManager:
|
|||
headers=self.request_headers,
|
||||
)
|
||||
response = await async_send_network_request(request)
|
||||
self._index = json.loads(response.read())
|
||||
self.set_index_global_cache(self._index)
|
||||
index = json.loads(response.read())
|
||||
self.set_index_global_cache(index)
|
||||
self._index = index
|
||||
return self._index
|
||||
|
||||
async def setup_index(self):
|
||||
while self._index_setup_in_progress:
|
||||
# Avoid making multiple network calls to the same resource in parallel.
|
||||
# Rather wait for the previous network call to complete.
|
||||
await asyncio.sleep(0.1)
|
||||
self._index_setup_in_progress = not bool(self._index)
|
||||
index = await self.get_index()
|
||||
await self.setup_plugin_categories(index)
|
||||
self._index_setup_in_progress = False
|
||||
|
||||
async def setup_plugin_categories(self, plugin_index):
|
||||
# A hack to have the "All" category show at the top.
|
||||
|
|
@ -1678,7 +1708,7 @@ class PluginManagerSettingsWindow(popup.PopupWindow):
|
|||
scale=text_scale * 0.8)
|
||||
pos -= 34 * text_scale
|
||||
|
||||
pos = height - 220
|
||||
pos = height - 200
|
||||
ba.textwidget(parent=self._root_widget,
|
||||
position=(width * 0.49, pos-5),
|
||||
size=(0, 0),
|
||||
|
|
@ -1689,17 +1719,16 @@ class PluginManagerSettingsWindow(popup.PopupWindow):
|
|||
color=color,
|
||||
maxwidth=width * 0.95)
|
||||
|
||||
pos -= 45
|
||||
ba.textwidget(parent=self._root_widget,
|
||||
position=(width * 0.22, pos-5),
|
||||
size=(0, 0),
|
||||
h_align='center',
|
||||
v_align='center',
|
||||
text=f'API Version: {ba.app.api_version}',
|
||||
scale=text_scale * 0.7,
|
||||
color=(0.4, 0.8, 1),
|
||||
maxwidth=width * 0.95)
|
||||
pos -= 25
|
||||
pos -= 75
|
||||
ba.buttonwidget(parent=self._root_widget,
|
||||
position=((width * 0.20) - button_size[0] / 2, pos),
|
||||
size=button_size,
|
||||
on_activate_call=lambda: ba.open_url(DISCORD_URL),
|
||||
textcolor=b_text_color,
|
||||
button_type='square',
|
||||
text_scale=1,
|
||||
label='Discord')
|
||||
|
||||
ba.buttonwidget(parent=self._root_widget,
|
||||
position=((width * 0.49) - button_size[0] / 2, pos),
|
||||
size=button_size,
|
||||
|
|
@ -1756,6 +1785,16 @@ class PluginManagerSettingsWindow(popup.PopupWindow):
|
|||
scale=text_scale * 0.8,
|
||||
color=text_color,
|
||||
maxwidth=width * 0.9)
|
||||
pos -= 25
|
||||
ba.textwidget(parent=self._root_widget,
|
||||
position=(width * 0.49, pos),
|
||||
size=(0, 0),
|
||||
h_align='center',
|
||||
v_align='center',
|
||||
text=f'API Version: {ba.app.api_version}',
|
||||
scale=text_scale * 0.7,
|
||||
color=(0.4, 0.8, 1),
|
||||
maxwidth=width * 0.95)
|
||||
|
||||
pos = height * 0.1
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue