Custom Query (2449 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (19 - 21 of 2449)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
Ticket Resolution Summary Owner Reporter
#2117 Duplicate Wrong path separator is sent to unix daemon from windows gui Winand
Description

Install daemon on unix-based os with slash separator. Connect to daemon from Windows gtkui. Open Add torrent dialog. Paths within torrent are separated with Windows native backslash ("\"). When task is sent to daemon it takes backslashes as part of filename.

I made a dirty hack so all native seps are replaced with slash before sending task to deluged. But we cannot know that slash is native for remote daemon, so this is not a good solution.

while row != None:
    torrent_id = self.torrent_liststore.get_value(row, 0)
    filename = self.torrent_liststore.get_value(row, 2).replace(os.path.sep, '/') #WA

This is discussed here http://forum.deluge-torrent.org/viewtopic.php?f=12&t=36329

#266 WontFix Wrong ETA when some files of a torrent are not downloaded markybob anonymous
Description

This bug is present when the user chooses not to download all the files in the torrent. Deluge does not update properly the ETA and gives an estimation over the size of all the files in the torrent and not over just the ones selected for download. It's really annoying because it basically makes ETA useless all those times you are downloading just a small fraction of the files from a torrent.

#3364 Duplicate Wrong "Down Speed" data dako98
Description

In the "Status" panel of a torrent, the field "Down Speed:" shows the total uploaded amount and the "Uploaded:" field shows the download speed.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
Note: See TracQuery for help on using queries.