summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCalum Lind <calumlind+deluge@gmail.com>2014-11-20 21:46:16 +0000
committerCalum Lind <calumlind+deluge@gmail.com>2014-11-20 21:46:16 +0000
commitd7bb5dfa8b259057b315ca192dbd7c54e2d82139 (patch)
treef01a2f7dc7631208d430b7535969e359816e14c8
parent7c3d44c42ea55d495a2821026d2118a194190d60 (diff)
downloaddeluge-d7bb5dfa8b259057b315ca192dbd7c54e2d82139.tar.gz
deluge-d7bb5dfa8b259057b315ca192dbd7c54e2d82139.tar.bz2
deluge-d7bb5dfa8b259057b315ca192dbd7c54e2d82139.zip
[WebUI] Add missing column entries to Torrent Record
-rw-r--r--deluge/ui/web/js/deluge-all/data/TorrentRecord.js20
1 files changed, 19 insertions, 1 deletions
diff --git a/deluge/ui/web/js/deluge-all/data/TorrentRecord.js b/deluge/ui/web/js/deluge-all/data/TorrentRecord.js
index 883b14c2e..dcfe3cd6b 100644
--- a/deluge/ui/web/js/deluge-all/data/TorrentRecord.js
+++ b/deluge/ui/web/js/deluge-all/data/TorrentRecord.js
@@ -1,6 +1,6 @@
/*!
* Deluge.data.TorrentRecord.js
- *
+ *
* Copyright (c) Damien Churchill 2009-2010 <damoxc@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
@@ -91,5 +91,23 @@ Deluge.data.Torrent = Ext.data.Record.create([{
}, {
name: 'tracker_host',
type: 'string'
+ }, {
+ name: 'save_path',
+ type: 'string'
+ }, {
+ name: 'total_done',
+ type: 'int'
+ }, {
+ name: 'total_uploaded',
+ type: 'int'
+ }, {
+ name: 'max_download_speed',
+ type: 'int'
+ }, {
+ name: 'max_upload_speed',
+ type: 'int'
+ }, {
+ name: 'seeds_peers_ratio',
+ type: 'float'
}
]);