1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-26 22:56:23 -04:00

Last Season and Recent Episodes

New: Added option to only monitor recent episodes
Fixed: Last Season always monitors the whole season
Closes #6175
This commit is contained in:
Mark McDowall
2023-11-18 14:35:03 -08:00
committed by Mark McDowall
parent ade40b72bc
commit 5d86329c18
7 changed files with 129 additions and 29 deletions
@@ -25,6 +25,12 @@ const monitorOptions = [
return translate('MonitorExistingEpisodes');
}
},
{
key: 'recent',
get value() {
return translate('MonitorRecentEpisodes');
}
},
{
key: 'pilot',
get value() {
@@ -38,9 +44,9 @@ const monitorOptions = [
}
},
{
key: 'latestSeason',
key: 'lastSeason',
get value() {
return translate('MonitorLatestSeason');
return translate('MonitorLastSeason');
}
},
{