From 74a8ca9c38d17e407c70aafe2cfd42b8b13d923e Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Thu, 9 Oct 2014 18:22:04 -0400 Subject: fix case sensitive file names --- MediaBrowser.Model/Configuration/ServerConfiguration.cs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'MediaBrowser.Model/Configuration/ServerConfiguration.cs') diff --git a/MediaBrowser.Model/Configuration/ServerConfiguration.cs b/MediaBrowser.Model/Configuration/ServerConfiguration.cs index 27818e5ed..1325a1833 100644 --- a/MediaBrowser.Model/Configuration/ServerConfiguration.cs +++ b/MediaBrowser.Model/Configuration/ServerConfiguration.cs @@ -1,6 +1,4 @@ using MediaBrowser.Model.Entities; -using MediaBrowser.Model.FileOrganization; -using MediaBrowser.Model.LiveTv; namespace MediaBrowser.Model.Configuration { @@ -15,6 +13,12 @@ namespace MediaBrowser.Model.Configuration /// true if [enable u pn p]; otherwise, false. public bool EnableUPnP { get; set; } + /// + /// Gets or sets the public mapped port. + /// + /// The public mapped port. + public int PublicPort { get; set; } + /// /// Gets or sets the HTTP server port number. /// @@ -167,20 +171,15 @@ namespace MediaBrowser.Model.Configuration public string UICulture { get; set; } - public DlnaOptions DlnaOptions { get; set; } - public double DownMixAudioBoost { get; set; } - public bool DefaultMetadataSettingsApplied { get; set; } - public PeopleMetadataOptions PeopleMetadataOptions { get; set; } + public bool FindInternetTrailers { get; set; } public string[] InsecureApps { get; set; } public bool SaveMetadataHidden { get; set; } - public bool FindInternetTrailers { get; set; } - /// /// Initializes a new instance of the class. /// @@ -189,6 +188,7 @@ namespace MediaBrowser.Model.Configuration { MediaEncodingQuality = EncodingQuality.Auto; ImageSavingConvention = ImageSavingConvention.Compatible; + PublicPort = 8096; HttpServerPortNumber = 8096; EnableDashboardResponseCaching = true; -- cgit v1.2.3