diff --git a/CHANGELOG.md b/CHANGELOG.md index 10b52cc..0d1f3d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,12 @@ ## Plugin Manager (dd-mm-yyyy) +### 1.0.7 (22-02-2024) + +- Fix searching in plugin manager with capital letters. + ### 1.0.6 (26-12-2023) -- Fixed plugin manager throwing errors on older builds +- Fixed plugin manager throwing errors on older builds. ### 1.0.5 (11-12-2023) diff --git a/index.json b/index.json index 656078c..da2e894 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.7": null, "1.0.6": { "api_version": 8, "commit_sha": "e5a0e90", @@ -146,4 +147,7 @@ "https://github.com/bombsquad-community/plugin-manager/{content_type}/{tag}/plugins/maps.json" ], "external_source_url": "https://github.com/{repository}/{content_type}/{tag}/category.json" +}ger/{content_type}/{tag}/plugins/maps.json" + ], + "external_source_url": "https://github.com/{repository}/{content_type}/{tag}/category.json" } \ No newline at end of file diff --git a/plugin_manager.py b/plugin_manager.py index 491304c..545d41b 100644 --- a/plugin_manager.py +++ b/plugin_manager.py @@ -32,7 +32,7 @@ from threading import Thread import logging -PLUGIN_MANAGER_VERSION = "1.0.6" +PLUGIN_MANAGER_VERSION = "1.0.7" 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. @@ -1752,7 +1752,7 @@ class PluginManagerWindow(bui.Window): if self.selected_category is None: continue try: - await self.draw_plugin_names(self.selected_category, search_term=filter_text) + await self.draw_plugin_names(self.selected_category, search_term=filter_text.lower()) except CategoryDoesNotExist: pass # XXX: This may be more efficient, but we need a way to get a plugin's textwidget