aboutsummaryrefslogtreecommitdiff
path: root/lib/about/aboutdialog.cpp
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2018-11-23 13:55:42 +0100
committerAqua-sama <aqua@iserlohn-fortress.net>2018-11-23 13:55:42 +0100
commit600c649c3d611b44b7310d059b6b8755ccee3304 (patch)
tree3271690c4a9a9b73688ed3fe384a8787f1cad99e /lib/about/aboutdialog.cpp
parentLoading and unloading of plugins at runtime (diff)
downloadsmolbote-600c649c3d611b44b7310d059b6b8755ccee3304.tar.xz
Update About Dialog text
Diffstat (limited to 'lib/about/aboutdialog.cpp')
-rw-r--r--lib/about/aboutdialog.cpp17
1 files changed, 14 insertions, 3 deletions
diff --git a/lib/about/aboutdialog.cpp b/lib/about/aboutdialog.cpp
index 6434d68..12210dc 100644
--- a/lib/about/aboutdialog.cpp
+++ b/lib/about/aboutdialog.cpp
@@ -9,6 +9,7 @@
#include "aboutdialog.h"
#include "ui_aboutdialog.h"
#include <version.h>
+#include "config.h"
// compiler
// clang also defines __GNUC__, so we need to check for clang first
@@ -33,8 +34,7 @@ AboutDialog::AboutDialog(QWidget *parent)
ui->aboutLabel->setText(tr("<h2>smolbote %1</h2>"
"<p><i>yet another no-frills browser</i></p>"
- "<p>This program is free software, see <i>License</i> for more information.</p>"
- "<p>This program uses free software: Qt5, Boost</p>")
+ "<p>This program is free software, see <i>License</i> for more information.</p>")
.arg(qApp->applicationVersion()));
ui->licenseLabel->setText(tr("<p>Copyright 2017 - 2018 aqua</p>"
@@ -50,7 +50,18 @@ AboutDialog::AboutDialog(QWidget *parent)
"<p>You can read the full terms of the license on <a href='https://www.gnu.org/licenses/gpl-3.0.en.html'>the GNU website</a>.</p>"));
ui->detailsLabel->setText(tr("<p>Version " poi_Version "</p>"
- "<p>Compiled with " compiler "</p>"));
+ "<p>Compiled with " compiler "</p>"
+ "<p>Libraries: <ul>"
+ "<li><a href='https://www.qt.io/'>Qt5</a> " QT_VERSION_STR "</li>"
+ "<li><a href='https://www.boost.org/'>Boost</a></li>"
+ "<li><a href='https://github.com/itay-grudev/SingleApplication'>SingleApplication</a></li>"
+#ifdef CONFIG_USEPLASMA
+ "<li><a href='https://community.kde.org/Frameworks'>KDE Frameworks</a></li>"
+#endif
+#ifdef CONFIG_USEBREAKPAD
+ "<li><a href='https://chromium.googlesource.com/breakpad/breakpad'>Breakpad</a></li>"
+#endif
+ "</ul></p>"));
}