mirror of
https://github.com/bombsquad-community/plugin-manager.git
synced 2025-10-08 14:54:36 +00:00
Fix searching in plugin manager with capital letters
This commit is contained in:
parent
acbc1bda2d
commit
4be6330733
3 changed files with 11 additions and 3 deletions
|
|
@ -1,8 +1,12 @@
|
||||||
## Plugin Manager (dd-mm-yyyy)
|
## 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)
|
### 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)
|
### 1.0.5 (11-12-2023)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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.7": null,
|
||||||
"1.0.6": {
|
"1.0.6": {
|
||||||
"api_version": 8,
|
"api_version": 8,
|
||||||
"commit_sha": "e5a0e90",
|
"commit_sha": "e5a0e90",
|
||||||
|
|
@ -146,4 +147,7 @@
|
||||||
"https://github.com/bombsquad-community/plugin-manager/{content_type}/{tag}/plugins/maps.json"
|
"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"
|
"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"
|
||||||
}
|
}
|
||||||
|
|
@ -32,7 +32,7 @@ from threading import Thread
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
|
|
||||||
PLUGIN_MANAGER_VERSION = "1.0.6"
|
PLUGIN_MANAGER_VERSION = "1.0.7"
|
||||||
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.
|
||||||
|
|
@ -1752,7 +1752,7 @@ class PluginManagerWindow(bui.Window):
|
||||||
if self.selected_category is None:
|
if self.selected_category is None:
|
||||||
continue
|
continue
|
||||||
try:
|
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:
|
except CategoryDoesNotExist:
|
||||||
pass
|
pass
|
||||||
# XXX: This may be more efficient, but we need a way to get a plugin's textwidget
|
# XXX: This may be more efficient, but we need a way to get a plugin's textwidget
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue