Search found 26 matches

by laharah
Wed Feb 15, 2017 9:43 pm
Forum: Windows OS
Topic: Can no longer fix a moved torrent
Replies: 3
Views: 4854

Re: Can no longer fix a moved torrent

Looking again at lt docs, it might be better to use dont_replace Thanks for the heads up about the libtorrent flags, must have been looking at 1.3.12 and didn't see that change. Managed to implement a fix for my plugin. I still think that deluge needs a way to fix moved storage in the UI. It's just...
by laharah
Wed Feb 15, 2017 5:35 am
Forum: Windows OS
Topic: Can no longer fix a moved torrent
Replies: 3
Views: 4854

Can no longer fix a moved torrent

Hi, So with libtorrent 1.0.9.0 on windows, you can no longer redirect deluge to the new location of moved torrent files. I'm the maintainer of the FilebotTool plugin and this completely breaks its functionality. deluge 1.3.13 libtorrent 1.0.9.0 windows 10 (tested on home and professional) classic an...
by laharah
Sun Aug 23, 2015 9:49 am
Forum: Plugins
Topic: uTorrent Import Plugin: Painlessly Migrate to Deluge!
Replies: 6
Views: 20897

uTorrent Import Plugin: Painlessly Migrate to Deluge!

Hi There! I've upgraded my uTorrent to Deluge script into a full fledged plugin! It should be massively easier to use, and It's now cross-platform. Link to source, instructions and download: https://github.com/Laharah/deluge-uTorrentImport Features: [*] Cross-platform [*] Auto-search for uTorrent to...
by laharah
Sat Aug 22, 2015 10:40 pm
Forum: Support
Topic: Classic mode plugin calls running twice
Replies: 1
Views: 1518

Re: Classic mode plugin calls running twice

I found a fix for the problem, but I'm still not sure of the actual cause. By making sure signals are connected on enable, rather than on_show_prefs, the signal duplication is eliminated. Not sure why this only happens in classic mode.
by laharah
Sat Aug 22, 2015 10:01 pm
Forum: Support
Topic: Classic mode plugin calls running twice
Replies: 1
Views: 1518

Classic mode plugin calls running twice

I'm writing a plugin and I've come across a weird issue. When I run deluge in classic mode, all UI signals to my plugin are emitted twice, making two consecutive calls to my gtkui callbacks. I've tried it both on PC and OSX. In server/client mode the signals are only emitted once. Does anyone know w...
by laharah
Mon May 25, 2015 3:44 pm
Forum: Windows OS
Topic: uTorrent to Deluge script
Replies: 5
Views: 9975

Re: uTorrent to Deluge script

This script does port the torrents across from uTorrent to Deluge for me, but it hangs for me during the renaming process: ... Hmm, it looks like deluge never executes the renames. The script is supposed to listen for rename events from deluge, but there don't seem to be any happening. I'll do some...
by laharah
Tue May 19, 2015 1:03 am
Forum: Windows OS
Topic: uTorrent to Deluge script
Replies: 5
Views: 9975

Re: uTorrent to Deluge script

I do not know what I am doing wrong, but this script does not work for me. Installed python 2.7; utorrent closed, deluge classic mode disable, double click and it does not migrate my torrents The 3 most common problems with the script are: * non matching version of python: the default build of delu...
by laharah
Wed Feb 18, 2015 8:41 am
Forum: Development
Topic: Calling plugins from other plugins
Replies: 0
Views: 1282

Calling plugins from other plugins

I'm writing a plugin and was wondering if there was a preferred way to access and make calls to another plugin from within my plugin core. I'm interested in integrating support for labelplus and others in my plugin and I'm not sure the best way to go about it. I'm not sure if calling the deluge.ui.c...
by laharah
Sun Jan 25, 2015 8:58 pm
Forum: Support
Topic: uTorrent to Deluge script (w/ wine support)
Replies: 2
Views: 2958

Re: uTorrent to Deluge script (w/ wine support)

It doesn't work for me. It says bad magic number in "egg\deluge\__init__.pyc" I'm running it with python 2.7 You get that error when there's a mismatch between the python version your script is running on and the python version deluge is using. Deluge has it's own internal version that it...
by laharah
Thu Jan 22, 2015 11:01 am
Forum: Support
Topic: TorrentStorageMovedEvent is never emited
Replies: 2
Views: 2004

Re: TorrentStorageMovedEvent is never emited

Cas wrote:That event is not in 1.3 code.
Looking through events.py I see you are right. I was confused because the event is in the code documentation.

It looks like Torrent.move_storage is synchronous now. Is that the case? Is it safe to use that way, or should I register directly into the AlertManager?