Search found 62 matches

by Lazybones
Mon Jul 23, 2012 6:56 am
Forum: Development
Topic: how to build libtorrent rasterbar from source?
Replies: 3
Views: 9122

how to build libtorrent rasterbar from source?

I am using deluge compiled from source on debian and I am confused. 1. If I have libtorrent rasterbar installed from package and compile deluge it finds the .15 version of libtorrent and works 2. if I remove all both the libtorrent rasterbar .15 package and the python package - run the build /instal...
by Lazybones
Wed May 23, 2012 5:55 pm
Forum: Development
Topic: Compatibility with libtorrent rasterbar 0.16
Replies: 6
Views: 7798

Re: Compatibility with libtorrent rasterbar 0.16

Just curious, hows performance with 0.16 and is uTP enabled by default?
by Lazybones
Sat Apr 28, 2012 2:46 am
Forum: Support
Topic: downloads sometimes gone stalled
Replies: 5
Views: 5579

Re: downloads sometimes gone stalled

Devs can't reproduce it and none of us users seem to be able to compile a dev build...

The only FIX seems to be to force a restart of deluge, I have set a nightly cron job for this.
by Lazybones
Thu Apr 12, 2012 5:41 pm
Forum: Development
Topic: Compatibility with libtorrent rasterbar 0.16
Replies: 6
Views: 7798

Re: Compatibility with libtorrent rasterbar 0.16

I wonder if the hung torrent / over download issue has been fixed or negated.
by Lazybones
Thu Mar 22, 2012 5:30 pm
Forum: Development
Topic: Optware deluged
Replies: 4
Views: 4487

Re: Optware deluged

Thanks, Cas. Optware on my platform has a libtorrent package indicating version 0.12.6-1, which I guess is a little too old. Setup.py insists on trying to download and build the current 0.14 version, which fails for lack of gcc. So it sounds like I'm definitely going to have to figure out cross com...
by Lazybones
Tue Mar 13, 2012 2:24 am
Forum: Plugins
Topic: Move to different folder? (execute script)
Replies: 4
Views: 6565

Re: Move to different folder? (execute script)

I believe the blocking behavior of scripts will be changed in 1.3.4, but if you don't want deluge to hang duing your sleep statement you need to lauch your script from all calling script. In linux you would put an & at the end of the line. In windows put your actual code in a second script file ...
by Lazybones
Thu Mar 01, 2012 8:09 pm
Forum: Support
Topic: Pass torrent label as an argument in a script?
Replies: 12
Views: 10198

Re: Pass torrent label as an argument in a script?

Thank you, but I don't quite understand what to do - I am new to this. Where should the code of the shell script go , and hwo exactly do I fork it. Thank you for the help (both of you)!!! Something like this: { #!/bin/bash torrentid=$1 LABEL=$(/home/deckoff/Desktop/getLabel.py $torrentid) echo $tor...
by Lazybones
Tue Feb 28, 2012 7:58 pm
Forum: Windows OS
Topic: Can't see the deluge window [win7]
Replies: 7
Views: 8695

Re: Can't see the deluge window [win7]

It is a program issue in the fact that the window show code should check if it is on a visible screen and not just remember its last coordinates, however here is a workaround for windows 7. 1. Click on the Tray Icon 2. Shift + Windows Key + Left or Right arrow. This will move the app to a screen on ...
by Lazybones
Tue Feb 28, 2012 6:58 pm
Forum: Support
Topic: Pass torrent label as an argument in a script?
Replies: 12
Views: 10198

Re: Pass torrent label as an argument in a script?

Complete scripts are blocking, so try warping the content of the shell script and forking it. Then deluge should be released when when getlabee.py fires.

{
# shell script code
} &