1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-02-11 06:14:16 +00:00

- Fixed a problem that happened sometimes with torrents to pause after checking

This commit is contained in:
Christophe Dumez 2007-07-29 01:44:49 +00:00
parent e4fbf2107d
commit 620deb3b6a
2 changed files with 10 additions and 6 deletions

6
TODO
View File

@ -18,17 +18,18 @@
// Unsure // Unsure
- Azureus spoofing to prevent ban from trackers? - Azureus spoofing to prevent ban from trackers?
- Web interface?
- Option to shutdown computer when downloads are finished - Option to shutdown computer when downloads are finished
- Add a torrent scheduler - Add a torrent scheduler
- Make use of dbus on Linux for the single instance instead of socket communication? - Make use of dbus on Linux for the single instance instead of socket communication?
(http://techbase.kde.org/Development/Tutorials/D-Bus/Accessing_Interfaces) (http://techbase.kde.org/Development/Tutorials/D-Bus/Accessing_Interfaces)
- search engines customizing
// in v1.1.0 // in v1.1.0
- Tabs support in search - Tabs support in search
- Have a look at libcommoncpp2 to see if it can be useful for other stuff than url downloading - Have a look at libcommoncpp2 to see if it can be useful for other stuff than url downloading
- Allow to hide columns? - Allow to hide columns?
- Allow to scan multiple directories? - Allow to scan multiple directories?
- Web interface (turbogears?)
// in v1.0.0 (partial) - WIP // in v1.0.0 (partial) - WIP
- Check storage st creation + hasher in torrent creation - Check storage st creation + hasher in torrent creation
@ -38,10 +39,13 @@
- update sorting when a new torrent is added? - update sorting when a new torrent is added?
- Add a checking icon in dl list to differenciate from connecting. - Add a checking icon in dl list to differenciate from connecting.
- Complete documentation and english translation - Complete documentation and english translation
- support zipped torrents?
* beta3 * beta3
- Windows port (Chris - Peerkoel) - Windows port (Chris - Peerkoel)
- Translations update - Translations update
- Optimize and cleanup code - Optimize and cleanup code
- improve and test tracker authentication code (remember login/pass)
- are paused torrents downloaded anyway sometimes? (check this)
- Wait for some bug fixes in libtorrent : - Wait for some bug fixes in libtorrent :
- upload/download limit per torrent - upload/download limit per torrent
- double free or corruption on exit - double free or corruption on exit

View File

@ -198,11 +198,11 @@ void bittorrent::pauseTorrent(QString hash){
QFile paused_file(misc::qBittorrentPath()+"BT_backup"+QDir::separator()+hash+".paused"); QFile paused_file(misc::qBittorrentPath()+"BT_backup"+QDir::separator()+hash+".paused");
paused_file.open(QIODevice::WriteOnly | QIODevice::Text); paused_file.open(QIODevice::WriteOnly | QIODevice::Text);
paused_file.close(); paused_file.close();
int index = torrentsToPauseAfterChecking.indexOf(hash); }
if(index != -1) { int index = torrentsToPauseAfterChecking.indexOf(hash);
torrentsToPauseAfterChecking.removeAt(index); if(index != -1) {
qDebug("A torrent was paused just after checking, good"); torrentsToPauseAfterChecking.removeAt(index);
} qDebug("A torrent was paused just after checking, good");
} }
} }