Added donation plug in about box
[easylist] / mainform.cpp
index 9eac1d8..9ce30da 100755 (executable)
@@ -158,9 +158,14 @@ void MainForm::on_actionAbout_triggered()
 {\r
     qDebug() << "About";\r
     QString aboutText;\r
-    aboutText.append("EasyList (c) 2010\n\n");\r
-    aboutText.append("Created by Willem Liu.\n");\r
-    aboutText.append("Created with QtCreator.\n");\r
+    aboutText.append("<html>");\r
+    aboutText.append("EasyList (c) 2010-");\r
+    aboutText.append(QDate::currentDate().toString("yyyy"));\r
+    aboutText.append("<br><br>");\r
+    aboutText.append("Created by Willem Liu.<br>");\r
+    aboutText.append("Created with QtCreator.<br><br>");\r
+    aboutText.append("Please <a href='http://www.willemliu.nl/donate'>donate</a> any amount you deem this app is worthy to keep me going on.<br><br>");\r
+    aboutText.append("</html>");\r
     QMessageBox::about(this, "EasyList", aboutText);\r
 }\r
 \r