2017-06-19 02:16:39 +00:00
|
|
|
|
using NzbDrone.Core.Datastore;
|
2013-04-25 04:27:49 +00:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Organizer
|
|
|
|
|
{
|
|
|
|
|
public class NamingConfig : ModelBase
|
|
|
|
|
{
|
2016-12-09 06:54:15 +00:00
|
|
|
|
public static NamingConfig Default => new NamingConfig
|
2013-04-25 04:27:49 +00:00
|
|
|
|
{
|
2016-12-09 06:54:15 +00:00
|
|
|
|
RenameEpisodes = false,
|
2017-06-19 02:16:39 +00:00
|
|
|
|
RenameTracks = false,
|
2016-12-09 06:54:15 +00:00
|
|
|
|
ReplaceIllegalCharacters = true,
|
|
|
|
|
MultiEpisodeStyle = 0,
|
|
|
|
|
StandardEpisodeFormat = "{Series Title} - S{season:00}E{episode:00} - {Episode Title} {Quality Full}",
|
2017-06-19 02:16:39 +00:00
|
|
|
|
StandardTrackFormat = "{Artist Name} - {track:00} - {Album Title} - {Track Title}",
|
2016-12-09 06:54:15 +00:00
|
|
|
|
DailyEpisodeFormat = "{Series Title} - {Air-Date} - {Episode Title} {Quality Full}",
|
|
|
|
|
AnimeEpisodeFormat = "{Series Title} - S{season:00}E{episode:00} - {Episode Title} {Quality Full}",
|
|
|
|
|
SeriesFolderFormat = "{Series Title}",
|
2017-04-30 21:54:01 +00:00
|
|
|
|
SeasonFolderFormat = "Season {season}",
|
|
|
|
|
ArtistFolderFormat = "{Artist Name}",
|
2017-06-19 02:16:39 +00:00
|
|
|
|
AlbumFolderFormat = "{Album Title} ({Release Year})"
|
2016-12-09 06:54:15 +00:00
|
|
|
|
};
|
2013-04-25 04:27:49 +00:00
|
|
|
|
|
2013-07-05 03:26:07 +00:00
|
|
|
|
public bool RenameEpisodes { get; set; }
|
2017-06-19 02:16:39 +00:00
|
|
|
|
public bool RenameTracks { get; set; }
|
2015-10-04 20:13:14 +00:00
|
|
|
|
public bool ReplaceIllegalCharacters { get; set; }
|
2013-04-25 04:27:49 +00:00
|
|
|
|
public int MultiEpisodeStyle { get; set; }
|
2013-11-07 01:48:51 +00:00
|
|
|
|
public string StandardEpisodeFormat { get; set; }
|
2017-06-19 02:16:39 +00:00
|
|
|
|
public string StandardTrackFormat { get; set; }
|
2013-11-07 01:48:51 +00:00
|
|
|
|
public string DailyEpisodeFormat { get; set; }
|
2014-05-19 19:14:41 +00:00
|
|
|
|
public string AnimeEpisodeFormat { get; set; }
|
2014-01-17 07:52:28 +00:00
|
|
|
|
public string SeriesFolderFormat { get; set; }
|
2013-11-21 05:34:38 +00:00
|
|
|
|
public string SeasonFolderFormat { get; set; }
|
2017-04-30 21:54:01 +00:00
|
|
|
|
public string ArtistFolderFormat { get; set; }
|
|
|
|
|
public string AlbumFolderFormat { get; set; }
|
2013-04-25 04:27:49 +00:00
|
|
|
|
}
|
2015-10-04 20:13:14 +00:00
|
|
|
|
}
|