We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 1219b4b commit 16a15c9Copy full SHA for 16a15c9
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.9"
+ return "Version 1.0.10"
19
20
def description():
21
return "Downloads and installs QGIS python plugins"
python/plugins/plugin_installer/installer_data.py
@@ -62,8 +62,8 @@
62
except:
63
QGIS_VER = QGis.QGIS_VERSION
64
QGIS_MAJOR_VER = 1
65
- QGIS_14 = (QGIS_VER[2] > 3)
66
- QGIS_15 = (QGIS_VER[2] > 4)
+ QGIS_14 = (QGIS_VER[2] > "3")
+ QGIS_15 = (QGIS_VER[2] > "4")
67
68
69
0 commit comments