X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Faboutdlg.cpp;h=0c55277eedc1018d376be3d1252b55fbbe58eef4;hp=db2d8f0436603dd3b7fe35b6f6489ada14613fdc;hb=3982589b93aa14c3cede148b8a5158b63055d65c;hpb=30c2dcaf2c892b14e7072057ced4d2fdaaceb9eb diff --git a/src/qtui/aboutdlg.cpp b/src/qtui/aboutdlg.cpp index db2d8f04..0c55277e 100644 --- a/src/qtui/aboutdlg.cpp +++ b/src/qtui/aboutdlg.cpp @@ -24,7 +24,8 @@ AboutDlg::AboutDlg(QWidget *parent) : QDialog(parent) { ui.setupUi(this); - ui.versionLabel->setText(QString("Version %1, Build ≥ %2 (%3)").arg(Global::quasselVersion).arg(Global::quasselBuild).arg(Global::quasselDate)); + ui.versionLabel->setText(QString("Version %1
Built: %2 %3").arg(Global::quasselVersion) + .arg(Global::quasselBuildDate).arg(Global::quasselBuildTime)); ui.aboutTextBrowser->setHtml(about()); ui.authorTextBrowser->setHtml(authors()); ui.contributorTextBrowser->setHtml(contributors()); @@ -52,11 +53,11 @@ QString AboutDlg::authors() const { QString res; res = tr("Quassel IRC is mainly developed by:") + "
" - "
Manuel \"Sputnick\" Nickschas
sput@quassel-irc.org
" - "Project Founder, Lead Developer

" - "
Marcus \"EgS\" Eggenberger
egs@quassel-irc.org
" - "Project Motivator, Lead Developer, Mac Maintainer

" - "
Alexander \"phon\" von Renteln
alex@phon.name
" + "
Manuel \"Sputnick\" Nickschas
sput@quassel-irc.org
" + "Project Founder, Lead Developer
" + "
Marcus \"EgS\" Eggenberger
egs@quassel-irc.org
" + "Project Motivator, Lead Developer, Mac Maintainer
" + "
Alexander \"phon\" von Renteln
alex@phon.name
" "Developer, Windows Maintainer
" "
"; @@ -67,12 +68,15 @@ 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

" - "
Jonas \"Dante\" Heese
Project Founder, ebuilder

" - "
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

" + "
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
" "
"; return res; @@ -82,9 +86,11 @@ QString AboutDlg::thanksTo() const { QString res; res = tr("Special thanks goes to:
" "
" - "
The Oxygen Team
" - "
for creating most of the shiny icons you see throughout Quassel

" - "
Trolltech
" + "
John \"nox-Hand\" 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
" );