Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Plugin installer updates from Borys
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@9558 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
timlinux committed Oct 31, 2008
1 parent 8d5a24c commit 4e3a24f
Show file tree
Hide file tree
Showing 12 changed files with 281 additions and 177 deletions.
34 changes: 17 additions & 17 deletions python/plugins/plugin_installer/CMakeLists.txt
@@ -1,27 +1,27 @@
#TODO: Need to configure cmake to run pyrcc4 and pyuic4 as required when the resource
# file or the ui change
SET(INSTALLER_FILES
fetchingbase.py
fetchingbase.py
fetchingbase.ui
guibase.py
guibase.ui
guibase.py
guibase.ui
__init__.py
installer_data.py
installer_gui.py
installer_data.py
installer_gui.py
installer_plugin.py
installingbase.py
installingbase.ui
pluginerrorbase.py
pluginerrorbase.ui
plugin_installer.png
PluginInstaller.png
qgis-icon.png
repoConnected.png
installingbase.py
installingbase.ui
pluginerrorbase.py
pluginerrorbase.ui
plugin_installer.png
qgis-icon.png
repoConnected.png
repoDisabled.png
repositorybase.py
repositorybase.ui
repositorybase.py
repositorybase.ui
repoUnavailable.png
resources_rc.py
unzip.py
resources.qrc
resources_rc.py
unzip.py
)
INSTALL(FILES ${INSTALLER_FILES} DESTINATION ${QGIS_DATA_DIR}/python/plugins/plugin_installer)
4 changes: 2 additions & 2 deletions python/plugins/plugin_installer/__init__.py
@@ -1,5 +1,5 @@
"""
Copyright (C) 2008 Matthew Perry
Copyright (C) 2007-2008 Matthew Perry
Copyright (C) 2008 Borys Jurgiel
/***************************************************************************
* *
Expand All @@ -20,7 +20,7 @@ def author_name():
return "perrygeo, borysiasty"

def version():
return "Version 0.06.2"
return "Version 0.07.2"

def classFactory(iface):
from installer_plugin import InstallerPlugin
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/plugin_installer/guibase.py
Expand Up @@ -175,7 +175,7 @@ def setupUi(self, QgsPluginInstallerDialog):

def retranslateUi(self, QgsPluginInstallerDialog):
QgsPluginInstallerDialog.setWindowTitle(QtGui.QApplication.translate("QgsPluginInstallerDialog", "QGIS Python Plugin Installer", None, QtGui.QApplication.UnicodeUTF8))
QgsPluginInstallerDialog.setWhatsThis(QtGui.QApplication.translate("QgsPluginInstallerDialog", "QGIS Plugin Installer", None, QtGui.QApplication.UnicodeUTF8))
QgsPluginInstallerDialog.setWhatsThis(QtGui.QApplication.translate("QgsPluginInstallerDialog", "QGIS Python Plugin Installer", None, QtGui.QApplication.UnicodeUTF8))
self.label_5.setText(QtGui.QApplication.translate("QgsPluginInstallerDialog", "Filter:", None, QtGui.QApplication.UnicodeUTF8))
self.lineFilter.setToolTip(QtGui.QApplication.translate("QgsPluginInstallerDialog", "Display only plugins containing this word in their metadata", None, QtGui.QApplication.UnicodeUTF8))
self.lineFilter.setWhatsThis(QtGui.QApplication.translate("QgsPluginInstallerDialog", "Display only plugins containing this word in their metadata", None, QtGui.QApplication.UnicodeUTF8))
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/plugin_installer/guibase.ui
Expand Up @@ -17,7 +17,7 @@
<iconset resource="resources.qrc" >:/plugins/installer/qgis-icon.png</iconset>
</property>
<property name="whatsThis" >
<string>QGIS Plugin Installer</string>
<string>QGIS Python Plugin Installer</string>
</property>
<layout class="QGridLayout" >
<item row="0" column="0" >
Expand Down

0 comments on commit 4e3a24f

Please sign in to comment.