diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-10-21 10:38:48 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-10-21 10:38:48 -0400 |
| commit | 42deac1dce1303a54d89c85aec54ed1a26112063 (patch) | |
| tree | c2da05a600d128797e7980124369266374dd9249 /MediaBrowser.Model/Configuration/ServerConfiguration.cs | |
| parent | d18f000e886feb878d94598441d98d86e499e3db (diff) | |
prioritize tmdb images ahead of fanart, but with min resolution settings
Diffstat (limited to 'MediaBrowser.Model/Configuration/ServerConfiguration.cs')
| -rw-r--r-- | MediaBrowser.Model/Configuration/ServerConfiguration.cs | 28 |
1 files changed, 27 insertions, 1 deletions
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,10 +220,32 @@ namespace MediaBrowser.Model.Configuration /// </summary> /// <value><c>true</c> if [create virtual future episodes]; otherwise, <c>false</c>.</value> public bool CreateVirtualFutureEpisodes { get; set; } - + + /// <summary> + /// Gets or sets the image saving convention. + /// </summary> + /// <value>The image saving convention.</value> public ImageSavingConvention ImageSavingConvention { get; set; } /// <summary> + /// Gets or sets the width of the min movie backdrop. + /// </summary> + /// <value>The width of the min movie backdrop.</value> + public int MinMovieBackdropWidth { get; set; } + + /// <summary> + /// Gets or sets the width of the min movie poster. + /// </summary> + /// <value>The width of the min movie poster.</value> + public int MinMoviePosterWidth { 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> /// Initializes a new instance of the <see cref="ServerConfiguration" /> class. /// </summary> public ServerConfiguration() @@ -268,6 +290,10 @@ namespace MediaBrowser.Model.Configuration SortRemoveWords = new[] { "the", "a", "an" }; SeasonZeroDisplayName = "Specials"; + + MinMovieBackdropWidth = 1920; + MinSeriesBackdropWidth = 1920; + MinMoviePosterWidth = 1000; } } |
