added library grouping settings.

This commit is contained in:
Luke Pulverenti
2014-06-04 22:32:40 -04:00
parent 39547de1f8
commit 7049ad66f4
64 changed files with 842 additions and 146 deletions

View File

@@ -65,6 +65,8 @@ namespace MediaBrowser.Model.Configuration
public string[] BlockedMediaFolders { get; set; }
public string[] BlockedChannels { get; set; }
public string[] ExcludeFoldersFromGrouping { get; set; }
public UnratedItem[] BlockUnratedItems { get; set; }
public SubtitlePlaybackMode SubtitleMode { get; set; }
@@ -81,11 +83,12 @@ namespace MediaBrowser.Model.Configuration
EnableLiveTvManagement = true;
EnableMediaPlayback = true;
EnableLiveTvAccess = true;
GroupMoviesIntoBoxSets = true;
BlockedMediaFolders = new string[] { };
BlockedChannels = new string[] { };
BlockUnratedItems = new UnratedItem[] { };
ExcludeFoldersFromGrouping = new string[] { };
}
}