Skip to content

Commit 4e3a24f

Browse files
author
timlinux
committedOct 31, 2008
Plugin installer updates from Borys
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@9558 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 8d5a24c commit 4e3a24f

File tree

12 files changed

+281
-177
lines changed

12 files changed

+281
-177
lines changed
 
Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
#TODO: Need to configure cmake to run pyrcc4 and pyuic4 as required when the resource
22
# file or the ui change
33
SET(INSTALLER_FILES
4-
fetchingbase.py
4+
fetchingbase.py
55
fetchingbase.ui
6-
guibase.py
7-
guibase.ui
6+
guibase.py
7+
guibase.ui
88
__init__.py
9-
installer_data.py
10-
installer_gui.py
9+
installer_data.py
10+
installer_gui.py
1111
installer_plugin.py
12-
installingbase.py
13-
installingbase.ui
14-
pluginerrorbase.py
15-
pluginerrorbase.ui
16-
plugin_installer.png
17-
PluginInstaller.png
18-
qgis-icon.png
19-
repoConnected.png
12+
installingbase.py
13+
installingbase.ui
14+
pluginerrorbase.py
15+
pluginerrorbase.ui
16+
plugin_installer.png
17+
qgis-icon.png
18+
repoConnected.png
2019
repoDisabled.png
21-
repositorybase.py
22-
repositorybase.ui
20+
repositorybase.py
21+
repositorybase.ui
2322
repoUnavailable.png
24-
resources_rc.py
25-
unzip.py
23+
resources.qrc
24+
resources_rc.py
25+
unzip.py
2626
)
2727
INSTALL(FILES ${INSTALLER_FILES} DESTINATION ${QGIS_DATA_DIR}/python/plugins/plugin_installer)

‎python/plugins/plugin_installer/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Copyright (C) 2008 Matthew Perry
2+
Copyright (C) 2007-2008 Matthew Perry
33
Copyright (C) 2008 Borys Jurgiel
44
/***************************************************************************
55
* *
@@ -20,7 +20,7 @@ def author_name():
2020
return "perrygeo, borysiasty"
2121

2222
def version():
23-
return "Version 0.06.2"
23+
return "Version 0.07.2"
2424

2525
def classFactory(iface):
2626
from installer_plugin import InstallerPlugin

‎python/plugins/plugin_installer/guibase.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ def setupUi(self, QgsPluginInstallerDialog):
175175

176176
def retranslateUi(self, QgsPluginInstallerDialog):
177177
QgsPluginInstallerDialog.setWindowTitle(QtGui.QApplication.translate("QgsPluginInstallerDialog", "QGIS Python Plugin Installer", None, QtGui.QApplication.UnicodeUTF8))
178-
QgsPluginInstallerDialog.setWhatsThis(QtGui.QApplication.translate("QgsPluginInstallerDialog", "QGIS Plugin Installer", None, QtGui.QApplication.UnicodeUTF8))
178+
QgsPluginInstallerDialog.setWhatsThis(QtGui.QApplication.translate("QgsPluginInstallerDialog", "QGIS Python Plugin Installer", None, QtGui.QApplication.UnicodeUTF8))
179179
self.label_5.setText(QtGui.QApplication.translate("QgsPluginInstallerDialog", "Filter:", None, QtGui.QApplication.UnicodeUTF8))
180180
self.lineFilter.setToolTip(QtGui.QApplication.translate("QgsPluginInstallerDialog", "Display only plugins containing this word in their metadata", None, QtGui.QApplication.UnicodeUTF8))
181181
self.lineFilter.setWhatsThis(QtGui.QApplication.translate("QgsPluginInstallerDialog", "Display only plugins containing this word in their metadata", None, QtGui.QApplication.UnicodeUTF8))

‎python/plugins/plugin_installer/guibase.ui

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<iconset resource="resources.qrc" >:/plugins/installer/qgis-icon.png</iconset>
1818
</property>
1919
<property name="whatsThis" >
20-
<string>QGIS Plugin Installer</string>
20+
<string>QGIS Python Plugin Installer</string>
2121
</property>
2222
<layout class="QGridLayout" >
2323
<item row="0" column="0" >

0 commit comments

Comments
 (0)
Please sign in to comment.