Install specific plugin version if requested

This commit is contained in:
crobibero
2020-08-14 08:54:21 -06:00
parent 42a9feb2f3
commit 5e6cdc8842
3 changed files with 18 additions and 9 deletions

View File

@@ -73,12 +73,14 @@ namespace MediaBrowser.Common.Updates
/// <param name="name">The name.</param>
/// <param name="guid">The guid of the plugin.</param>
/// <param name="minVersion">The minimum required version of the plugin.</param>
/// <param name="specificVersion">The specific version of the plugin to install.</param>
/// <returns>All compatible versions ordered from newest to oldest.</returns>
IEnumerable<InstallationInfo> GetCompatibleVersions(
IEnumerable<PackageInfo> availablePackages,
string name = null,
Guid guid = default,
Version minVersion = null);
Version minVersion = null,
Version specificVersion = null);
/// <summary>
/// Returns the available plugin updates.