1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-10 23:07:59 +00:00

- Support up to 99999 peers (for display). It used to be 9999 but this was not enough for some torrents.

This commit is contained in:
Christophe Dumez 2009-11-19 17:13:53 +00:00
parent 98223e54e8
commit b35cc2c9e4
2 changed files with 4 additions and 4 deletions

View File

@ -70,10 +70,10 @@ public:
case SEEDS: case SEEDS:
case PEERS: { case PEERS: {
qulonglong tot_val = index.data().toULongLong(); qulonglong tot_val = index.data().toULongLong();
QString display = QString::number((qulonglong)tot_val/100000); QString display = QString::number((qulonglong)tot_val/1000000);
if(tot_val%2 == 0) { if(tot_val%2 == 0) {
// Scrape was sucessful, we have total values // Scrape was sucessful, we have total values
display += " ("+QString::number((qulonglong)(tot_val%100000)/10)+")"; display += " ("+QString::number((qulonglong)(tot_val%1000000)/10)+")";
} }
QItemDelegate::drawBackground(painter, opt, index); QItemDelegate::drawBackground(painter, opt, index);
opt.displayAlignment = Qt::AlignRight; opt.displayAlignment = Qt::AlignRight;

View File

@ -304,13 +304,13 @@ int TransferListWidget::updateTorrent(int row) {
listModel->setData(listModel->index(row, DLSPEED), QVariant((double)h.download_payload_rate())); listModel->setData(listModel->index(row, DLSPEED), QVariant((double)h.download_payload_rate()));
// Connected_seeds*100000+total_seeds*10 (if total_seeds is available) // Connected_seeds*100000+total_seeds*10 (if total_seeds is available)
// Connected_seeds*100000+1 (if total_seeds is unavailable) // Connected_seeds*100000+1 (if total_seeds is unavailable)
qulonglong seeds = h.num_seeds()*100000; qulonglong seeds = h.num_seeds()*1000000;
if(h.num_complete() >= h.num_seeds()) if(h.num_complete() >= h.num_seeds())
seeds += h.num_complete()*10; seeds += h.num_complete()*10;
else else
seeds += 1; seeds += 1;
listModel->setData(listModel->index(row, SEEDS), QVariant(seeds)); listModel->setData(listModel->index(row, SEEDS), QVariant(seeds));
qulonglong peers = (h.num_peers()-h.num_seeds())*100000; qulonglong peers = (h.num_peers()-h.num_seeds())*1000000;
if(h.num_incomplete() >= (h.num_peers()-h.num_seeds())) if(h.num_incomplete() >= (h.num_peers()-h.num_seeds()))
peers += h.num_incomplete()*10; peers += h.num_incomplete()*10;
else else