What about adding a configurable search engine integration.
The idea is that when you are on your dashboard you can search cards, but when no cards are found you can press enter to query the search text into a search engine of your choice.
You should also be able to search manually, so even if there are some cards found you should be able to press a "search on web" button.
Both DuckDuckGo and Google have a GET parameter to send a search query (q=Some+search+query), for example:
https://duckduckgo.com/?q=Some+search+queryhttps://www.google.com/search?q=Some+search+query
It would be an easy improvement as you can easily built the url encoded query string in javascript
Add a counter to the
What about adding a configurable search engine integration.
The idea is that when you are on your dashboard you can search cards, but when no cards are found you can press enter to query the search text into a search engine of your choice.
You should also be able to search manually, so even if there are some cards found you should be able to press a "search on web" button.
Both DuckDuckGo and Google have a GET parameter to send a search query (
q=Some+search+query
), for example:https://duckduckgo.com/?q=Some+search+query
https://www.google.com/search?q=Some+search+query
It would be an easy improvement as you can easily built the url encoded query string in javascript Add a counter to the
loop, when the counter hits 0 and the user pressed enter, it queries the result
As for the configurations, I am not too familiar with Python but it could be under the general
Settings