mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-25 22:14:32 +00:00
- Added more debug when we get a file_error
This commit is contained in:
parent
2fc7039cc7
commit
da244d7ef2
5
TODO
5
TODO
@ -41,11 +41,14 @@
|
|||||||
- Allow to limit the number of downloading torrents simultaneously (other are paused until a download finishes)
|
- Allow to limit the number of downloading torrents simultaneously (other are paused until a download finishes)
|
||||||
- Improve search plugin install (choose in a list taken from plugins.qbittorrent.org)
|
- Improve search plugin install (choose in a list taken from plugins.qbittorrent.org)
|
||||||
- Display the number of DHT node if possible
|
- Display the number of DHT node if possible
|
||||||
|
- Display in torrent addition dialog:
|
||||||
|
* free disk space on selected drive
|
||||||
|
* free disk space after torrent download (and/or torrent size)
|
||||||
- Allow to change action on double-click
|
- Allow to change action on double-click
|
||||||
-> in download list
|
-> in download list
|
||||||
-> in seeding list
|
-> in seeding list
|
||||||
|
|
||||||
// in v1.0.0 (partial) - WIP
|
// in v1.0.0 - FEATURE FREEZE
|
||||||
- Fix all (or almost all) opened bugs in bug tracker
|
- Fix all (or almost all) opened bugs in bug tracker
|
||||||
- Keep documention up to date
|
- Keep documention up to date
|
||||||
- Windows port (Chris - Peerkoel)
|
- Windows port (Chris - Peerkoel)
|
||||||
|
@ -1083,6 +1083,7 @@ void bittorrent::readAlerts() {
|
|||||||
}
|
}
|
||||||
else if (file_error_alert* p = dynamic_cast<file_error_alert*>(a.get())) {
|
else if (file_error_alert* p = dynamic_cast<file_error_alert*>(a.get())) {
|
||||||
QTorrentHandle h(p->handle);
|
QTorrentHandle h(p->handle);
|
||||||
|
qDebug("File Error: %s", p->msg().c_str());
|
||||||
if(h.is_valid())
|
if(h.is_valid())
|
||||||
emit fullDiskError(h);
|
emit fullDiskError(h);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user