File tree Expand file tree Collapse file tree 12 files changed +41
-139
lines changed Expand file tree Collapse file tree 12 files changed +41
-139
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ PYQT4_ADD_RESOURCES(PYRC_FILES resources.qrc)
99SET (INSTALLER_FILES ${INSTALLER_FILES} ${PYUI_FILES} ${PYRC_FILES} )
1010
1111#INSTALL(FILES ${INSTALLER_FILES} DESTINATION ${QGIS_DATA_DIR}/python/plugins/GdalTools)
12- PLUGIN_INSTALL(GdalTools . ${INSTALLER_FILES} __init__.py)
12+ PLUGIN_INSTALL(GdalTools . ${INSTALLER_FILES} __init__.py metadata.txt )
1313
1414ADD_SUBDIRECTORY (tools)
1515ADD_SUBDIRECTORY (icons)
Original file line number Diff line number Diff line change 1717 ***************************************************************************/
1818 This script initializes the plugin, making it known to QGIS.
1919"""
20- def name ():
21- return "GdalTools"
22- def description ():
23- return "Integrate gdal tools into qgis"
24- def category ():
25- return "Raster"
26- def version ():
27- return "Version 1.2.29"
28- def qgisMinimumVersion ():
29- return "1.0"
30- def icon ():
31- return "icons/raster-info.png"
3220def classFactory (iface ):
3321 # load GdalTools class from file GdalTools
3422 from GdalTools import GdalTools
Original file line number Diff line number Diff line change @@ -8,5 +8,5 @@ FILE(GLOB UI_FILES ui/*.ui)
88PYQT4_WRAP_UI(PYUI_FILES ${UI_FILES} )
99PYQT4_ADD_RESOURCES(PYRC_FILES resources.qrc)
1010
11- PLUGIN_INSTALL(db_manager . ${OTHER_FILES} ${PY_FILES} ${PYRC_FILES} )
11+ PLUGIN_INSTALL(db_manager . ${OTHER_FILES} ${PY_FILES} ${PYRC_FILES} metadata.txt)
1212PLUGIN_INSTALL(db_manager ui ${PYUI_FILES} ui/__init__.py)
Original file line number Diff line number Diff line change 2020 ***************************************************************************/
2121"""
2222
23- def name ():
24- return "DB Manager"
25-
26- def description ():
27- return "Manage your databases within QGis"
28-
29- def version ():
30- return "0.1.20"
31-
32- def qgisMinimumVersion ():
33- return "1.5.0"
34-
35- def icon ():
36- return "icons/dbmanager.png"
37-
38- def authorName ():
39- return "Giuseppe Sucameli"
40-
4123def classFactory (iface ):
4224 from .db_manager_plugin import DBManagerPlugin
4325 return DBManagerPlugin (iface )
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ PYQT4_ADD_RESOURCES(PYRC_FILES resources.qrc)
55
66SET (INSTALLER_FILES ${INSTALLER_FILES} ${PYUI_FILES} ${PYRC_FILES} )
77
8- PLUGIN_INSTALL(fTools . ${INSTALLER_FILES} __init__.py)
8+ PLUGIN_INSTALL(fTools . ${INSTALLER_FILES} __init__.py metadata.txt )
99
1010ADD_SUBDIRECTORY (tools)
1111ADD_SUBDIRECTORY (icons)
Original file line number Diff line number Diff line change 2828#
2929#---------------------------------------------------------------------
3030
31- def name ():
32- return "fTools"
33-
34- def description ():
35- return "Tools for vector data analysis and management"
36-
37- def category ():
38- return "Vector"
39-
40- def version ():
41- return "0.6.2"
42-
43- def qgisMinimumVersion ():
44- return "1.4"
45-
46- def icon ():
47- return "icons/logo_small.png"
48-
49- def authorName ():
50- return "Carson J. Q. Farmer"
51-
5231def classFactory ( iface ):
5332 from .fTools import fToolsPlugin
5433 return fToolsPlugin ( iface )
Original file line number Diff line number Diff line change 11SET (INSTALLER_FILES
2+ metadata.txt
23 mapserver_export.png
34 __init__.py
45 mapserverexportdialog.py
Original file line number Diff line number Diff line change 1919 This script initializes the plugin, making it known to QGIS.
2020"""
2121
22- def name ():
23- return "MapServer Export"
24- def description ():
25- return "Export a saved QGIS project file to a MapServer map file"
26- def category ():
27- return "Web"
28- def version ():
29- return "Version 0.4.4"
30- def qgisMinimumVersion ():
31- return "1.0"
32- def icon ():
33- return "mapserver_export.png"
34- def authorName ():
35- return "Gary E. Sherman"
3622def classFactory (iface ):
3723 # load MapServerExport class from file mapserverexport.py
3824 from mapserverexport import MapServerExport
Original file line number Diff line number Diff line change 11SET (INSTALLER_FILES
2+ metadata.txt
23__init__.py
34installer_data.py
45installer_gui.py
Original file line number Diff line number Diff line change 1111 * *
1212 ***************************************************************************/
1313"""
14- def name ():
15- return "Plugin Installer"
16-
17- def version ():
18- return "Version 1.2.1"
19-
20- def description ():
21- return "Downloads and installs QGIS python plugins"
22-
23- def category ():
24- return "Plugins"
25-
26- def qgisMinimumVersion ():
27- return "1.0"
28-
29- def icon ():
30- import resources_rc
31- return ":/plugins/installer/plugin_installer.png"
32-
33- def authorName ():
34- return "Matthew Perry, Borys Jurgiel"
35-
36- def homepage ():
37- return "http://bwj.aster.net.pl/qgis/"
3814
3915def classFactory (iface ):
4016 from installer_plugin import InstallerPlugin
You can’t perform that action at this time.
0 commit comments