mirror of
https://github.com/bombsquad-community/plugin-manager.git
synced 2025-10-08 14:54:36 +00:00
Fix error caused when cant get changelog
This commit is contained in:
parent
0d7079f0a0
commit
12cadaab4c
3 changed files with 7 additions and 2 deletions
|
|
@ -1,5 +1,9 @@
|
|||
## Plugin Manager (dd-mm-yyyy)
|
||||
|
||||
### 1.0.18 (25-04-2024)
|
||||
|
||||
- Fix error caused when cant get changelog
|
||||
|
||||
### 1.0.17 (22-04-2024)
|
||||
|
||||
- Added ChangeLog Window to view latest changes.
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
{
|
||||
"plugin_manager_url": "https://github.com/bombsquad-community/plugin-manager/{content_type}/{tag}/plugin_manager.py",
|
||||
"versions": {
|
||||
"1.0.18": null,
|
||||
"1.0.17": {
|
||||
"api_version": 8,
|
||||
"commit_sha": "02530f0",
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ from datetime import datetime
|
|||
from threading import Thread
|
||||
import logging
|
||||
|
||||
PLUGIN_MANAGER_VERSION = "1.0.17"
|
||||
PLUGIN_MANAGER_VERSION = "1.0.18"
|
||||
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.
|
||||
|
|
@ -104,7 +104,7 @@ REGEXP = {
|
|||
DISCORD_URL = "https://ballistica.net/discord"
|
||||
|
||||
|
||||
_CACHE = {}
|
||||
_CACHE = {"changelog": "None"}
|
||||
|
||||
|
||||
class MD5CheckSumFailed(Exception):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue