Custom Query (2449 matches)
Results (559 - 561 of 2449)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #1493 | Invalid | [PATCH] GTKUI: add "Downloaded" and "Uploaded" colums to torrent view | ||
| Description |
[PATCH] GTKUI: add "Downloaded" and "Uploaded" colums to torrent view ---
diff --git a/deluge/ui/gtkui/torrentview.py b/deluge/ui/gtkui/torrentview.py index 52590af..a12d474 100644 --- a/deluge/ui/gtkui/torrentview.py +++ b/deluge/ui/gtkui/torrentview.py @@ -211,6 +211,12 @@ def init(self):
+ self.add_func_column(_("Downloaded"), listview.cell_data_size, + [gobject.TYPE_UINT64], + status_field=all_time_download) + self.add_func_column(_("Uploaded"), listview.cell_data_size, + [gobject.TYPE_UINT64], + status_field=all_time_uploaded)
-- 1.7.3.5 |
|||
| #1498 | Fixed | [PATCH] core.torrent.Torrent.rename_folder adds a forward slash. | ||
| Description |
torrent.py adds an unnecessary forward slash to the end of a folder when it gets renamed. This creates a rollover problem when it renames the files in the torrent to match the folder, as it creates a double forward slash. E.g., "Folder", containing "file.txt", becomes "Folderfile.txt" which creates viewing problems in the GTK client, not sure if it creates a problem in the filesystem though. The attached patch corrects this. |
|||
| #1505 | Fixed | Add libtorrent version to command options | ||
| Description |
Include libtorrent version with deluge version for ease of those without gui. For completeness also add to help dialog that --v can be used. |
|||
