mirror of
https://github.com/morpheus65535/bazarr
synced 2025-01-03 13:35:18 +00:00
Modified default value for adaptive searching (now enabled) and improved description in settings
This commit is contained in:
parent
1489926b6f
commit
296d497673
2 changed files with 9 additions and 7 deletions
|
@ -61,7 +61,7 @@ defaults = {
|
|||
'ignore_pgs_subs': 'False',
|
||||
'ignore_vobsub_subs': 'False',
|
||||
'ignore_ass_subs': 'False',
|
||||
'adaptive_searching': 'False',
|
||||
'adaptive_searching': 'True',
|
||||
'adaptive_searching_delay': '3w',
|
||||
'adaptive_searching_delta': '1w',
|
||||
'enabled_providers': '[]',
|
||||
|
|
|
@ -215,8 +215,8 @@ const SettingsSubtitlesView: FunctionComponent = () => {
|
|||
settingKey="settings-general-adaptive_searching"
|
||||
></Check>
|
||||
<Message>
|
||||
When searching for subtitles, Bazarr will reduce search frequency to
|
||||
limit call to providers.
|
||||
When enabled, Bazarr will skip searching providers for subtitles which
|
||||
have been searched recently.
|
||||
</Message>
|
||||
<CollapseBox settingKey="settings-general-adaptive_searching">
|
||||
<Selector
|
||||
|
@ -225,8 +225,9 @@ const SettingsSubtitlesView: FunctionComponent = () => {
|
|||
options={adaptiveSearchingDelayOption}
|
||||
></Selector>
|
||||
<Message>
|
||||
In order to reduce search frequency, how many weeks must Bazarr wait
|
||||
after initial search.
|
||||
The delay from the first search to adaptive searching applying.
|
||||
During this window Bazarr will continue to search for subtitles,
|
||||
even if they have been searched for recently.
|
||||
</Message>
|
||||
<Selector
|
||||
settingKey="settings-general-adaptive_searching_delta"
|
||||
|
@ -234,8 +235,9 @@ const SettingsSubtitlesView: FunctionComponent = () => {
|
|||
options={adaptiveSearchingDeltaOption}
|
||||
></Selector>
|
||||
<Message>
|
||||
How often should Bazarr search for subtitles when in adaptive search
|
||||
mode.
|
||||
The delay between Bazarr searching for subtitles in adaptive search
|
||||
mode. If the media has been searched for more recently than this
|
||||
value, Bazarr will skip searching for subtitles.
|
||||
</Message>
|
||||
</CollapseBox>
|
||||
<Check
|
||||
|
|
Loading…
Reference in a new issue