Custom Query (2449 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (595 - 597 of 2449)

Ticket Resolution Summary Owner Reporter
#2325 Fixed [win32] Unistalling will delete everything under install directory Calum
Description

If not using usual C:\Program Files\Deluge e.g. D: without a Deluge subdirectory the uninstaller will delete everything under D:

http://git.deluge-torrent.org/deluge/tree/win32/deluge-win32-installer.nsi?h=1.3-stable#n216

Section Uninstall
  RmDir /r "$INSTDIR"

Possible solution: http://nsis.sourceforge.net/Uninstall_only_installed_files

#2328 WorksForMe Exception when stopping daemon after switching from classic to thenclient mode without restart Calum
Description

The daemon appears to stop ok but I don't think the gtkui is correctly setup after switching from classic to thinclient (without restarting) and throws the following exception:

[ERROR   ][deluge.component                   :152 ] [Failure instance: Traceback: <type 'exceptions.AssertionError'>: Tried to stop a LoopingCall that was not running.
deluge/ui/gtkui/gtkui.py:449:__on_disconnect
deluge/component.py:338:stop
deluge/component.py:342:stop
deluge/component.py:158:_component_stop
--- <exception caught here> ---
/usr/lib/python2.7/dist-packages/twisted/internet/defer.py:134:maybeDeferred
deluge/core/torrentmanager.py:247:stop
/usr/lib/python2.7/dist-packages/twisted/internet/task.py:171:stop
]
14:23:38.283 [ERROR   ][twisted                            :532 ] Unhandled error in Deferred:
Unhandled error in Deferred:
14:23:38.309 [ERROR   ][twisted                            :532 ] Unhandled Error
Traceback (most recent call last):
  File "deluge/ui/gtkui/gtkui.py", line 449, in __on_disconnect
    component.stop()
  File "deluge/component.py", line 338, in stop
    d = self.stop(self.dependents[name]).addCallback(on_dependents_stopped, name)
  File "deluge/component.py", line 342, in stop
    deferreds.append(self.components[name]._component_stop())
  File "deluge/component.py", line 158, in _component_stop
    d = maybeDeferred(self.stop)
--- <exception caught here> ---
  File "/usr/lib/python2.7/dist-packages/twisted/internet/defer.py", line 134, in maybeDeferred
    result = f(*args, **kw)
  File "deluge/core/torrentmanager.py", line 247, in stop
    self.torrents[key].prev_status_cleanup_loop.stop()
  File "/usr/lib/python2.7/dist-packages/twisted/internet/task.py", line 171, in stop
    assert self.running, ("Tried to stop a LoopingCall that was "
exceptions.AssertionError: Tried to stop a LoopingCall that was not running.

Unhandled Error
Traceback (most recent call last):
  File "deluge/ui/gtkui/gtkui.py", line 449, in __on_disconnect
    component.stop()
  File "deluge/component.py", line 338, in stop
    d = self.stop(self.dependents[name]).addCallback(on_dependents_stopped, name)
  File "deluge/component.py", line 342, in stop
    deferreds.append(self.components[name]._component_stop())
  File "deluge/component.py", line 158, in _component_stop
    d = maybeDeferred(self.stop)
--- <exception caught here> ---
  File "/usr/lib/python2.7/dist-packages/twisted/internet/defer.py", line 134, in maybeDeferred
    result = f(*args, **kw)
  File "deluge/core/torrentmanager.py", line 247, in stop
    self.torrents[key].prev_status_cleanup_loop.stop()
  File "/usr/lib/python2.7/dist-packages/twisted/internet/task.py", line 171, in stop
    assert self.running, ("Tried to stop a LoopingCall that was "
exceptions.AssertionError: Tried to stop a LoopingCall that was not running.
14:23:38.316 [ERROR   ][deluge.component                   :152 ] [Failure instance: Traceback: <type 'exceptions.AssertionError'>: Tried to stop a LoopingCall that was not running.
deluge/ui/gtkui/gtkui.py:449:__on_disconnect
deluge/component.py:338:stop
deluge/component.py:342:stop
deluge/component.py:158:_component_stop
--- <exception caught here> ---
/usr/lib/python2.7/dist-packages/twisted/internet/defer.py:134:maybeDeferred
deluge/core/torrentmanager.py:247:stop
/usr/lib/python2.7/dist-packages/twisted/internet/task.py:171:stop
#2333 Fixed Cannot set and then get options with same non-interactive console command Calum
Description
$ deluge-console "config -s allow_remote True; config allow_remote"
Setting allow_remote to True..
Configuration value successfully updated.
  allow_remote: False

Would expect this to return True but requires an separate step:

$ deluge-console "config allow_remote"
  allow_remote: True
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.