Skip to content

Commit 4345ff5

Browse files
author
borysiasty
committed
Plugin Installer minor fixes
git-svn-id: http://svn.osgeo.org/qgis/trunk@10818 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent a6ce56e commit 4345ff5

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

python/plugins/plugin_installer/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def name():
1414
return "Plugin Installer"
1515

1616
def version():
17-
return "Version 1.0"
17+
return "Version 1.0.1"
1818

1919
def description():
2020
return "Downloads and installs QGIS python plugins"

python/plugins/plugin_installer/installer_data.py

+1
Original file line numberDiff line numberDiff line change
@@ -701,6 +701,7 @@ def rebuild(self):
701701
self.mPlugins[key]["status"] = "upgradeable"
702702
else:
703703
self.mPlugins[key]["status"] = "newer"
704+
self.markNews()
704705

705706

706707
# ----------------------------------------- #

python/plugins/plugin_installer/installer_plugin.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def initGui(self):
8888
repositories.setRepositoryData(key,"state",3)
8989

9090
for i in plugins.obsoletePlugins:
91-
QMessageBox.warning(self.mainWindow(), QCoreApplication.translate("QgsPluginInstaller","QGIS Plugin Conflict:")+" "+plugins.localCache[i]["name"], QCoreApplication.translate("QgsPluginInstaller","The Plugin Installer has detected an obsolete plugin which masks a newer version shipped with this QGIS version. Probably it is a remainder of an older QGIS installation. Please use the Plugin Installer to remove it in order to unmask the instance shipped with this version of QGIS."))
91+
QMessageBox.warning(self.mainWindow(), QCoreApplication.translate("QgsPluginInstaller","QGIS Plugin Conflict:")+" "+plugins.localCache[i]["name"], QCoreApplication.translate("QgsPluginInstaller","The Plugin Installer has detected an obsolete plugin which masks a newer version shipped with this QGIS version. This is likely due to files associated with a previous installation of QGIS. Please use the Plugin Installer to remove that older plugin in order to unmask the newer version shipped with this copy of QGIS."))
9292

9393

9494
# ----------------------------------------- #

0 commit comments

Comments
 (0)