From d7bb5dfa8b259057b315ca192dbd7c54e2d82139 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 | 20 ++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) 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 * * 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' } ]);