X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Faboutdlg.cpp;h=c0e4d7541c7c191b8cf6dcb4f9cae5594156fa86;hp=a32ab6b8ca113756efafb4ffdb299fc58e4dd864;hb=480eab8daec4fb56a6886918c6a913cc197330f1;hpb=e668cbab8cd1f8d7e864bc19e8f68cfeac5023f5 diff --git a/src/qtui/aboutdlg.cpp b/src/qtui/aboutdlg.cpp index a32ab6b8..c0e4d754 100644 --- a/src/qtui/aboutdlg.cpp +++ b/src/qtui/aboutdlg.cpp @@ -18,18 +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("Version %1, Build ≥ %2 (%3)").arg(Global::quasselVersion).arg(Global::quasselBuild).arg(Global::quasselDate)); + 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 { @@ -56,7 +65,7 @@ QString AboutDlg::authors() const { "Project Founder, Lead Developer" "
Marcus \"EgS\" Eggenberger
egs@quassel-irc.org
" "Project Motivator, Lead Developer, Mac Maintainer
" - "
Alexander \"phon\" von Renteln
alex@phon.name
" + "
Alexander \"phon\" von Renteln
phon@quassel-irc.org
" "Developer, Windows Maintainer
" ""; @@ -67,16 +76,24 @@ 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:") + "
" "
" - "
Marco \"kaffeedoktor\" Genise
kaffeedoktor@quassel-irc.org
" - "Ideas, Hacking, Motivation
" - "
John \"nox-Hand\" Hand
Gorgeous Application and Tray Icons
" - "
Jonas \"Dante\" Heese
Project Founder, ebuilder
" - "
Diego \"Flameeyes\" Pettenò
Gentoo Maintainer
" - "
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
" - "
"; + "
Daniel \"al\" Albers
German translation, various fixes
" + "
Terje \"tan\" Andersen
Norwegian translation, documentation
" + "
Marco \"kaffeedoktor\" Genise
Ideas, hacking, motivation
" + "
Sebastian \"seezer\" Goth
Various improvements and features
" + "
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, 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!"; return res; }