common: Unify Date/Time formatting, UTC offset
[quassel.git] / src / qtui / aboutdlg.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-2018 by the Quassel Project                        *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) version 3.                                           *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
19  ***************************************************************************/
20
21 #include "aboutdlg.h"
22
23 #include <QDateTime>
24 #include <QPixmap>
25
26 #include "aboutdata.h"
27 #include "icon.h"
28 #include "quassel.h"
29 #include "util.h"
30
31 AboutDlg::AboutDlg(QWidget *parent)
32     : QDialog(parent)
33     , _aboutData(new AboutData(this))
34 {
35     AboutData::setQuasselPersons(_aboutData);
36
37     ui.setupUi(this);
38     ui.quasselLogo->setPixmap(QPixmap{":/pics/quassel-64.svg"});  // don't let the icon theme affect our logo here
39
40     QString versionDate;
41     if (Quassel::buildInfo().commitDate.isEmpty()) {
42         // This shouldn't happen, but sometimes the packaging environment cannot set a proper
43         // date/time.  Add a fallback just in case.
44         versionDate = QString("<i>%1</i>").arg(tr("Unknown date"));
45     }
46     else {
47         versionDate = tryFormatUnixEpoch(Quassel::buildInfo().commitDate,
48                                          Qt::DateFormat::DefaultLocaleShortDate);
49     }
50     ui.versionLabel->setText(QString(tr("<b>Version:</b> %1<br>"
51                                         "<b>Version date:</b> %2<br>"
52                                         "<b>Protocol version:</b> %3"))
53                              .arg(Quassel::buildInfo().fancyVersionString)
54                              .arg(versionDate)
55                              .arg(Quassel::buildInfo().protocolVersion));
56     ui.aboutTextBrowser->setHtml(about());
57     ui.authorTextBrowser->setHtml(authors());
58     ui.contributorTextBrowser->setHtml(contributors());
59     ui.thanksToTextBrowser->setHtml(thanksTo());
60
61     setWindowIcon(icon::get("quassel"));
62 }
63
64
65 QString AboutDlg::about() const
66 {
67     QString res {tr("<b>A modern, distributed IRC Client</b><br><br>"
68              "&copy;%1 by the Quassel Project<br>"
69              "<a href=\"https://quassel-irc.org\">https://quassel-irc.org</a><br>"
70              "<a href=\"irc://irc.freenode.net/quassel\">#quassel</a> on <a href=\"https://www.freenode.net\">Freenode</a><br><br>"
71              "Quassel IRC is dual-licensed under <a href=\"https://www.gnu.org/licenses/gpl-2.0.txt\">GPLv2</a> and "
72                  "<a href=\"https://www.gnu.org/licenses/gpl-3.0.txt\">GPLv3</a>.<br>"
73              "<a href=\"https://api.kde.org/frameworks/breeze-icons/html\">Breeze icon theme</a> &copy; Uri Herrera and others, licensed under the "
74                  "<a href=\"https://github.com/KDE/breeze-icons/blob/21ffd9b/COPYING-ICONS\">LGPLv3</a>.<br>"
75              "<a href=\"https://api.kde.org/frameworks/oxygen-icons5/html\">Oxygen icon theme</a> &copy; Nuno Pinheiro and others, licensed under the "
76                  "<a href=\"https://github.com/KDE/oxygen-icons/blob/master/COPYING\">LGPLv3</a>.<br><br>"
77              "Please use <a href=\"https://bugs.quassel-irc.org\">https://bugs.quassel-irc.org</a> to report bugs."
78         ).arg("2005-2018")
79     };
80
81     return res;
82 }
83
84
85 QString AboutDlg::authors() const
86 {
87     QString res {tr("Quassel IRC is mainly developed by:") + "<dl>"};
88     for (auto &&person : _aboutData->authors()) {
89         res.append("<dt><b>" + person.prettyName() + "</b></dt><dd>");
90         if (!person.emailAddress().isEmpty())
91             res.append("<a href=\"mailto:" + person.emailAddress() + "\">" + person.emailAddress() + "</a><br>");
92         res.append("<i>" + person.task() + "</i><br></dd>");
93     }
94     res.append("</dl>");
95     return res;
96 }
97
98
99 QString AboutDlg::contributors() const
100 {
101     QString res {tr("We would like to thank the following contributors (in alphabetical order) and everybody we forgot to mention here:") + "<br><dl>"};
102     for (auto &&person : _aboutData->credits()) {
103         res.append("<dt><b>" + person.prettyName() + "</b></dt><dd><i>" + person.task() + "</i><br></dd>");
104     }
105     res.append("</dl>" + tr("...and anybody else finding and reporting bugs, giving feedback, helping others and being part of the community!"));
106     return res;
107 }
108
109
110 QString AboutDlg::thanksTo() const
111 {
112     QString res {tr("Special thanks goes to:") + "<br>"
113           "<table>"
114               "<tr><td rowspan='2' valign='middle'><img src=':/pics/quassel-eye.png'>&nbsp;</td>"
115                                  "<td><b>John \"nox\" Hand</b></td></tr>"
116               "<tr><td><i>" + tr("for the original Quassel logo - The All-Seeing Eye") + "</i></td></tr>"
117               "<tr/>"
118               "<tr><td rowspan='2' valign='middle'><img src=':/pics/quassel-oxygen-32.png'></td>"
119                                  "<td><b>Nuno Pinheiro</b></td></tr>"
120               "<tr><td><i>" + tr("for the Oxygen Quassel logo") + "</i></td></tr>"
121               "<tr/>"
122               "<tr><td rowspan='2' valign='middle'><img src=':/pics/kde-vdg.png'></td>"
123                                  "<td><b><a href='https://vdesign.kde.org'>The KDE Visual Design Group</a></b></td></tr>"
124               "<tr><td><i>" + tr("for the amazing Breeze and Oxygen icon themes") + "</i></td></tr>"
125               "<tr/>"
126               "<tr><td rowspan='2' valign='middle'><img src=':/pics/qt-logo-32.png'></td>"
127                                  "<td><b><a href='https://www.qt.io/'>The Qt Company</a></b> (formerly known as Qt Software, Nokia, Trolltech)</td></tr>"
128               "<tr><td><i>" + tr("for creating an awesome framework, and for sponsoring development with Greenphones, N810s, N950s and more") + "</i></td></tr>"
129           "</table>"
130     };
131
132     return res;
133 }