Fix error caused when cant get changelog

This commit is contained in:
Loup-Garou911XD 2024-04-25 18:20:00 +05:30
parent 0d7079f0a0
commit 12cadaab4c
3 changed files with 7 additions and 2 deletions

View file

@ -1,5 +1,9 @@
## Plugin Manager (dd-mm-yyyy) ## Plugin Manager (dd-mm-yyyy)
### 1.0.18 (25-04-2024)
- Fix error caused when cant get changelog
### 1.0.17 (22-04-2024) ### 1.0.17 (22-04-2024)
- Added ChangeLog Window to view latest changes. - Added ChangeLog Window to view latest changes.

View file

@ -1,6 +1,7 @@
{ {
"plugin_manager_url": "https://github.com/bombsquad-community/plugin-manager/{content_type}/{tag}/plugin_manager.py", "plugin_manager_url": "https://github.com/bombsquad-community/plugin-manager/{content_type}/{tag}/plugin_manager.py",
"versions": { "versions": {
"1.0.18": null,
"1.0.17": { "1.0.17": {
"api_version": 8, "api_version": 8,
"commit_sha": "02530f0", "commit_sha": "02530f0",

View file

@ -31,7 +31,7 @@ from datetime import datetime
from threading import Thread from threading import Thread
import logging import logging
PLUGIN_MANAGER_VERSION = "1.0.17" PLUGIN_MANAGER_VERSION = "1.0.18"
REPOSITORY_URL = "https://github.com/bombsquad-community/plugin-manager" REPOSITORY_URL = "https://github.com/bombsquad-community/plugin-manager"
# Current tag can be changed to "staging" or any other branch in # Current tag can be changed to "staging" or any other branch in
# plugin manager repo for testing purpose. # plugin manager repo for testing purpose.
@ -104,7 +104,7 @@ REGEXP = {
DISCORD_URL = "https://ballistica.net/discord" DISCORD_URL = "https://ballistica.net/discord"
_CACHE = {} _CACHE = {"changelog": "None"}
class MD5CheckSumFailed(Exception): class MD5CheckSumFailed(Exception):