- BACK TO DEVEL (finally!)

- Just a small commit to change the way qBT identifies its version with the tracker
This commit is contained in:
Christophe Dumez 2007-02-19 13:14:55 +00:00
parent dd0b110eae
commit de7e284690
3 changed files with 5 additions and 2 deletions

2
TODO
View file

@ -35,7 +35,7 @@
- Add a torrent scheduler - Add a torrent scheduler
// In v0.9.0 // In v0.9.0
- Wait for libtorrent v0.12 officiel release - Wait for libtorrent v0.12 official release
- Add an option to disable Peer Exchange (PeX) - Add an option to disable Peer Exchange (PeX)
- Move deletion from hard drive to a thread to avoid GUI freezing - Move deletion from hard drive to a thread to avoid GUI freezing
- Should create options dialog only when needed to save up some memory - Should create options dialog only when needed to save up some memory

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, 9, 0, 0)); s = new session(fingerprint("qB", VERSION_MAJOR, VERSION_MINOR, VERSION_BUGFIX, 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")));

View file

@ -24,6 +24,9 @@
#include "ui_about.h" #include "ui_about.h"
#define VERSION "v0.9.0beta1" #define VERSION "v0.9.0beta1"
#define VERSION_MAJOR 0
#define VERSION_MINOR 9
#define VERSION_BUGFIX 0
class about : public QDialog, private Ui::AboutDlg{ class about : public QDialog, private Ui::AboutDlg{
Q_OBJECT Q_OBJECT