Custom Query (2447 matches)
Results (280 - 282 of 2447)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#1368 | Duplicate | Move to trash or optional confirmation dialog when removing data | ||
Description |
It would be great if Duluge could use the trash if it's available when 'remove with data' is used. This could be specified as an option in the preferences (ie. 'Use trash when removing data'). There is a trash-cli tool that supports the freedesktop.org specification, and may be helpful in implementing this: http://code.google.com/p/trash-cli. Alternately, maybe the 'remove torrent' item in the contextual menu could be split into two items: a regular 'remove torrent' item that requires no confirmation, and a 'remove with data' item that prompts the user to confirm before deleting data. This is to prevent boneheads like me from deleting many gigs of data with a single errant click when they only meant to remove the torrent. |
|||
#898 | WorksForMe | problem with lables and "move ready torrent" function | ||
Description |
If you use plugin "Labels", and activate move ready torrent function for each label. For eg. (label movies - move to /torrent/ready/movies, music to /torrent/ready/music, etc ) When deluge restart, downloads defined correct with lables, but field "move to" for each download has string "/torrent/ready" (its default ready path) without label prefix. |
|||
#3337 | Fixed | listen ports syntax error | ||
Description |
--- preferencesmanager.py +++ preferencesmanager.py @@ -231,7 +231,7 @@ self.core.apply_session_settings( { 'listen_system_port_fallback': self.config['listen_use_sys_port'], - 'listen_interfaces': ''.join(interfaces), + 'listen_interfaces': ','.join(interfaces), } ) |