We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba368c0 commit 0adff9dCopy full SHA for 0adff9d
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