#680 - Support new episode file sorting

This commit is contained in:
Luke Pulverenti
2014-01-19 11:33:36 -05:00
parent 6e2d4ad150
commit 28c88174ae
3 changed files with 80 additions and 47 deletions

View File

@@ -331,6 +331,11 @@ namespace MediaBrowser.Model.Configuration
public bool DeleteEmptyFolders { get; set; }
/// <summary>
/// Will log results but will not actually make any changes
/// </summary>
public bool EnableTrialMode { get; set; }
public FileSortingOptions()
{
MinFileSizeMb = 50;
@@ -344,6 +349,8 @@ namespace MediaBrowser.Model.Configuration
SeasonFolderPattern = "Season %s";
SeasonZeroFolderName = "Season 0";
EnableTrialMode = true;
}
}
}