/*************************************************************************** * Copyright (C) 2005-08 by the Quassel IRC Team * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) version 3. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ #include "aboutdlg.h" #include "global.h" AboutDlg::AboutDlg(QWidget *parent) : QDialog(parent) { ui.setupUi(this); 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.aboutTextBrowser->setHtml(about()); ui.authorTextBrowser->setHtml(authors()); ui.contributorTextBrowser->setHtml(contributors()); ui.thanksToTextBrowser->setHtml(thanksTo()); } QString AboutDlg::about() const { QString res; res = tr("A modern, distributed IRC Client

" "©2005-2008 by the Quassel Project
" "http://quassel-irc.org
" "#quassel on Freenode

" "Quassel IRC is dual-licensed under GPLv2 and " "GPLv3.
" "Most icons are © by the Oxygen Team and used under the " "LGPL.

" "Please use http://bugs.quassel-irc.org to report bugs." ); return res; } 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
phon@quassel-irc.org
" "Developer, Windows Maintainer
" "
"; return res; } 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:") + "
" "
" "
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
" "
Regis \"ZRegis\" Perrin
French translation
" "
Diego \"Flameeyes\" Pettenò
Gentoo maintainer
" "
Dennis \"devurandom\" Schridde
D-Bus notifications
" "
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; } QString AboutDlg::thanksTo() const { QString res; res = tr("Special thanks goes to:
" "
" "
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
" ); return res; }