mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 21:43:33 -07:00
Monitored instead of ignored for episodes and seasons
This commit is contained in:
parent
5b226a4a5e
commit
41baecc2ee
19 changed files with 93 additions and 58 deletions
|
@ -142,10 +142,10 @@ namespace NzbDrone.Core.Configuration
|
|||
set { SetValue("UpdateUrl", value); }
|
||||
}
|
||||
|
||||
public bool AutoIgnorePreviouslyDownloadedEpisodes
|
||||
public bool AutoUnmonitorPreviouslyDownloadedEpisodes
|
||||
{
|
||||
get { return GetValueBoolean("AutoIgnorePreviouslyDownloadedEpisodes"); }
|
||||
set { SetValue("AutoIgnorePreviouslyDownloadedEpisodes", value); }
|
||||
get { return GetValueBoolean("AutoUnmonitorPreviouslyDownloadedEpisodes"); }
|
||||
set { SetValue("AutoUnmonitorPreviouslyDownloadedEpisodes", value); }
|
||||
}
|
||||
|
||||
public int Retention
|
||||
|
|
|
@ -22,7 +22,7 @@ namespace NzbDrone.Core.Configuration
|
|||
String DownloadedEpisodesFolder { get; set; }
|
||||
bool UseSeasonFolder { get; set; }
|
||||
string SeasonFolderFormat { get; set; }
|
||||
bool AutoIgnorePreviouslyDownloadedEpisodes { get; set; }
|
||||
bool AutoUnmonitorPreviouslyDownloadedEpisodes { get; set; }
|
||||
int Retention { get; set; }
|
||||
Guid UGuid { get; }
|
||||
DownloadClientType DownloadClient { get; set; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue