- qBittorrent now identifies its version correctly on the network

This commit is contained in:
Christophe Dumez 2007-01-07 14:57:26 +00:00
parent ff2ab66961
commit dd0b110eae
2 changed files with 2 additions and 1 deletions

View file

@ -13,6 +13,7 @@
- BUGFIX: Save directory was reset to default when filtering files in torrent - 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: 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: 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 - COSMETIC: Replaced OSD messages by systray messages
* Tue Nov 28 2006 - Christophe Dumez <chris@qbittorrent.org> - v0.8.0 * Tue Nov 28 2006 - Christophe Dumez <chris@qbittorrent.org> - v0.8.0

View file

@ -65,7 +65,7 @@ GUI::GUI(QWidget *parent, QStringList torrentCmdLine) : QMainWindow(parent){
setWindowTitle(tr("qBittorrent ")+VERSION); setWindowTitle(tr("qBittorrent ")+VERSION);
QCoreApplication::setApplicationName("qBittorrent"); QCoreApplication::setApplicationName("qBittorrent");
readSettings(); 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 //s = new session(fingerprint("AZ", 2, 5, 0, 0)); //Azureus fingerprint
// Setting icons // Setting icons
this->setWindowIcon(QIcon(QString::fromUtf8(":/Icons/qbittorrent32.png"))); this->setWindowIcon(QIcon(QString::fromUtf8(":/Icons/qbittorrent32.png")));