#680 - begin resolution feature

This commit is contained in:
Luke Pulverenti
2014-01-21 11:24:12 -05:00
parent 1235283279
commit a29e1eb036
5 changed files with 93 additions and 53 deletions

View File

@@ -328,16 +328,12 @@ namespace MediaBrowser.Model.Configuration
public string SeasonZeroFolderName { get; set; }
public string EpisodeNamePattern { get; set; }
public string MultiEpisodeNamePattern { get; set; }
public bool OverwriteExistingEpisodes { get; set; }
public bool DeleteEmptyFolders { get; set; }
/// <summary>
/// Will log results but will not actually make any changes
/// </summary>
public bool EnableTrialMode { get; set; }
public TvFileOrganizationOptions()
{
MinFileSizeMb = 50;
@@ -347,10 +343,9 @@ namespace MediaBrowser.Model.Configuration
WatchLocations = new string[] { };
EpisodeNamePattern = "%sn - %sx%0e - %en.%ext";
MultiEpisodeNamePattern = "%sn - %sx%0e-x%0ed - %en.%ext";
SeasonFolderPattern = "Season %s";
SeasonZeroFolderName = "Season 0";
EnableTrialMode = true;
}
}
}