From 864d00b8ec723c48ab148bf97ef4fbc93ef9942c Mon Sep 17 00:00:00 2001 From: Peter LaFosse Date: Thu, 15 Apr 2021 10:02:59 -0400 Subject: Add plugin status when dependencies are being installed --- python/pluginmanager.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'python/pluginmanager.py') diff --git a/python/pluginmanager.py b/python/pluginmanager.py index 1a3187af..15b98b55 100644 --- a/python/pluginmanager.py +++ b/python/pluginmanager.py @@ -234,6 +234,11 @@ class RepoPlugin(object): """Boolean status indicating that the plugin has updates available""" return core.BNPluginIsUpdateAvailable(self.handle) + @property + def dependencies_being_installed(self): + """Boolean status indicating that the plugin's dependencies are currently being installed""" + return core.BNPluginAreDependenciesBeingInstalled(self.handle) + @property def project_data(self): """Gets a json object of the project data field""" -- cgit v1.3.1