Browse Source

- qBittorrent now identifies its version correctly on the network

adaptive-webui-19844
Christophe Dumez 18 years ago
parent
commit
dd0b110eae
  1. 1
      Changelog
  2. 2
      src/GUI.cpp

1
Changelog

@ -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

2
src/GUI.cpp

@ -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")));

Loading…
Cancel
Save