mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-01-06 15:04:34 +08:00
- Added a different icon for torrents being checking so that we can differenciate them from finished torrents
This commit is contained in:
parent
57376ae875
commit
a00ea9af99
6
TODO
6
TODO
@ -39,11 +39,11 @@
|
|||||||
- Fix all (or almost all) opened bugs in bug tracker
|
- Fix all (or almost all) opened bugs in bug tracker
|
||||||
- Fix column sorting with Qt 4.3 - Reported to Trolltech, waiting for their fix
|
- Fix column sorting with Qt 4.3 - Reported to Trolltech, waiting for their fix
|
||||||
- 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.
|
|
||||||
- Complete documentation and english translation
|
- Complete documentation and english translation
|
||||||
|
- Windows port (Chris - Peerkoel)
|
||||||
|
- Add checking icon to documentation
|
||||||
* beta3
|
* beta3
|
||||||
- Windows port (Chris - Peerkoel)
|
- Translations update ( IN PROGESS)
|
||||||
- Translations update
|
|
||||||
- Optimize and cleanup code
|
- Optimize and cleanup code
|
||||||
- Wait for some bug fixes in libtorrent :
|
- Wait for some bug fixes in libtorrent :
|
||||||
- upload/download limit per torrent
|
- upload/download limit per torrent
|
||||||
|
@ -617,7 +617,7 @@ void GUI::updateDlList(bool force){
|
|||||||
case torrent_status::checking_files:
|
case torrent_status::checking_files:
|
||||||
case torrent_status::queued_for_checking:
|
case torrent_status::queued_for_checking:
|
||||||
if(BTSession->getTorrentsToPauseAfterChecking().indexOf(fileHash) == -1){
|
if(BTSession->getTorrentsToPauseAfterChecking().indexOf(fileHash) == -1){
|
||||||
DLListModel->setData(DLListModel->index(row, NAME), QVariant(QIcon(":/Icons/skin/connecting.png")), Qt::DecorationRole);
|
DLListModel->setData(DLListModel->index(row, NAME), QVariant(QIcon(":/Icons/time.png")), Qt::DecorationRole);
|
||||||
setRowColor(row, "grey");
|
setRowColor(row, "grey");
|
||||||
DLListModel->setData(DLListModel->index(row, PROGRESS), QVariant((double)torrentStatus.progress));
|
DLListModel->setData(DLListModel->index(row, PROGRESS), QVariant((double)torrentStatus.progress));
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user