Moved SeasonFolderFormat to NamingConfig

Moved UseSeasonFolder to UI only (add series)
This commit is contained in:
Mark McDowall 2013-11-20 21:34:38 -08:00
parent 9d94c4490f
commit 3db97e9d11
18 changed files with 147 additions and 112 deletions

View file

@ -142,19 +142,6 @@ namespace NzbDrone.Core.Configuration
set { SetValue(ConfigKey.DownloadedEpisodesFolder.ToString(), value); }
}
public bool UseSeasonFolder
{
get { return GetValueBoolean("UseSeasonFolder", true); }
set { SetValue("UseSeasonFolder", value); }
}
public string SeasonFolderFormat
{
get { return GetValue("SeasonFolderFormat", "Season {season}"); }
set { SetValue("SeasonFolderFormat", value); }
}
public bool AutoUnmonitorPreviouslyDownloadedEpisodes
{
get { return GetValueBoolean("AutoUnmonitorPreviouslyDownloadedEpisodes"); }