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
+3 -1
View File
@@ -13,7 +13,8 @@ namespace NzbDrone.Core.Organizer
RenameEpisodes = false,
MultiEpisodeStyle = 0,
StandardEpisodeFormat = "{Series Title} - S{season:00}E{episode:00} - {Episode Title} {Quality Title}",
DailyEpisodeFormat = "{Series Title} - {Air-Date} - {Episode Title} {Quality Title}"
DailyEpisodeFormat = "{Series Title} - {Air-Date} - {Episode Title} {Quality Title}",
SeasonFolderFormat = "Season {season}"
};
}
}
@@ -22,5 +23,6 @@ namespace NzbDrone.Core.Organizer
public int MultiEpisodeStyle { get; set; }
public string StandardEpisodeFormat { get; set; }
public string DailyEpisodeFormat { get; set; }
public string SeasonFolderFormat { get; set; }
}
}