From 42deac1dce1303a54d89c85aec54ed1a26112063 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Mon, 21 Oct 2013 10:38:48 -0400 Subject: prioritize tmdb images ahead of fanart, but with min resolution settings --- .../Configuration/ServerConfiguration.cs | 28 +++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) (limited to 'MediaBrowser.Model/Configuration/ServerConfiguration.cs') diff --git a/MediaBrowser.Model/Configuration/ServerConfiguration.cs b/MediaBrowser.Model/Configuration/ServerConfiguration.cs index 94e2f63e6..af29fd7df 100644 --- a/MediaBrowser.Model/Configuration/ServerConfiguration.cs +++ b/MediaBrowser.Model/Configuration/ServerConfiguration.cs @@ -220,9 +220,31 @@ namespace MediaBrowser.Model.Configuration /// /// true if [create virtual future episodes]; otherwise, false. public bool CreateVirtualFutureEpisodes { get; set; } - + + /// + /// Gets or sets the image saving convention. + /// + /// The image saving convention. public ImageSavingConvention ImageSavingConvention { get; set; } + /// + /// Gets or sets the width of the min movie backdrop. + /// + /// The width of the min movie backdrop. + public int MinMovieBackdropWidth { get; set; } + + /// + /// Gets or sets the width of the min movie poster. + /// + /// The width of the min movie poster. + public int MinMoviePosterWidth { get; set; } + + /// + /// Gets or sets the width of the min series backdrop. + /// + /// The width of the min series backdrop. + public int MinSeriesBackdropWidth { get; set; } + /// /// Initializes a new instance of the class. /// @@ -268,6 +290,10 @@ namespace MediaBrowser.Model.Configuration SortRemoveWords = new[] { "the", "a", "an" }; SeasonZeroDisplayName = "Specials"; + + MinMovieBackdropWidth = 1920; + MinSeriesBackdropWidth = 1920; + MinMoviePosterWidth = 1000; } } -- cgit v1.2.3