Search found 13 matches

by bcode
Fri Jan 21, 2011 10:57 pm
Forum: Mac OS
Topic: Deluge.app - Native OS X Deluge Client
Replies: 64
Views: 58379

Re: Deluge.app - Native OS X Deluge Client

So this means you're working on a native OS X client? How is it going? About as well as the others, unfortunately... Stuck at the py2app stage. I can create a .app package, but it lacks all the necessary plugins to actually run. And there seems to be an issue with the setup.py that is being created...
by bcode
Fri Jan 21, 2011 10:44 pm
Forum: Mac OS
Topic: Using py2app to make a (distributable) Deluge.app
Replies: 4
Views: 5688

Re: Using py2app to make a (distributable) Deluge.app

There is a user on the sig-python mailing list that figure out how to get around the USER_BASE issue for one of his apps... But he only talks about the solution in very high-level terms, no code examples and I'm not a Python coder (or much of a programmer at all), so I'm still a bit lost. But there ...
by bcode
Fri Jan 21, 2011 10:37 pm
Forum: Mac OS
Topic: Deluge.app - Native OS X Deluge Client
Replies: 64
Views: 58379

Re: Deluge.app - Native OS X Deluge Client

Go figure... while playing with the installed source and fiddling with py2app, I made this icon in preparation for packaging up the App. Something a little more OS X like. @keepitcomplicated, I really like your deluged icon - perhaps we can make a mashup with this one? Still banging my head against ...
by bcode
Mon Aug 23, 2010 12:13 am
Forum: Support
Topic: Deluge 1.3-rc1 w/ FlexGet on Windows
Replies: 20
Views: 13624

Re: Deluge 1.3-rc1 w/ FlexGet on Windows

How does flexget handle RSS feeds that require authorisation (aka logging in/cookie handling). That's a good question - The private tracker that I use puts the authorization cookie in the feed URL, to bypass the need to login each time... gazpachoking, do you have any info that would help answer th...
by bcode
Tue Aug 17, 2010 11:42 pm
Forum: Support
Topic: Deluge 1.3-rc1 w/ FlexGet on Windows
Replies: 20
Views: 13624

Re: Deluge 1.3-rc1 w/ FlexGet on Windows

Hrm, looks like you've got 2 errors going on... It looks like the RSS feed needs to be XML (wasn't sure about that, but your error log seems to suggest it), and part of your Deluge/FlexGet install is not registered with flexget. I'd say the first error is the more important of the two at the moment ...
by bcode
Tue Aug 17, 2010 11:25 pm
Forum: Support
Topic: Deluge 1.3-rc1 w/ FlexGet on Windows
Replies: 20
Views: 13624

Re: Deluge 1.3-rc1 w/ FlexGet on Windows

No worries man. I believe if you want to download every item that shows up in your RSS feed you just need the following in your config.yml file: feeds: feed_name: rss: http://example.com/rss.php?feed=X deluge: yes Once you've saved that, open up a CMD prompt and run: flexget --test -v If it fails, p...
by bcode
Tue Aug 17, 2010 10:40 pm
Forum: Support
Topic: Deluge 1.3-rc1 w/ FlexGet on Windows
Replies: 20
Views: 13624

Re: Deluge 1.3-rc1 w/ FlexGet on Windows

ah, that may have happened to me as well - Windows doesn't like '.' in filenames. To get around this, use the cmd prompt instead.

Start -> Run... -> CMD

Type the following commands:

1.) cd C:\Users\YOURUSERFOLDER\
2.) mkdir .flexget
3.) exit

Let me know if this gives you any trouble.
by bcode
Tue Aug 17, 2010 10:23 pm
Forum: Support
Topic: Deluge 1.3-rc1 w/ FlexGet on Windows
Replies: 20
Views: 13624

Re: Deluge 1.3-rc1 w/ FlexGet on Windows

Indeed, you'll need to create it yourself... 1.) Create a new folder in your home folder called .flexget (C:\Users\YOURUSERFOLDER\.flexget\) 2.) Inside .flexget create a text file called config.yml 3.) Check out this page to help create your config file - http://flexget.com/wiki/Cookbook/Series/Delu...
by bcode
Mon Aug 09, 2010 11:13 pm
Forum: Support
Topic: Deluge 1.3-rc1 w/ FlexGet on Windows
Replies: 20
Views: 13624

Re: Deluge 1.3-rc1 w/ FlexGet on Windows

Have a look at this post I made a few days ago... it should help you on your journey =)

http://forum.deluge-torrent.org/viewtop ... =7&t=32705
by bcode
Mon Aug 09, 2010 4:10 pm
Forum: Plugins
Topic: [Plugin] FlexGet - RSS Solution (Deluge 1.1 and 1.2+)
Replies: 172
Views: 178284

Re: Deluge RSS plugin for FlexGet (works with 1.1 and 1.2+)

I was not able to call "flexget --cron" directly using the Windows 7 Task Scheduler, as it wouldn't actually run flexget. Instead, I had to run - cmd /c - (the '/c' closes the cmd window when the command is finished running) with flexget as an argument, like so: cmd /c "flexget --cron...