Hello,
Has anyone made, or is working on a prowl plugin to send notifications to an iPhone?
An example being, when something has finished downloading.
http://prowl.weks.net/
http://itunes.apple.com/us/app/prowl-gr ... 76271?mt=8
Thanks for your time.
[Request] Prowl plugin? (iPhone)
Re: [Request] Prowl plugin? (iPhone)
is this what you are looking for: http://forum.deluge-torrent.org/viewtop ... =9&t=32315
Re: [Request] Prowl plugin? (iPhone)
It is what he wanted, except the method that I was using to send notifications to Growl meant that they wouldn't get forwarded to iPhone (Prowl)
I have fixed it now though.
https://github.com/downloads/Kabal/Delu ... -py2.6.egg

Enjoy!
I have fixed it now though.
https://github.com/downloads/Kabal/Delu ... -py2.6.egg

Enjoy!
Re: [Request] Prowl plugin? (iPhone)
I had success using the following script with the execute plugin.
Using the Growl plugin means that if your computer running Growl needs to be on to foreword the notification... not that I was able get that working before I gave up. Using the script will probably be preferable if you are running Growl and the Deluge daemon on different computers, especially if growl is not even available for the system the Deluge daemon is running on (i.e. not osx or windows)
Code: Select all
#!/bin/bash
curl -k https://prowl.weks.net/publicapi/add -F apikey=XXXXXXXXXXX -F application="Deluge" -F description="$2 Download Completed" &