Browse Source

fixes #834 - Change view of TV Shows or Interface for plugins

Luke Pulverenti 11 years ago
parent
commit
ec2c34e944

+ 1 - 0
MediaBrowser.Controller/MediaBrowser.Controller.csproj

@@ -232,6 +232,7 @@
     <Compile Include="Providers\IMetadataService.cs" />
     <Compile Include="Providers\IRemoteMetadataProvider.cs" />
     <Compile Include="Providers\VideoContentType.cs" />
+    <Compile Include="RelatedMedia\IRelatedMediaProvider.cs" />
     <Compile Include="Security\IEncryptionManager.cs" />
     <Compile Include="Subtitles\ISubtitleManager.cs" />
     <Compile Include="Subtitles\ISubtitleProvider.cs" />

+ 17 - 0
MediaBrowser.Controller/RelatedMedia/IRelatedMediaProvider.cs

@@ -0,0 +1,17 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace MediaBrowser.Controller.RelatedMedia
+{
+    public interface IRelatedMediaProvider
+    {
+        /// <summary>
+        /// Gets the name.
+        /// </summary>
+        /// <value>The name.</value>
+        string Name { get; }
+    }
+}

+ 0 - 1
MediaBrowser.Server.Implementations/LiveTv/LiveTvManager.cs

@@ -16,7 +16,6 @@ using MediaBrowser.Model.Entities;
 using MediaBrowser.Model.LiveTv;
 using MediaBrowser.Model.Logging;
 using MediaBrowser.Model.Querying;
-using MediaBrowser.Model.Serialization;
 using System;
 using System.Collections.Concurrent;
 using System.Collections.Generic;

+ 2 - 1
MediaBrowser.Server.Implementations/Localization/Server/server.json

@@ -860,5 +860,6 @@
 	"LabelLoginDisclaimer": "Login disclaimer:",
 	"LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.",
 	"LabelAutomaticallyDonate": "Automatically donate this amount each month",
-	"LabelAutomaticallyDonateHelp": "You can cancel at any time via your PayPal account."
+	"LabelAutomaticallyDonateHelp": "You can cancel at any time via your PayPal account.",
+	"OptionList": "List"
 }