diff options
author | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-11-23 13:55:42 +0100 |
---|---|---|
committer | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-11-23 13:55:42 +0100 |
commit | 600c649c3d611b44b7310d059b6b8755ccee3304 (patch) | |
tree | 3271690c4a9a9b73688ed3fe384a8787f1cad99e /lib | |
parent | Loading and unloading of plugins at runtime (diff) | |
download | smolbote-600c649c3d611b44b7310d059b6b8755ccee3304.tar.xz |
Update About Dialog text
Diffstat (limited to 'lib')
-rw-r--r-- | lib/about/aboutdialog.cpp | 17 | ||||
-rw-r--r-- | lib/about/aboutdialog.ui | 7 |
2 files changed, 19 insertions, 5 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>")); } diff --git a/lib/about/aboutdialog.ui b/lib/about/aboutdialog.ui index 13edfed..0af877d 100644 --- a/lib/about/aboutdialog.ui +++ b/lib/about/aboutdialog.ui @@ -81,8 +81,8 @@ <rect> <x>0</x> <y>0</y> - <width>96</width> - <height>30</height> + <width>406</width> + <height>450</height> </rect> </property> <attribute name="label"> @@ -125,6 +125,9 @@ <property name="wordWrap"> <bool>true</bool> </property> + <property name="openExternalLinks"> + <bool>true</bool> + </property> </widget> </item> </layout> |