Custom Query (2449 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (559 - 561 of 2449)

Ticket Resolution Summary Owner Reporter
#1493 Invalid [PATCH] GTKUI: add "Downloaded" and "Uploaded" colums to torrent view alderz
Description

[PATCH] GTKUI: add "Downloaded" and "Uploaded" colums to torrent view

---

deluge/ui/gtkui/torrentview.py | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-)

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(_("Size"), listview.cell_data_size,

[gobject.TYPE_UINT64], status_field=total_wanted)

+ 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)

self.add_progress_column(_("Progress"),

status_field=["progress", "state"], col_types=[float, str],

-- 1.7.3.5

#1498 Fixed [PATCH] core.torrent.Torrent.rename_folder adds a forward slash. Hiram
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 Calum
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.

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.