Search found 532 matches

by ambipro
Fri Sep 20, 2024 1:40 pm
Forum: Windows OS
Topic: Deluge disappears a few seconds after launch
Replies: 2
Views: 41

Re: Deluge disappears a few seconds after launch

https://archive.org/details/deluge-1.3.15-win32-py2.7

I've uploaded the original 1.3.15 to archive.org, that installer is not on the link you provided, only 2.1.1.

I'm not sure why you'd want 1.3.15 these day, 2.1.1 is much more solid and performant.
by ambipro
Fri Sep 20, 2024 2:11 am
Forum: Support
Topic: Password Trouble...
Replies: 1
Views: 53

Re: Password Trouble...

viewtopic.php?p=237734#p237734

This post explains how.
by ambipro
Fri Sep 13, 2024 7:49 pm
Forum: Support
Topic: deluged traffic comming from wrong ip address?
Replies: 4
Views: 309

Re: deluged traffic comming from wrong ip address?

VPN implementations are a tricky thing, generally the safest method is to use a docker container with VPN support already integrated that manages the VPN connection and refuses to make any other requests outside of through the VPN. I understand that not everyone is familiar with or uses Docker, so t...
by ambipro
Sun Sep 08, 2024 9:39 am
Forum: Development
Topic: Python 3.13 support
Replies: 7
Views: 2808

Re: Python 3.13 support

Your PR is merged.
by ambipro
Sun Sep 08, 2024 4:48 am
Forum: Support
Topic: Permissions issue with migrating from Transmission
Replies: 3
Views: 228

Re: Permissions issue with migrating from Transmission

Unless you renamed the files in Transmission itself, and they aren't the original torrent names, you shouldn't really need to do anything other than mount the same volume and make sure those permissions were also set appropriately. If it doesn't appear to be that simple to you, you can join our disc...
by ambipro
Sat Sep 07, 2024 8:41 pm
Forum: Support
Topic: Permissions issue with migrating from Transmission
Replies: 3
Views: 228

Re: Permissions issue with migrating from Transmission

Sorry to hijack but I was wondering if someone can help me - probably not - but its a shot I'm moving from Unraid transmission. I have found the .torrent files but when I try to add it I get a permissions error. Anyone have any clue how to fix? I've moved you to your own thread, as hijacking and ne...
by ambipro
Fri Sep 06, 2024 9:18 am
Forum: Support
Topic: deluge-console: errors and unstable
Replies: 6
Views: 742

Re: deluge-console: errors and unstable

Thanks, I see this came after commit 253eb22 , affecting chained connect command. I'll look into it at a later time, or atleast make a ticket, thanks for reporting. In meantime, a workaround is to not use 'connect', but instead like: deluge-console -d <ip> -p <port> -U <user> -P <password> command[...
by ambipro
Wed Sep 04, 2024 11:27 pm
Forum: Support
Topic: Adding label via python RPCClient
Replies: 3
Views: 501

Re: Adding label via python RPCClient

Yes, it will return in the options for the list of torrents, but it is not set or managed directly through the torrent options.
by ambipro
Wed Sep 04, 2024 10:34 pm
Forum: Support
Topic: Adding label via python RPCClient
Replies: 3
Views: 501

Re: Adding label via python RPCClient

Label isn't an option for torrents, it's a separate plugin.

I think you would just use

Code: Select all

client.label.get_labels()

client.label.set_torrent(torrent_id, "label-here")
The parameters may vary, I'm used to the JSON-RPC. I haven't verified these are used in this syntax