diff --git a/retroshare-gui/src/gui/AboutWidget.cpp b/retroshare-gui/src/gui/AboutWidget.cpp index 5e41e1d9c..d3fb34dd8 100644 --- a/retroshare-gui/src/gui/AboutWidget.cpp +++ b/retroshare-gui/src/gui/AboutWidget.cpp @@ -217,7 +217,6 @@ void AWidget::initImages() image1 = QImage(width(),height(),QImage::Format_ARGB32); image1.fill(palette().color(QPalette::Window)); - //QImage image(":/images/logo/logo_info.png"); QPixmap image(":/images/logo/logo_splash.png"); QPainter p(&image1); p.setPen(Qt::black); @@ -226,22 +225,23 @@ void AWidget::initImages() font.setPointSizeF(font.pointSizeF() + 2); p.setFont(font); - //p.drawPixmap(QRect(10, 10, width()-10, 60), image); - /* Draw RetroShare version */ + /* [Fix] Removed space before colon to match English typography */ #ifdef RS_ONLYHIDDENNODE - p.drawText(QPointF(10, 50), QString("%1 : %2 (With embedded Tor)").arg(tr("Retroshare version"), Rshare::retroshareVersion(true))); + p.drawText(QPointF(10, 50), QString("%1: %2 (With embedded Tor)").arg(tr("RetroShare version"), RsApplication::retroshareVersion(true))); #else - p.drawText(QPointF(10, 50), QString("%1 : %2").arg(tr("Retroshare version"), RsApplication::retroshareVersion(true))); + p.drawText(QPointF(10, 50), QString("%1: %2").arg(tr("RetroShare version"), RsApplication::retroshareVersion(true))); #endif + /* [Added] Draw libretroshare version below the GUI version */ + /* [Fix] Removed space before colon here too */ + p.drawText(QPointF(10, 70), QString("%1: %2").arg(tr("libretroshare version"), QString::fromUtf8(RsInit::libRetroShareVersion()))); + /* Draw Qt's version number */ - p.drawText(QPointF(10, 90), QString("Qt %1 : %2").arg(tr("version"), QT_VERSION_STR)); + p.drawText(QPointF(10, 90), QString("Qt %1: %2").arg(tr("version"), QT_VERSION_STR)); p.end(); -// setFixedSize(image1.size()); - image2 = image1 ; mImagesReady = true ; @@ -940,13 +940,17 @@ static QString addLibraries(const std::string &name, const std::list