mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-23 09:49:52 +00:00
Display piece size in Web UI too
This commit is contained in:
parent
f5b3564392
commit
fb81d1c8c9
@ -333,6 +333,8 @@ QVariantMap EventManager::getPropGeneralInfo(QString hash) const {
|
||||
data["save_path"] = p;
|
||||
// Creation date
|
||||
data["creation_date"] = h.creation_date();
|
||||
// Piece size
|
||||
data["piece_size"] = misc::friendlyUnit(h.piece_length());
|
||||
// Comment
|
||||
data["comment"] = h.comment();
|
||||
data["total_wasted"] = QVariant(misc::friendlyUnit(h.total_failed_bytes()+h.total_redundant_bytes()));
|
||||
|
@ -12,6 +12,7 @@
|
||||
<table>
|
||||
<tr><td style="text-align:right; padding: 4px;">_(Save path:)</td><td id="save_path">xxx</td></tr>
|
||||
<tr><td style="text-align:right; padding: 4px;">_(Created on:)</td><td id="creation_date">xxx</td></tr>
|
||||
<tr><td style="text-align:right; padding: 4px;">_(Pieces size:)</td><td id="piece_size">xxx</td></tr>
|
||||
<tr><td style="text-align:right; padding: 4px;">_(Torrent hash:)</td><td id="torrent_hash">xxx</td></tr>
|
||||
<tr><td style="vertical-align: top; padding: 4px; text-align:right;">
|
||||
<br/>
|
||||
@ -39,6 +40,7 @@ dynamic information: total_downloaded, total_uploaded, total_wasted, up_limit, d
|
||||
$('torrent_hash').set('html', '');
|
||||
$('save_path').set('html', '');
|
||||
$('creation_date').set('html', '');
|
||||
$('piece_size').set('html', '');
|
||||
$('comment').set('html', '');
|
||||
$('total_uploaded').set('html', '');
|
||||
$('total_downloaded').set('html', '');
|
||||
@ -81,6 +83,7 @@ dynamic information: total_downloaded, total_uploaded, total_wasted, up_limit, d
|
||||
// Update Torrent data
|
||||
$('save_path').set('html', data.save_path);
|
||||
$('creation_date').set('html', data.creation_date);
|
||||
$('piece_size').set('html', data.piece_size);
|
||||
$('comment').set('html', data.comment);
|
||||
$('total_uploaded').set('html', data.total_uploaded);
|
||||
$('total_downloaded').set('html', data.total_downloaded);
|
||||
@ -102,4 +105,4 @@ dynamic information: total_downloaded, total_uploaded, total_wasted, up_limit, d
|
||||
}
|
||||
// Initial loading
|
||||
loadData();
|
||||
</script>
|
||||
</script>
|
||||
|
Loading…
Reference in New Issue
Block a user