X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Faboutdlg.cpp;h=5661ac93880fa3835668fcb870dce25a6be1bd75;hp=582fe9329f659b01327726fe0b36c43a33daf858;hb=620cd1aa35e05099b3f84400dd33afc207c98244;hpb=ef13687df76b292f36f330bed44cf9f35ac53632 diff --git a/src/qtui/aboutdlg.cpp b/src/qtui/aboutdlg.cpp index 582fe932..5661ac93 100644 --- a/src/qtui/aboutdlg.cpp +++ b/src/qtui/aboutdlg.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2015 by the Quassel Project * + * Copyright (C) 2005-2016 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -35,10 +35,10 @@ AboutDlg::AboutDlg(QWidget *parent) ui.setupUi(this); ui.quasselLogo->setPixmap(QIcon(":/icons/quassel-64.png").pixmap(64)); // don't let the icon theme affect our logo here - ui.versionLabel->setText(QString(tr("Version: %1
Protocol version: %2
Built: %3")) + ui.versionLabel->setText(QString(tr("Version: %1
Version date: %2
Protocol version: %3")) .arg(Quassel::buildInfo().fancyVersionString) - .arg(Quassel::buildInfo().protocolVersion) - .arg(Quassel::buildInfo().buildDate)); + .arg(Quassel::buildInfo().commitDate) + .arg(Quassel::buildInfo().protocolVersion)); ui.aboutTextBrowser->setHtml(about()); ui.authorTextBrowser->setHtml(authors()); ui.contributorTextBrowser->setHtml(contributors()); @@ -60,7 +60,7 @@ QString AboutDlg::about() const "Most icons are © by the Oxygen Team and used under the " "LGPL.

" "Please use http://bugs.quassel-irc.org to report bugs." - ).arg("2005-2015"); + ).arg("2005-2016"); return res; } @@ -74,7 +74,7 @@ QString AboutDlg::authors() const res.append("
" + person.prettyName() + "
"); if (!person.emailAddress().isEmpty()) res.append("" + person.emailAddress() + "
"); - res.append(person.task() + "
"); + res.append("" + person.task() + "
"); } res.append(""); return res; @@ -86,9 +86,9 @@ 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:") + "
"; for (const auto &person : _aboutData->credits()) { - res.append("
" + person.prettyName() + "
" + person.task() + "
"); + res.append("
" + person.prettyName() + "
" + person.task() + "
"); } - res.append("

" + tr("...and anybody else finding and reporting bugs, giving feedback, helping others and being part of the community!")); + res.append("" + tr("...and anybody else finding and reporting bugs, giving feedback, helping others and being part of the community!")); return res; } @@ -100,13 +100,13 @@ QString AboutDlg::thanksTo() const res = tr("Special thanks goes to:
" "
" "
 John \"nox\" Hand
" - "
for the original Quassel icon - The All-Seeing Eye" + "
for the original Quassel icon - The All-Seeing Eye
" "
 The Oxygen Team
" - "
for creating all the artwork you see throughout Quassel
" + "
for creating all the artwork you see throughout Quassel
" "
 Qt Software formerly known as Trolltech
" - "
for creating Qt and Qtopia, and for sponsoring development of QuasselTopia with Greenphones and more
" + "
for creating Qt and Qtopia, and for sponsoring development of QuasselTopia with Greenphones and more
" "
" - "
for keeping Qt alive, and for sponsoring development of Quassel Mobile with N810s
" + "
for sponsoring development of Quassel Mobile with N810s
" ); return res;