From 3be4aa8dc729f5899658790f43a1d1c182e7a243 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sun, 19 Oct 2014 23:04:45 -0400 Subject: add connect to startup wizard --- .../Configuration/ServerConfiguration.cs | 97 ++++++++++++++++++++++ 1 file changed, 97 insertions(+) (limited to 'MediaBrowser.Model/Configuration/ServerConfiguration.cs') diff --git a/MediaBrowser.Model/Configuration/ServerConfiguration.cs b/MediaBrowser.Model/Configuration/ServerConfiguration.cs index abb50c5c1..2e7dc2e40 100644 --- a/MediaBrowser.Model/Configuration/ServerConfiguration.cs +++ b/MediaBrowser.Model/Configuration/ServerConfiguration.cs @@ -238,6 +238,103 @@ namespace MediaBrowser.Model.Configuration { new MetadataOptions(1, 1280) {ItemType = "Book"}, + new MetadataOptions(1, 1280) + { + ItemType = "Movie", + ImageOptions = new [] + { + new ImageOption + { + Limit = 3, + MinWidth = 1280, + Type = ImageType.Backdrop + }, + + // Don't download this by default as it's rarely used. + new ImageOption + { + Limit = 0, + Type = ImageType.Art + }, + + // Don't download this by default as it's rarely used. + new ImageOption + { + Limit = 0, + Type = ImageType.Disc + }, + + new ImageOption + { + Limit = 1, + Type = ImageType.Primary + }, + + new ImageOption + { + Limit = 1, + Type = ImageType.Banner + }, + + new ImageOption + { + Limit = 1, + Type = ImageType.Thumb + }, + + new ImageOption + { + Limit = 1, + Type = ImageType.Logo + } + } + }, + + new MetadataOptions(1, 1280) + { + ItemType = "Series", + ImageOptions = new [] + { + new ImageOption + { + Limit = 2, + MinWidth = 1280, + Type = ImageType.Backdrop + }, + + // Don't download this by default as it's rarely used. + new ImageOption + { + Limit = 0, + Type = ImageType.Art + }, + + new ImageOption + { + Limit = 1, + Type = ImageType.Primary + }, + + new ImageOption + { + Limit = 1, + Type = ImageType.Banner + }, + + new ImageOption + { + Limit = 1, + Type = ImageType.Thumb + }, + + new ImageOption + { + Limit = 1, + Type = ImageType.Logo + } + } + }, + new MetadataOptions(1, 1280) { ItemType = "MusicAlbum", -- cgit v1.2.3