From aede6f9ce5cfabde6623307cce026312365e1250 Mon Sep 17 00:00:00 2001 From: Calum Lind Date: Thu, 20 Nov 2014 21:46:16 +0000 Subject: [PATCH] [WebUI] Add missing column entries to Torrent Record --- .../web/js/deluge-all/data/TorrentRecord.js | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/deluge/ui/web/js/deluge-all/data/TorrentRecord.js b/deluge/ui/web/js/deluge-all/data/TorrentRecord.js index a270f85d4..18e476ca6 100644 --- a/deluge/ui/web/js/deluge-all/data/TorrentRecord.js +++ b/deluge/ui/web/js/deluge-all/data/TorrentRecord.js @@ -91,5 +91,26 @@ 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: 'total_remaining', + type: 'int' + }, { + name: 'max_download_speed', + type: 'int' + }, { + name: 'max_upload_speed', + type: 'int' + }, { + name: 'seeds_peers_ratio', + type: 'float' } ]);