Change the URL in the About dialog to point to the new website, and clean up the appearance
This commit is contained in:
parent
f6da46bab3
commit
4ffe0739dd
@ -19,7 +19,7 @@
|
|||||||
|
|
||||||
#include <QCoreApplication>
|
#include <QCoreApplication>
|
||||||
|
|
||||||
const char* About::kUrl = "http://code.google.com/p/clementine-player/";
|
const char* About::kUrl = "http://www.clementine-player.org/";
|
||||||
|
|
||||||
About::About(QWidget *parent)
|
About::About(QWidget *parent)
|
||||||
: QDialog(parent)
|
: QDialog(parent)
|
||||||
@ -43,7 +43,7 @@ About::About(QWidget *parent)
|
|||||||
<< Person("Jakub Stachowski", "qbast@go2.pl")
|
<< Person("Jakub Stachowski", "qbast@go2.pl")
|
||||||
<< Person("Paul Cifarelli", "paul@cifarelli.net")
|
<< Person("Paul Cifarelli", "paul@cifarelli.net")
|
||||||
<< Person("Felipe Rivera", "liebremx@users.sourceforge.net")
|
<< Person("Felipe Rivera", "liebremx@users.sourceforge.net")
|
||||||
<< Person("Alexander Peitz", "");
|
<< Person("Alexander Peitz");
|
||||||
|
|
||||||
ui_.content->setHtml(MakeHtml());
|
ui_.content->setHtml(MakeHtml());
|
||||||
}
|
}
|
||||||
@ -61,14 +61,17 @@ QString About::MakeHtml() const {
|
|||||||
ret += "<br />" + MakeHtml(person);
|
ret += "<br />" + MakeHtml(person);
|
||||||
|
|
||||||
ret += QString("<br />%1</p>").arg(tr("...and all the Amarok contributors"));
|
ret += QString("<br />%1</p>").arg(tr("...and all the Amarok contributors"));
|
||||||
ret += QString("<br /><b>%1</b>").arg(tr("And:"));
|
ret += QString("<p><b>%1</b>").arg(tr("And:"));
|
||||||
ret += QString("<p><a href=\"http://rainymood.com\">Rainy Mood</a></p>");
|
ret += QString("<br /><a href=\"http://rainymood.com\">Rainy Mood</a>");
|
||||||
ret += QString("<p><a href=\"http://www.smitelli.com/?page=blog&p=54\">Scott Smitelli</a></p>");
|
ret += QString("<br /><a href=\"http://www.smitelli.com/?page=blog&p=54\">Scott Smitelli</a></p>");
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
QString About::MakeHtml(const Person& person) const {
|
QString About::MakeHtml(const Person& person) const {
|
||||||
return QString("%1 <<a href=\"mailto:%2\">%3</a>>")
|
if (person.email.isNull())
|
||||||
.arg(person.name, person.email, person.email);
|
return person.name;
|
||||||
|
else
|
||||||
|
return QString("%1 <<a href=\"mailto:%2\">%3</a>>")
|
||||||
|
.arg(person.name, person.email, person.email);
|
||||||
}
|
}
|
||||||
|
@ -29,7 +29,7 @@ class About : public QDialog {
|
|||||||
static const char* kUrl;
|
static const char* kUrl;
|
||||||
|
|
||||||
struct Person {
|
struct Person {
|
||||||
Person(const QString& n, const QString& e) : name(n), email(e) {}
|
Person(const QString& n, const QString& e = QString()) : name(n), email(e) {}
|
||||||
|
|
||||||
QString name;
|
QString name;
|
||||||
QString email;
|
QString email;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user