diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-05-23 19:58:28 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-05-23 19:58:28 -0400 |
| commit | 1e532d4f53bd65fc1dca3ec8cc6408f1b1efdc02 (patch) | |
| tree | e02408b59e4fc1a058f6e31e996c5a954d0f1448 /MediaBrowser.Model/Configuration/ServerConfiguration.cs | |
| parent | 40836f194bc43b6d03277d70e6fb3c79732132a8 (diff) | |
factor device pixel ratio into downloaded image size
Diffstat (limited to 'MediaBrowser.Model/Configuration/ServerConfiguration.cs')
| -rw-r--r-- | MediaBrowser.Model/Configuration/ServerConfiguration.cs | 9 |
1 files changed, 7 insertions, 2 deletions
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; } /// <summary> /// 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; } + /// <summary> /// Initializes a new instance of the <see cref="ServerConfiguration" /> class. /// </summary> @@ -263,6 +266,8 @@ namespace MediaBrowser.Model.Configuration SortRemoveCharacters = new[] { ",", "&", "-", "{", "}", "'" }; SortRemoveWords = new[] { "the", "a", "an" }; + ManualLoginClients = new string[] { }; + SeasonZeroDisplayName = "Specials"; LiveTvOptions = new LiveTvOptions(); |
