MaxAbi property removed.

This commit is contained in:
Greenback 2020-12-18 21:05:27 +00:00
parent 5d748c0e9f
commit 5c4fdaa253
3 changed files with 2 additions and 7 deletions

View File

@ -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;

View File

@ -51,11 +51,6 @@ namespace MediaBrowser.Common.Plugins
/// </summary>
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>

View File

@ -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,