Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Plugin Installer minor fixes
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@10818 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
borysiasty committed May 18, 2009
1 parent 5e15a9f commit d7e41ae
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/plugins/plugin_installer/__init__.py
Expand Up @@ -14,7 +14,7 @@ def name():
return "Plugin Installer"

def version():
return "Version 1.0"
return "Version 1.0.1"

def description():
return "Downloads and installs QGIS python plugins"
Expand Down
1 change: 1 addition & 0 deletions python/plugins/plugin_installer/installer_data.py
Expand Up @@ -701,6 +701,7 @@ def rebuild(self):
self.mPlugins[key]["status"] = "upgradeable"
else:
self.mPlugins[key]["status"] = "newer"
self.markNews()


# ----------------------------------------- #
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/plugin_installer/installer_plugin.py
Expand Up @@ -88,7 +88,7 @@ def initGui(self):
repositories.setRepositoryData(key,"state",3)

for i in plugins.obsoletePlugins:
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."))
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."))


# ----------------------------------------- #
Expand Down

0 comments on commit d7e41ae

Please sign in to comment.