Skip to content

Commit 9b5f5d9

Browse files
author
cfarmer
committed
adds ability to copy unique values to clipboard to pasting into other
software (i.e. excel); updates version number as well git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@10610 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 94fee93 commit 9b5f5d9

File tree

6 files changed

+708
-700
lines changed

6 files changed

+708
-700
lines changed

python/plugins/fTools/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def description():
2121
return "Tools for vector data analysis and management"
2222

2323
def version():
24-
return "0.5.9"
24+
return "0.5.10"
2525

2626
def qgisMinimumVersion():
2727
return "1.0"

python/plugins/fTools/doAbout.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def __init__(self, iface):
3232
QObject.connect(self.btnWeb, SIGNAL("clicked()"), self.openWeb)
3333
QObject.connect(self.btnHelp, SIGNAL("clicked()"), self.openHelp)
3434
self.fToolsLogo.setPixmap(QPixmap(":/icons/default/ftools_logo.png"))
35-
self.label_3.setText("fTools 0.5.8")
35+
self.label_3.setText("fTools 0.5.10")
3636
self.textEdit.setText(self.getText())
3737

3838
def getText(self):

0 commit comments

Comments
 (0)