aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Updates/IInstallationManager.cs
diff options
context:
space:
mode:
authorEric Reed <ebr@mediabrowser3.com>2013-06-27 15:08:57 -0400
committerEric Reed <ebr@mediabrowser3.com>2013-06-27 15:08:57 -0400
commit55bbfc2dcc6431c1d2b6320c47a600e98a7adc1d (patch)
tree3930ddb361a1a9ac746be8f42c17c81ea3ae87e6 /MediaBrowser.Controller/Updates/IInstallationManager.cs
parent30eafa61a547f8b484bc3501d2be6b05138f68e6 (diff)
Change update checks to use static file
Diffstat (limited to 'MediaBrowser.Controller/Updates/IInstallationManager.cs')
-rw-r--r--MediaBrowser.Controller/Updates/IInstallationManager.cs10
1 files changed, 9 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Updates/IInstallationManager.cs b/MediaBrowser.Controller/Updates/IInstallationManager.cs
index dc6aaf0c9..791150276 100644
--- a/MediaBrowser.Controller/Updates/IInstallationManager.cs
+++ b/MediaBrowser.Controller/Updates/IInstallationManager.cs
@@ -79,7 +79,7 @@ namespace MediaBrowser.Controller.Updates
PackageVersionInfo GetLatestCompatibleVersion(IEnumerable<PackageInfo> availablePackages, string name, PackageVersionClass classification = PackageVersionClass.Release);
/// <summary>
- /// Gets the available plugin updates.
+ /// Gets the available plugin updates including registration info.
/// </summary>
/// <param name="withAutoUpdateEnabled">if set to <c>true</c> [with auto update enabled].</param>
/// <param name="cancellationToken">The cancellation token.</param>
@@ -87,6 +87,14 @@ namespace MediaBrowser.Controller.Updates
Task<IEnumerable<PackageVersionInfo>> GetAvailablePluginUpdates(bool withAutoUpdateEnabled, CancellationToken cancellationToken);
/// <summary>
+ /// Gets the available plugin updates from a static resource (not including registration info).
+ /// </summary>
+ /// <param name="withAutoUpdateEnabled">if set to <c>true</c> [with auto update enabled].</param>
+ /// <param name="cancellationToken">The cancellation token.</param>
+ /// <returns>Task{IEnumerable{PackageVersionInfo}}.</returns>
+ Task<IEnumerable<PackageVersionInfo>> GetAvailablePluginUpdatesStatic(bool withAutoUpdateEnabled, CancellationToken cancellationToken);
+
+ /// <summary>
/// Installs the package.
/// </summary>
/// <param name="package">The package.</param>