Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enhancement: separate Internet search settings for quicklaunch #3541

Merged
merged 11 commits into from
Jun 1, 2024
Prev Previous commit
Next Next commit
updated docs
  • Loading branch information
vycdev committed May 31, 2024
commit 5f00f88f5380b8f3b42aa58db5f6f80d62b77f49
8 changes: 5 additions & 3 deletions docs/configs/settings.md
Original file line number Diff line number Diff line change
Expand Up @@ -377,14 +377,16 @@ You can use the 'Quick Launch' feature to search services, perform a web search

There are a few optional settings for the Quick Launch feature:

- `searchDescriptions`: which lets you control whether item descriptions are included in searches. This is off by default. When enabled, results that match the item name will be placed above those that only match the description.
- `showSearchSuggestions`: shows search suggestions for the internet search. This is true by default. For custom providers the `suggestionUrl` needs to be set in order for this to work.
- `searchDescriptions`: which lets you control whether item descriptions are included in searches. This is false by default. When enabled, results that match the item name will be placed above those that only match the description.
- `hideInternetSearch`: gives the ability to use Quick Launch for internet search when a provider is set. This is false by default, making internet search available.
- `showSearchSuggestions`: shows search suggestions for the internet search. If this is not specified then the value will be inherited from the search widget. If it is not specified there either, it will default to false. For custom providers the `suggestionUrl` needs to be set in order for this to work.
- `hideVisitURL`: disable detecting and offering an option to open URLs. This is false by default, enabling the feature.
- `provider`: search engine provider. If none is specified then internet search will be disabled.
- `provider`: search engine provider. If none is specified it will try to use the provider set for the Search Widget, if neither are present then internet search will be disabled.

```yaml
quicklaunch:
searchDescriptions: true
hideInternetSearch: false
showSearchSuggestions: true
hideVisitURL: true
provider: google # google, duckduckgo, bing, baidu, brave or custom
Expand Down