|
|
|
@ -22,10 +22,10 @@ namespace MediaBrowser.Model.Configuration
|
|
|
|
|
HidePlayedInLatest = true;
|
|
|
|
|
PlayDefaultAudioTrack = true;
|
|
|
|
|
|
|
|
|
|
LatestItemsExcludes = Array.Empty<string>();
|
|
|
|
|
OrderedViews = Array.Empty<string>();
|
|
|
|
|
MyMediaExcludes = Array.Empty<string>();
|
|
|
|
|
GroupedFolders = Array.Empty<string>();
|
|
|
|
|
LatestItemsExcludes = Array.Empty<Guid>();
|
|
|
|
|
OrderedViews = Array.Empty<Guid>();
|
|
|
|
|
MyMediaExcludes = Array.Empty<Guid>();
|
|
|
|
|
GroupedFolders = Array.Empty<Guid>();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
@ -48,7 +48,7 @@ namespace MediaBrowser.Model.Configuration
|
|
|
|
|
|
|
|
|
|
public bool DisplayMissingEpisodes { get; set; }
|
|
|
|
|
|
|
|
|
|
public string[] GroupedFolders { get; set; }
|
|
|
|
|
public Guid[] GroupedFolders { get; set; }
|
|
|
|
|
|
|
|
|
|
public SubtitlePlaybackMode SubtitleMode { get; set; }
|
|
|
|
|
|
|
|
|
@ -56,11 +56,11 @@ namespace MediaBrowser.Model.Configuration
|
|
|
|
|
|
|
|
|
|
public bool EnableLocalPassword { get; set; }
|
|
|
|
|
|
|
|
|
|
public string[] OrderedViews { get; set; }
|
|
|
|
|
public Guid[] OrderedViews { get; set; }
|
|
|
|
|
|
|
|
|
|
public string[] LatestItemsExcludes { get; set; }
|
|
|
|
|
public Guid[] LatestItemsExcludes { get; set; }
|
|
|
|
|
|
|
|
|
|
public string[] MyMediaExcludes { get; set; }
|
|
|
|
|
public Guid[] MyMediaExcludes { get; set; }
|
|
|
|
|
|
|
|
|
|
public bool HidePlayedInLatest { get; set; }
|
|
|
|
|
|
|
|
|
|