aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/src/pages/Settings
diff options
context:
space:
mode:
authorJayZed <[email protected]>2024-01-24 18:07:15 -0500
committerGitHub <[email protected]>2024-01-24 18:07:15 -0500
commit990448b06e6df9f2728d98a9a14df5f2b378b00a (patch)
tree43d57ca54ed84af691bb3a7913c766938647fb03 /frontend/src/pages/Settings
parent3922d52d5cfa6fd3da2aca2f9f2e5bda61091dd4 (diff)
downloadbazarr-990448b06e6df9f2728d98a9a14df5f2b378b00a.tar.gz
bazarr-990448b06e6df9f2728d98a9a14df5f2b378b00a.zip
Added Sync Optimization for Movies, Series and Episodes to ignore unmonitored itemsv1.4.1-beta.18
Diffstat (limited to 'frontend/src/pages/Settings')
-rw-r--r--frontend/src/pages/Settings/Scheduler/index.tsx44
1 files changed, 44 insertions, 0 deletions
diff --git a/frontend/src/pages/Settings/Scheduler/index.tsx b/frontend/src/pages/Settings/Scheduler/index.tsx
index 3bd6da91a..a6cd2ca74 100644
--- a/frontend/src/pages/Settings/Scheduler/index.tsx
+++ b/frontend/src/pages/Settings/Scheduler/index.tsx
@@ -35,11 +35,55 @@ const SettingsSchedulerView: FunctionComponent = () => {
options={seriesSyncOptions}
settingKey="settings-sonarr-series_sync"
></Selector>
+ <Check
+ label="Sync Only Monitored Series"
+ settingKey={"settings-sonarr-sync_only_monitored_series"}
+ ></Check>
+ <CollapseBox settingKey={"settings-sonarr-sync_only_monitored_series"}>
+ <Message>
+ If enabled, only series with a monitored status in Sonarr will be
+ synced. If you make changes to a specific unmonitored Sonarr series
+ and you want Bazarr to know about those changes, simply toggle the
+ monitored status back on in Sonarr and Bazarr will sync any changes.
+ </Message>
+ </CollapseBox>
+ <CollapseBox settingKey={"settings-sonarr-sync_only_monitored_series"}>
+ <Check
+ label="Sync Only Monitored Episodes"
+ settingKey={"settings-sonarr-sync_only_monitored_episodes"}
+ ></Check>
+ <CollapseBox
+ settingKey={"settings-sonarr-sync_only_monitored_episodes"}
+ >
+ <Message>
+ If enabled, only episodes with a monitored status in Sonarr will
+ be synced. If you make changes to a specific unmonitored Sonarr
+ episode (or season) and you want Bazarr to know about those
+ changes, simply toggle the monitored status back on in Sonarr and
+ Bazarr will sync any changes. This setting is especially helpful
+ for long running TV series with many seasons and many episodes,
+ but that are still actively producing new episodes (e.g. Saturday
+ Night Live).
+ </Message>
+ </CollapseBox>
+ </CollapseBox>
<Selector
label="Sync with Radarr"
options={moviesSyncOptions}
settingKey="settings-radarr-movies_sync"
></Selector>
+ <Check
+ label="Sync Only Monitored Movies"
+ settingKey={"settings-radarr-sync_only_monitored_movies"}
+ ></Check>
+ <CollapseBox settingKey={"settings-radarr-sync_only_monitored_movies"}>
+ <Message>
+ If enabled, only movies with a monitored status in Radarr will be
+ synced. If you make changes to a specific unmonitored Radarr movie
+ and you want Bazarr to know about those changes, simply toggle the
+ monitored status back on in Radarr and Bazarr will sync any changes.
+ </Message>
+ </CollapseBox>
</Section>
<Section header="Disk Indexing">
<Selector