X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Faboutdlg.cpp;h=065e97e0e3abe58817e9ef4b6709f217be9c4984;hp=7a0e4637cac15a2dd734e74ebcac945c4a545e1d;hb=f7379184b7c0ae4e53d7470809f84e2ad3239ec1;hpb=f07a9e9b540da811583cb67ae5bb28a7b681baa5 diff --git a/src/qtui/aboutdlg.cpp b/src/qtui/aboutdlg.cpp index 7a0e4637..065e97e0 100644 --- a/src/qtui/aboutdlg.cpp +++ b/src/qtui/aboutdlg.cpp @@ -18,20 +18,27 @@ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ +#include + #include "aboutdlg.h" -#include "global.h" +#include "icon.h" +#include "iconloader.h" +#include "quassel.h" AboutDlg::AboutDlg(QWidget *parent) : QDialog(parent) { ui.setupUi(this); + ui.quasselLogo->setPixmap(DesktopIcon("quassel", IconLoader::SizeHuge)); - ui.versionLabel->setText(QString(tr("Version %1
Protocol version: %2
Built: %3 %4")).arg(Global::quasselVersion) - .arg(Global::protocolVersion) - .arg(Global::quasselBuildDate).arg(Global::quasselBuildTime)); + ui.versionLabel->setText(QString(tr("Version: %1
Protocol version: %2
Built: %3")) + .arg(Quassel::buildInfo().fancyVersionString) + .arg(Quassel::buildInfo().protocolVersion) + .arg(Quassel::buildInfo().buildDate)); ui.aboutTextBrowser->setHtml(about()); ui.authorTextBrowser->setHtml(authors()); ui.contributorTextBrowser->setHtml(contributors()); ui.thanksToTextBrowser->setHtml(thanksTo()); + setWindowIcon(Icon("quassel")); } QString AboutDlg::about() const { @@ -67,24 +74,30 @@ QString AboutDlg::authors() const { QString AboutDlg::contributors() const { QString res; - res = tr("We would like to thank the following contributors (in alphabetical order) and everybody we forgot to mention here:") + "
" + res = tr("We would like to thank the following contributors (in alphabetical order) and everybody we forgot to mention here:") + + QString::fromUtf8("
" "
" "
Daniel \"al\" Albers
German translation, various fixes
" "
Terje \"tan\" Andersen
Norwegian translation, documentation
" + "
Kevin \"KRF\" Funk
German translation
" "
Marco \"kaffeedoktor\" Genise
Ideas, hacking, motivation
" "
Sebastian \"seezer\" Goth
Various improvements and features
" + "
H. İbrahim \"igungor\" Güngör
Turkish translation
" + "
Edward \"Aides\" Toroshchin
Russian translation
" "
John \"nox-Hand\" Hand
Gorgeous application and tray icons
" "
Jonas \"Dante\" Heese
Project founder, various improvements
" + "
Paul \"Haudrauf\" Klumpp
Initial design and mainwindow layout
" "
Regis \"ZRegis\" Perrin
French translation
" - "
Diego \"Flameeyes\" Pettenò
Gentoo maintainer
" - "
Dennis \"devurandom\" Schridde
D-Bus notifications
" + "
Diego \"Flameeyes\" Pettenò
Gentoo maintainer, build system improvements
" + "
Dennis \"DevUrandom\" Schridde
D-Bus notifications
" "
Jussi \"jussi01\" Schultink
Tireless tester, {k|U}buntu nightly packages
" + "
Tim \"xAFFE\" Schumacher
Fixes and feedback
" "
Harald \"apachelogger\" Sitter
{k|U}buntu packager, motivator, promoter
" "
Daniel \"son\" Steinmetz
Early beta tester and bughunter (on Vista™!)
" "
Adam \"adamt\" Tulinius
Early beta tester and bughunter, Danish translation
" "
Pavel \"int\" Volkovitskiy
Early beta tester and bughunter
" "

" - "...and anybody else finding and reporting bugs, giving feedback, helping others and being part of the community!"; + "...and anybody else finding and reporting bugs, giving feedback, helping others and being part of the community!"); return res; } @@ -93,12 +106,14 @@ QString AboutDlg::thanksTo() const { QString res; res = tr("Special thanks goes to:
" "
" - "
John \"nox-Hand\" Hand
" + "
John \"nox\" Hand
" "
for great artwork and the Quassel logo/icon" "
The Oxygen Team
" "
for creating most of the other shiny icons you see throughout Quassel
" - "
Trolltech
" - "
for creating Qt and Qtopia, and for sponsoring development of Quasseltopia with Greenphones and more
" + "
Qt Software formerly known as Trolltech
" + "
for creating Qt and Qtopia, and for sponsoring development of QuasselTopia with Greenphones and more
" + "
Nokia
" + "
for keeping Qt alive, and for sponsoring development of Quassel Mobile with N810s
" ); return res;