diff --git a/CHANGELOG.md b/CHANGELOG.md index 068f59a..befb9fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/index.json b/index.json index bae8046..4871597 100644 --- a/index.json +++ b/index.json @@ -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", diff --git a/plugin_manager.py b/plugin_manager.py index a247dc0..fb5d02e 100644 --- a/plugin_manager.py +++ b/plugin_manager.py @@ -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):