mirror of
https://github.com/bombsquad-community/plugin-manager.git
synced 2026-08-15 13:03:08 +00:00
Small fixes
This commit is contained in:
parent
e80d8b76a5
commit
4640b821cf
1 changed files with 4 additions and 3 deletions
|
|
@ -24,7 +24,7 @@ import hashlib
|
||||||
import copy
|
import copy
|
||||||
import traceback
|
import traceback
|
||||||
|
|
||||||
from typing import Union, Optional
|
from typing import Union, Optional, cast
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
|
|
||||||
# Modules used for overriding AllSettingsWindow
|
# Modules used for overriding AllSettingsWindow
|
||||||
|
|
@ -1427,7 +1427,8 @@ class PluginManager:
|
||||||
'info': matches[0].strip()
|
'info': matches[0].strip()
|
||||||
}
|
}
|
||||||
else:
|
else:
|
||||||
changelog = f"Changelog entry for version {version} not found."
|
changelog = {'released_on': ' (Not Provided)',
|
||||||
|
'info': f"Changelog entry for version {version} not found."}
|
||||||
else:
|
else:
|
||||||
changelog = full_changelog[0]
|
changelog = full_changelog[0]
|
||||||
except urllib.error.URLError:
|
except urllib.error.URLError:
|
||||||
|
|
@ -1880,8 +1881,8 @@ class PluginManagerWindow(bui.Window):
|
||||||
self.draw_category_selection_button(post_label="All")
|
self.draw_category_selection_button(post_label="All")
|
||||||
self.draw_refresh_icon()
|
self.draw_refresh_icon()
|
||||||
self.draw_settings_icon()
|
self.draw_settings_icon()
|
||||||
await self.plugin_manager.setup_changelog()
|
|
||||||
with self.exception_handler():
|
with self.exception_handler():
|
||||||
|
await self.plugin_manager.setup_changelog()
|
||||||
await self.plugin_manager.setup_index()
|
await self.plugin_manager.setup_index()
|
||||||
self._dot_timer = None
|
self._dot_timer = None
|
||||||
bui.textwidget(edit=self._plugin_manager_status_text,
|
bui.textwidget(edit=self._plugin_manager_status_text,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue