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' } ]);