diff options
| author | crobibero <cody@robibe.ro> | 2020-08-14 08:54:21 -0600 |
|---|---|---|
| committer | crobibero <cody@robibe.ro> | 2020-08-14 08:54:21 -0600 |
| commit | 5e6cdc8842c3c81eb7e0363e6d36fac6630304e1 (patch) | |
| tree | b674b5b977e847c0b7f9bd2d573e727e031f7437 /MediaBrowser.Common/Updates/IInstallationManager.cs | |
| parent | 42a9feb2f3b6bb38144779a5b90e0e2334fb40e2 (diff) | |
Install specific plugin version if requested
Diffstat (limited to 'MediaBrowser.Common/Updates/IInstallationManager.cs')
| -rw-r--r-- | MediaBrowser.Common/Updates/IInstallationManager.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/MediaBrowser.Common/Updates/IInstallationManager.cs b/MediaBrowser.Common/Updates/IInstallationManager.cs index 4b4030bc2..169aca2ca 100644 --- a/MediaBrowser.Common/Updates/IInstallationManager.cs +++ b/MediaBrowser.Common/Updates/IInstallationManager.cs @@ -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. |
