diff --git a/Changelog b/Changelog index 85a465db2..87a1e99df 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,6 @@ +* Unreleased - Christophe Dumez - v2.9.0 + - COSMETIC: Display speed at the beginning of the Window title + * Thu Jun 02 2011 - Christophe Dumez - v2.8.0 - FEATURE: Added full libtorrent v0.16 support (uTP, ...) - FEATURE: Proxy can be disabled for peer connections diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 517e36a33..b4442b4cf 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -1106,7 +1106,7 @@ void MainWindow::updateGUI() { systrayIcon->setToolTip(html); // tray icon } if(displaySpeedInTitle) { - setWindowTitle(tr("qBittorrent %1 (Down: %2/s, Up: %3/s)", "%1 is qBittorrent version").arg(QString::fromUtf8(VERSION)).arg(misc::friendlyUnit(QBtSession::instance()->getSessionStatus().payload_download_rate)).arg(misc::friendlyUnit(QBtSession::instance()->getSessionStatus().payload_upload_rate))); + setWindowTitle(tr("[D: %1/s, U: %2/s] qBittorrent %3", "D = Download; U = Upload; %3 is qBittorrent version").arg(misc::friendlyUnit(QBtSession::instance()->getSessionStatus().payload_download_rate)).arg(misc::friendlyUnit(QBtSession::instance()->getSessionStatus().payload_upload_rate)).arg(QString::fromUtf8(VERSION))); } }