diff options
| author | Anthony Lavado <anthony@lavado.ca> | 2020-09-07 19:39:55 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-07 19:39:55 -0400 |
| commit | cc6b03296ac5fea4c90d8e36f00a599c45d43a8d (patch) | |
| tree | 4128f2bbdf5bccb1929eb0638b67920b3a8e6903 /MediaBrowser.Common/Updates/IInstallationManager.cs | |
| parent | 3aee3380668082200726dc117c8f5960a5d783bf (diff) | |
| parent | b035a642d27ea4b0a22e9a539c641a055bac056b (diff) | |
Merge pull request #3899 from crobibero/plugin-install
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. |
