From a4371e7f559815bf3cceaa83b849e861ec210551 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Thu, 12 Jul 2007 13:38:40 +0000 Subject: [PATCH] - Removed some debug - Updated TODO --- TODO | 15 ++++++--------- src/bittorrent.cpp | 2 +- 2 files changed, 7 insertions(+), 10 deletions(-) diff --git a/TODO b/TODO index 9a48b3c9c..4a8fe6949 100644 --- a/TODO +++ b/TODO @@ -25,25 +25,22 @@ - Add a torrent scheduler - Improve Ipfilter.dat parser (move to a thread ? - too slow to load qBT and more importantly options) - Improve search plugin update (make it automatic, write version/changelog in another file to limit brandwidth usage). Allow to disable this feature in program preferences. +- Make use of dbus on Linux for the single instance instead of socket communication? + (http://techbase.kde.org/Development/Tutorials/D-Bus/Accessing_Interfaces) // in v1.1.0 - Tabs support in search // in v1.0.0 (partial) - WIP - Check storage st creation + hasher in torrent creation -- Add IPv6 support (at least start working on it, libtorrent seems to support it, we should limit our code to IPv4 anymore) +- test IPv6 support - Display Url seeds in torrent properties and allow to edit them -- Use tooltips to explain options? -- Improve ratio display / calculation / saving / per torrent... +- Improve ratio display / calculation / saving / per torrent... (beta2?) - Sorting in Download Status column should be smarter than just an alphabetical sort -- File selection in a torrent in compact mode??? - Windows port : http://www.peerweb.nl/qbittorrent/experimentalbuild/testing.zip -- Make use of QSessionManager to save application state? -- Make use of dbus on Linux for the single instance instead of socket communication? - (http://techbase.kde.org/Development/Tutorials/D-Bus/Accessing_Interfaces) - Write documentation -- Allow the user to see when peers were blocked thanks to IPFilter. Maybe in a file in order not to spam the GUI. - Allow to scan multiple directories - Fix all (or almost all) opened bugs in bug tracker - Fix sorting with Qt 4.3 - Reported to Trolltech, waiting for fix -- update sorting when a new torrent is added \ No newline at end of file +- update sorting when a new torrent is added? +- Allow to adjust UP/DL speed limit from tray icon menu \ No newline at end of file diff --git a/src/bittorrent.cpp b/src/bittorrent.cpp index 30f00b73a..638881320 100644 --- a/src/bittorrent.cpp +++ b/src/bittorrent.cpp @@ -474,7 +474,7 @@ void bittorrent::loadFilesPriorities(torrent_handle &h){ if( priority < 0 || priority > 7){ priority = 1; } - qDebug("Setting piece piority to %d", priority); + //qDebug("Setting piece piority to %d", priority); v.push_back(priority); } h.prioritize_files(v);