display trailers within suggestions

This commit is contained in:
Luke Pulverenti
2014-09-30 00:47:30 -04:00
parent 1fcfff41c7
commit 4aa959c1e2
35 changed files with 719 additions and 400 deletions

View File

@@ -11,6 +11,8 @@ namespace MediaBrowser.Model.Configuration
public bool EnableCustomIntro { get; set; }
public bool EnableIntrosParentalControl { get; set; }
public string CustomIntroPath { get; set; }
public bool EnableIntrosFromUpcomingDvdMovies { get; set; }
public bool EnableIntrosFromUpcomingStreamingMovies { get; set; }
public CinemaModeConfiguration()
{
@@ -18,6 +20,8 @@ namespace MediaBrowser.Model.Configuration
EnableIntrosFromMoviesInLibrary = true;
EnableIntrosFromUpcomingTrailers = true;
EnableIntrosParentalControl = true;
EnableIntrosFromUpcomingDvdMovies = true;
EnableIntrosFromUpcomingStreamingMovies = true;
}
}
}