From 1afb28b48797ee53442823cfd395e07d219e8ec3 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Mon, 22 Sep 2014 17:56:54 -0400 Subject: add cinema mode feature --- .../Configuration/CinemaModeConfiguration.cs | 23 ++++++++++++++++++++++ .../Configuration/ServerConfiguration.cs | 5 ++++- .../Configuration/UserConfiguration.cs | 1 + 3 files changed, 28 insertions(+), 1 deletion(-) create mode 100644 MediaBrowser.Model/Configuration/CinemaModeConfiguration.cs (limited to 'MediaBrowser.Model/Configuration') diff --git a/MediaBrowser.Model/Configuration/CinemaModeConfiguration.cs b/MediaBrowser.Model/Configuration/CinemaModeConfiguration.cs new file mode 100644 index 0000000000..35053e3de8 --- /dev/null +++ b/MediaBrowser.Model/Configuration/CinemaModeConfiguration.cs @@ -0,0 +1,23 @@ + +namespace MediaBrowser.Model.Configuration +{ + public class CinemaModeConfiguration + { + public bool EnableIntrosForMovies { get; set; } + public bool EnableIntrosForEpisodes { get; set; } + public bool EnableIntrosForWatchedContent { get; set; } + public bool EnableIntrosFromUpcomingTrailers { get; set; } + public bool EnableIntrosFromMoviesInLibrary { get; set; } + public bool EnableCustomIntro { get; set; } + public bool EnableIntrosParentalControl { get; set; } + + public CinemaModeConfiguration() + { + EnableIntrosForMovies = true; + EnableCustomIntro = true; + EnableIntrosFromMoviesInLibrary = true; + EnableIntrosFromUpcomingTrailers = true; + EnableIntrosParentalControl = true; + } + } +} diff --git a/MediaBrowser.Model/Configuration/ServerConfiguration.cs b/MediaBrowser.Model/Configuration/ServerConfiguration.cs index 4786194e27..9d125779b8 100644 --- a/MediaBrowser.Model/Configuration/ServerConfiguration.cs +++ b/MediaBrowser.Model/Configuration/ServerConfiguration.cs @@ -179,6 +179,8 @@ namespace MediaBrowser.Model.Configuration public bool SaveMetadataHidden { get; set; } + public bool FindInternetTrailers { get; set; } + /// /// Initializes a new instance of the class. /// @@ -204,7 +206,8 @@ namespace MediaBrowser.Model.Configuration RealtimeMonitorDelay = 30; - EnableInternetProviders = true; + EnableInternetProviders = true; + FindInternetTrailers = true; PathSubstitutions = new PathSubstitution[] { }; diff --git a/MediaBrowser.Model/Configuration/UserConfiguration.cs b/MediaBrowser.Model/Configuration/UserConfiguration.cs index 3f25ba656b..e535d78051 100644 --- a/MediaBrowser.Model/Configuration/UserConfiguration.cs +++ b/MediaBrowser.Model/Configuration/UserConfiguration.cs @@ -82,6 +82,7 @@ namespace MediaBrowser.Model.Configuration public bool SyncConnectName { get; set; } public bool SyncConnectImage { get; set; } + /// /// Initializes a new instance of the class. /// -- cgit v1.2.3