X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Faboutdlg.cpp;h=3b2fc3c48226eb5a2ae09f96fc24af9e2b0711f8;hp=32a23c3c03e756ed79e0de6dfa0c3f6445d80916;hb=8ed8ccb06e9662259a497357fdfe0253d4436707;hpb=42ed32344cdfcf2c4cd164ebd09782d7923b6547 diff --git a/src/qtui/aboutdlg.cpp b/src/qtui/aboutdlg.cpp index 32a23c3c..3b2fc3c4 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
phon@quassel-irc.org
" "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
" );