aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGreenback <jimcartlidge@yahoo.co.uk>2020-12-18 21:05:27 +0000
committerGreenback <jimcartlidge@yahoo.co.uk>2020-12-18 21:05:27 +0000
commit5c4fdaa2530cd1b0b9dc88352d92c546ce176430 (patch)
tree92ff1b0895b059320b16ac444f62050c7baa01ff
parent5d748c0e9f1ad87bece090934c5da6c4edacb8f7 (diff)
MaxAbi property removed.
-rw-r--r--Emby.Server.Implementations/Updates/InstallationManager.cs2
-rw-r--r--MediaBrowser.Common/Plugins/PluginManifest.cs5
-rw-r--r--MediaBrowser.Model/Plugins/PluginStatus.cs2
3 files changed, 2 insertions, 7 deletions
diff --git a/Emby.Server.Implementations/Updates/InstallationManager.cs b/Emby.Server.Implementations/Updates/InstallationManager.cs
index 267a33875..630ede667 100644
--- a/Emby.Server.Implementations/Updates/InstallationManager.cs
+++ b/Emby.Server.Implementations/Updates/InstallationManager.cs
@@ -132,7 +132,7 @@ namespace Emby.Server.Implementations.Updates
targetAbi = minimumVersion;
}
- // Only show plugins that fall between targetAbi and maxAbi
+ // Only show plugins that fall between targetAbi.
if (_applicationHost.ApplicationVersion >= targetAbi)
{
continue;
diff --git a/MediaBrowser.Common/Plugins/PluginManifest.cs b/MediaBrowser.Common/Plugins/PluginManifest.cs
index 755ccafda..9c45e5d95 100644
--- a/MediaBrowser.Common/Plugins/PluginManifest.cs
+++ b/MediaBrowser.Common/Plugins/PluginManifest.cs
@@ -52,11 +52,6 @@ namespace MediaBrowser.Common.Plugins
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>
/// Gets or sets the timestamp of the plugin.
/// </summary>
public DateTime Timestamp { get; set; }
diff --git a/MediaBrowser.Model/Plugins/PluginStatus.cs b/MediaBrowser.Model/Plugins/PluginStatus.cs
index 3ea05174f..4b9b9bbee 100644
--- a/MediaBrowser.Model/Plugins/PluginStatus.cs
+++ b/MediaBrowser.Model/Plugins/PluginStatus.cs
@@ -24,7 +24,7 @@ namespace MediaBrowser.Model.Plugins
Disabled = -1,
/// <summary>
- /// This plugin does not meet the TargetAbi / MaxAbi requirements.
+ /// This plugin does not meet the TargetAbi requirements.
/// </summary>
NotSupported = -2,