From dd0b110eae82eef3deb10cba76f873365cf2527e Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Sun, 7 Jan 2007 14:57:26 +0000 Subject: [PATCH] - qBittorrent now identifies its version correctly on the network --- Changelog | 1 + src/GUI.cpp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Changelog b/Changelog index 0afba32db..3844d6a8d 100644 --- a/Changelog +++ b/Changelog @@ -13,6 +13,7 @@ - BUGFIX: Save directory was reset to default when filtering files in torrent - BUGFIX: Force a refresh of download list when the window is shown (avoid delay) - BUGFIX: Fixed deletion from hard drive (failed for non-empty folders) + - BUGFIX: qBittorrent now identifies its version correctly on the network - COSMETIC: Replaced OSD messages by systray messages * Tue Nov 28 2006 - Christophe Dumez - v0.8.0 diff --git a/src/GUI.cpp b/src/GUI.cpp index 891499ddf..6602d22fe 100644 --- a/src/GUI.cpp +++ b/src/GUI.cpp @@ -65,7 +65,7 @@ GUI::GUI(QWidget *parent, QStringList torrentCmdLine) : QMainWindow(parent){ setWindowTitle(tr("qBittorrent ")+VERSION); QCoreApplication::setApplicationName("qBittorrent"); readSettings(); - s = new session(fingerprint("qB", 0, 7, 0, 0)); + s = new session(fingerprint("qB", 0, 9, 0, 0)); //s = new session(fingerprint("AZ", 2, 5, 0, 0)); //Azureus fingerprint // Setting icons this->setWindowIcon(QIcon(QString::fromUtf8(":/Icons/qbittorrent32.png")));