We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7aae40c commit 9d2da50Copy full SHA for 9d2da50
python/plugins/plugin_installer/__init__.py
@@ -15,7 +15,7 @@ def name():
15
return "Plugin Installer"
16
17
def version():
18
- return "Version 1.0.10"
+ return "Version 1.0.11"
19
20
def description():
21
return "Downloads and installs QGIS python plugins"
python/plugins/plugin_installer/installer_plugin.py
@@ -119,6 +119,9 @@ def checkingDone(self):
119
# ----------------------------------------- #
120
def unload(self):
121
""" remove the menu item and notify label """
122
+ # kill pending http requests
123
+ for key in repositories.all():
124
+ repositories.killConnection(key)
125
if QGIS_MAJOR_VER: # new plugin API
126
self.iface.pluginMenu().removeAction(self.action)
127
else: # old plugin API
0 commit comments