mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-13 11:48:40 +00:00
[WebUI] Add missing column entries to Torrent Record
This commit is contained in:
parent
376a92f554
commit
aede6f9ce5
1 changed files with 21 additions and 0 deletions
|
@ -91,5 +91,26 @@ Deluge.data.Torrent = Ext.data.Record.create([{
|
||||||
}, {
|
}, {
|
||||||
name: 'tracker_host',
|
name: 'tracker_host',
|
||||||
type: 'string'
|
type: 'string'
|
||||||
|
}, {
|
||||||
|
name: 'save_path',
|
||||||
|
type: 'string'
|
||||||
|
}, {
|
||||||
|
name: 'total_done',
|
||||||
|
type: 'int'
|
||||||
|
}, {
|
||||||
|
name: 'total_uploaded',
|
||||||
|
type: 'int'
|
||||||
|
}, {
|
||||||
|
name: 'total_remaining',
|
||||||
|
type: 'int'
|
||||||
|
}, {
|
||||||
|
name: 'max_download_speed',
|
||||||
|
type: 'int'
|
||||||
|
}, {
|
||||||
|
name: 'max_upload_speed',
|
||||||
|
type: 'int'
|
||||||
|
}, {
|
||||||
|
name: 'seeds_peers_ratio',
|
||||||
|
type: 'float'
|
||||||
}
|
}
|
||||||
]);
|
]);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue