Преглед на файлове

MaxAbi property removed.

Greenback преди 4 години
родител
ревизия
5c4fdaa253

+ 1 - 1
Emby.Server.Implementations/Updates/InstallationManager.cs

@@ -132,7 +132,7 @@ namespace Emby.Server.Implementations.Updates
                             targetAbi = minimumVersion;
                             targetAbi = minimumVersion;
                         }
                         }
 
 
-                        // Only show plugins that fall between targetAbi and maxAbi
+                        // Only show plugins that fall between targetAbi.
                         if (_applicationHost.ApplicationVersion >= targetAbi)
                         if (_applicationHost.ApplicationVersion >= targetAbi)
                         {
                         {
                             continue;
                             continue;

+ 0 - 5
MediaBrowser.Common/Plugins/PluginManifest.cs

@@ -51,11 +51,6 @@ namespace MediaBrowser.Common.Plugins
         /// </summary>
         /// </summary>
         public string TargetAbi { get; set; } = string.Empty;
         public string TargetAbi { get; set; } = string.Empty;
 
 
-        /// <summary>
-        /// Gets or sets the upper compatibility version for the plugin.
-        /// </summary>
-        public string MaxAbi { get; set; } = string.Empty;
-
         /// <summary>
         /// <summary>
         /// Gets or sets the timestamp of the plugin.
         /// Gets or sets the timestamp of the plugin.
         /// </summary>
         /// </summary>

+ 1 - 1
MediaBrowser.Model/Plugins/PluginStatus.cs

@@ -24,7 +24,7 @@ namespace MediaBrowser.Model.Plugins
         Disabled = -1,
         Disabled = -1,
 
 
         /// <summary>
         /// <summary>
-        /// This plugin does not meet the TargetAbi / MaxAbi requirements.
+        /// This plugin does not meet the TargetAbi requirements.
         /// </summary>
         /// </summary>
         NotSupported = -2,
         NotSupported = -2,