From 1e532d4f53bd65fc1dca3ec8cc6408f1b1efdc02 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Fri, 23 May 2014 19:58:28 -0400 Subject: factor device pixel ratio into downloaded image size --- MediaBrowser.Model/Configuration/ServerConfiguration.cs | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'MediaBrowser.Model/Configuration/ServerConfiguration.cs') diff --git a/MediaBrowser.Model/Configuration/ServerConfiguration.cs b/MediaBrowser.Model/Configuration/ServerConfiguration.cs index c19039439..4fe5c8bcf 100644 --- a/MediaBrowser.Model/Configuration/ServerConfiguration.cs +++ b/MediaBrowser.Model/Configuration/ServerConfiguration.cs @@ -170,8 +170,8 @@ namespace MediaBrowser.Model.Configuration public bool EnableTmdbUpdates { get; set; } public bool EnableFanArtUpdates { get; set; } - public bool RequireManualLoginForMobileApps { get; set; } - public bool RequireManualLoginForOtherApps { get; set; } + public bool RequireMobileManualLogin { get; set; } + public bool RequireNonMobileManualLogin { get; set; } /// /// Gets or sets the image saving convention. @@ -223,6 +223,9 @@ namespace MediaBrowser.Model.Configuration public SubtitleOptions SubtitleOptions { get; set; } + [Obsolete] + public string[] ManualLoginClients { get; set; } + /// /// Initializes a new instance of the class. /// @@ -263,6 +266,8 @@ namespace MediaBrowser.Model.Configuration SortRemoveCharacters = new[] { ",", "&", "-", "{", "}", "'" }; SortRemoveWords = new[] { "the", "a", "an" }; + ManualLoginClients = new string[] { }; + SeasonZeroDisplayName = "Specials"; LiveTvOptions = new LiveTvOptions(); -- cgit v1.2.3