Search found 3679 matches

by Cas
Fri Jul 03, 2020 6:37 pm
Forum: Development
Topic: pending pull request - do I need to do anything?
Replies: 4
Views: 17985

Re: pending pull request - do I need to do anything?

I get around to PRs when I can, with my current job I don't have much time/energy for Deluge code
by Cas
Sun Apr 12, 2020 10:31 pm
Forum: Support
Topic: Deluge isn't seeing my plugin
Replies: 4
Views: 5365

Re: Deluge isn't seeing my plugin

You will need to install the 'future' python module.

apt install python3-future

Or

pip3 install future
by Cas
Thu Jul 04, 2019 10:16 am
Forum: Support
Topic: gtk issues on 2.0.3 install
Replies: 8
Views: 9007

Re: gtk issues on 2.0.3 install

Can you see if python3-gobject-pygtkcompat is available and fixes this?
by Cas
Tue Jul 02, 2019 8:31 am
Forum: Support
Topic: cannot compile 2.0.3
Replies: 2
Views: 3166

Re: cannot compile 2.0.3

What source are you using?
by Cas
Fri Jun 28, 2019 11:16 pm
Forum: Support
Topic: gtk issues on 2.0.3 install
Replies: 8
Views: 9007

Re: gtk issues on 2.0.3 install

So this looks like a packaging problem on opensuse, in their infinite widson they deleted pygtkcompat from python3-gobject package which breaks twisted.

Perhaps try install with pip3 https://pypi.org/project/PyGObject/
by Cas
Fri Jun 28, 2019 10:29 am
Forum: Support
Topic: Connection to the other side was lost in a non-clean fashion
Replies: 5
Views: 10281

Re: Connection to the other side was lost in a non-clean fashion

Can you run deluge-console with logging to a file.
by Cas
Fri Jun 28, 2019 10:27 am
Forum: Support
Topic: gtk issues on 2.0.3 install
Replies: 8
Views: 9007

Re: gtk issues on 2.0.3 install

If you have server then you usually don't have a UI so wouldn't use deluge-gtk but if you do then you need to install GTK3.

https://deluge.readthedocs.io/en/latest ... stall.html
by Cas
Fri Jun 28, 2019 7:35 am
Forum: Support
Topic: rpc: renaming single file using curl
Replies: 1
Views: 1789

Re: rpc: renaming single file using curl

The method signature is a list of lists for filenames https://deluge.readthedocs.io/en/latest/reference/api.html curl -s -d '{"method": "core.rename_files", "params": ["<torrent_id>",[["1","<new_file_name>"]]], "id": 1}' -K curl.c...