* add commit SHA information

* allow to open link in quotes editor
* fix bug with no data updates in configuration ui
This commit is contained in:
arcan1s
2015-09-28 19:27:55 +03:00
parent 92ce241742
commit 84f6f1a820
10 changed files with 45 additions and 19 deletions

View File

@ -248,9 +248,10 @@ QString DPAdds::getAboutText(const QString type) const
QString text;
if (type == QString("header"))
text = QString(NAME);
else if (type == QString("version"))
else if (type == QString("version")) {
text = i18n("Version %1 (build date %2)", QString(VERSION), QString(BUILD_DATE));
else if (type == QString("description"))
if (!QString(COMMIT_SHA).isEmpty()) text += QString(" (%1)").arg(QString(COMMIT_SHA));
} else if (type == QString("description"))
text = i18n("A set of minimalistic plasmoid widgets");
else if (type == QString("links"))
text = i18n("Links:") + QString("<br>") +