Skip to content

Commit d1f9236

Browse files
committed
Merge pull request #36 from clusterpy/tell_about_results
Improve message for results
2 parents e2028e1 + a622058 commit d1f9236

7 files changed

Lines changed: 10 additions & 11 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ a free and Open Source Geographic Information System.
2020
##Cite the plugin
2121
If you are interested in citing this plugin, you can use:
2222

23-
Duque, J.C.; Botero, Sergio (2014). Clusterpy QGIS plugin, Version 0.11-preview RiSE-group (Research in Spatial Economics). EAFIT University. http://www.rise-group.org.
23+
Duque, J.C.; Botero, Sergio (2014). Clusterpy QGIS plugin, Version 0.12-preview RiSE-group (Research in Spatial Economics). EAFIT University. http://www.rise-group.org.
2424

2525
Or this BibTeX entry:
2626
```
2727
@Manual{clusterpy-qgis-plugin,
2828
title = {Clusterpy QGIS plugin,
29-
{Version} 0.11-preview},
29+
{Version} 0.12-preview},
3030
author = {Duque, Juan C. and Botero, Sergio},
3131
organization = {RiSE-group (Research in Spatial Economics). EAFIT University.},
3232
address = {Colombia},

clusterpy_lightdialog.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -145,8 +145,8 @@ def finishRun(self, success, outputmsg):
145145
self.okbutton.setEnabled(True)
146146
if success:
147147
self.addToCanvas()
148-
self.showMessage("Clusterpy", "Success. File:" + outputmsg,
149-
duration=10 )
148+
output_msg = "Success. New column added to attribute table. " + outputmsg
149+
self.showMessage("Clusterpy", output_msg, duration=0 )
150150
else:
151151
self.showMessage("Clusterpy Error",
152152
outputmsg,
@@ -162,4 +162,3 @@ def showMessage(self, msgtype, msgtext, level=QgsMessageBar.INFO,
162162
duration=30):
163163
messagebar = self.iface.messageBar()
164164
messagebar.pushMessage(msgtype, msgtext, level=level, duration=duration)
165-

metadata.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
name=Clusterpy - Spatially constrained clustering
55
qgisMinimumVersion=2.0
66
description=Clusterpy plugin version for QGIS
7-
version=0.11-preview
7+
version=0.12-preview
88
author=RISE Group Universidad EAFIT
99
email=software@rise-group.org
1010

resources_rc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Resource object code
44
#
5-
# Created: Fri Jun 6 21:56:19 2014
5+
# Created: Sat Jun 7 01:10:19 2014
66
# by: The Resource Compiler for PyQt (Qt v4.8.6)
77
#
88
# WARNING! All changes made in this file will be lost!

uifiles/about.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ <h2>Research in Spatial Economics</h2>
99
<h3>Cite the Plugin</h3>
1010
If you are interested in citing this plugin, you can use:
1111
<p>
12-
Duque, J.C.; Botero, Sergio (2014). Clusterpy QGIS plugin, Version 0.11-preview RiSE-group (Research in Spatial Economics). EAFIT University. http://www.rise-group.org.
12+
Duque, J.C.; Botero, Sergio (2014). Clusterpy QGIS plugin, Version 0.12-preview RiSE-group (Research in Spatial Economics). EAFIT University. http://www.rise-group.org.
1313
</p>
1414
Or this BibTeX entry:
1515
<pre><code>
1616
@Manual{clusterpy-qgis-plugin,
1717
title = {Clusterpy QGIS plugin,
18-
{Version} 0.11-preview},
18+
{Version} 0.12-preview},
1919
author = {Duque, Juan C. and Botero, Sergio},
2020
organization = {RiSE-group (Research in Spatial Economics). EAFIT University.},
2121
address = {Colombia},

uifiles/ui_about.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Form implementation generated from reading ui file 'uifiles/ui_about.ui'
44
#
5-
# Created: Fri Jun 6 21:56:18 2014
5+
# Created: Sat Jun 7 01:10:19 2014
66
# by: PyQt4 UI code generator 4.10.4
77
#
88
# WARNING! All changes made in this file will be lost!

uifiles/ui_maxp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Form implementation generated from reading ui file 'uifiles/ui_maxp.ui'
44
#
5-
# Created: Fri Jun 6 21:56:18 2014
5+
# Created: Sat Jun 7 01:10:18 2014
66
# by: PyQt4 UI code generator 4.10.4
77
#
88
# WARNING! All changes made in this file will be lost!

0 commit comments

Comments
 (0)