support backdrops from multiple sources

This commit is contained in:
Luke Pulverenti
2013-10-22 15:03:21 -04:00
parent 96fd6459b2
commit 32cb872b06
19 changed files with 336 additions and 95 deletions

View File

@@ -233,6 +233,12 @@ namespace MediaBrowser.Model.Configuration
/// <value>The width of the min movie backdrop.</value>
public int MinMovieBackdropWidth { get; set; }
/// <summary>
/// Gets or sets the width of the min series backdrop.
/// </summary>
/// <value>The width of the min series backdrop.</value>
public int MinSeriesBackdropWidth { get; set; }
/// <summary>
/// Gets or sets the width of the min movie poster.
/// </summary>
@@ -286,6 +292,7 @@ namespace MediaBrowser.Model.Configuration
SeasonZeroDisplayName = "Specials";
MinMovieBackdropWidth = 1920;
MinSeriesBackdropWidth = 1920;
MinMoviePosterWidth = 1000;
}
}