mirror of
https://github.com/lidarr/Lidarr
synced 2025-01-30 19:02:06 +00:00
Option to monitor no episodes on add
This commit is contained in:
parent
cc21d83e69
commit
408a4e0a81
3 changed files with 7 additions and 0 deletions
|
@ -9,6 +9,8 @@
|
||||||
<dd>Monitor episodes that have files or have not aired yet</dd>
|
<dd>Monitor episodes that have files or have not aired yet</dd>
|
||||||
<dt>First Season</dt>
|
<dt>First Season</dt>
|
||||||
<dd>Monitor all episodes of the first season. All other seasons will be ignored</dd>
|
<dd>Monitor all episodes of the first season. All other seasons will be ignored</dd>
|
||||||
|
<dt>None</dt>
|
||||||
|
<dd>No episodes will be monitored.</dd>
|
||||||
<!--<dt>Latest Season</dt>-->
|
<!--<dt>Latest Season</dt>-->
|
||||||
<!--<dd>Monitor all episodes the latest season only, previous seasons will be ignored</dd>-->
|
<!--<dd>Monitor all episodes the latest season only, previous seasons will be ignored</dd>-->
|
||||||
</dl>
|
</dl>
|
|
@ -289,6 +289,10 @@ define(
|
||||||
options.ignoreEpisodesWithoutFiles = true;
|
options.ignoreEpisodesWithoutFiles = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
else if (monitor === 'none') {
|
||||||
|
this.model.setSeasonPass(lastSeason.seasonNumber + 1);
|
||||||
|
}
|
||||||
|
|
||||||
return options;
|
return options;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
|
@ -43,6 +43,7 @@
|
||||||
<option value="existing">Existing</option>
|
<option value="existing">Existing</option>
|
||||||
<!--<option value="latest">Latest Season</option>-->
|
<!--<option value="latest">Latest Season</option>-->
|
||||||
<option value="first">First Season</option>
|
<option value="first">First Season</option>
|
||||||
|
<option value="none">None</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue