Page 3 of 5

Re: [Plugin] MyScheduler v0.3.3 (Forced Start)

Posted: Wed Sep 14, 2016 2:19 pm
by flash_flooding
Plugin looks good but every time I hit "apply" it resets the slow number of active seeding to 5.

Re: [Plugin] MyScheduler v0.3.3 (Forced Start)

Posted: Wed Sep 14, 2016 5:39 pm
by h3llrais3r
flash_flooding wrote:Plugin looks good but every time I hit "apply" it resets the slow number of active seeding to 5.
I assume you mean 'apply' in the preferences?
I tried this myself, but the number of 'active seeding' remains to it's entered value.
Since I did not modify anything to that logic, you should probably have the same behaviour with the original scheduler...
But perhaps it's some leftover settings from a previous version?
I would advise to try with a clean install (if it's not too much work for you).

Re: [Plugin] MyScheduler v0.3.3 (Forced Start)

Posted: Wed Sep 14, 2016 5:51 pm
by h3llrais3r
Wezz wrote:I see. But would it be possible for you to make the forced start bypass the caps for a torrent completely if it's capped? Isn't that what forced start does at the moment? Let a torrent go uncapped, if it's in the paused (red) schedule. So it wouldn't be that hard, would it, to also let the capped (yellow) torrents go uncapped if they are forced start?
I don't think it's possible right now, because the slow settings are set on the session, which is shared acros all torrents.
So I don't see how I could do this for only the torrent we are trying to force.
Snapshot from code where the slow settings are stored:

Code: Select all

# This is Yellow (Slow), so use the settings provided from the user
session = component.get("Core").session
session.set_download_rate_limit(int(self.config["low_down"] * 1024))
session.set_upload_rate_limit(int(self.config["low_up"] * 1024))
settings = session.settings()
settings.active_limit = self.config["low_active"]
settings.active_downloads = self.config["low_active_down"]
settings.active_seeds = self.config["low_active_up"]
session.set_settings(settings)

Re: [Plugin] MyScheduler v0.3.3 (Forced Start)

Posted: Sat Nov 19, 2016 5:35 pm
by cmann
Even if you can't disable the limits per torrent, a quick way to enable/disable the entire scheduler would also be nice.

Re: [Plugin] MyScheduler v0.3.4 (Forced Start)

Posted: Tue Jan 10, 2017 8:43 pm
by h3llrais3r
Created a new minor version 0.3.4 to put the checkbox in the webui right click menu at the correct location (under pause and resume items).
You can find it at the opening post.

Re: [Plugin] MyScheduler v0.3.5 (Forced Start)

Posted: Wed Jan 18, 2017 9:31 pm
by h3llrais3r
Created a new minor version 0.3.5 to put the checkbox in the gtkui right click menu at the correct location (under pause and resume items).
You can find it at the opening post.

Re: [Plugin] MyScheduler v0.3.6 (Forced Start)

Posted: Mon Jan 30, 2017 7:09 pm
by h3llrais3r
Created a new minor version 0.3.6 to put the checkbox in the webui torrent options tab.
You can find it at the opening post.

Re: [Plugin] MyScheduler v0.3.6 (Forced Start)

Posted: Fri Jun 23, 2017 9:21 pm
by halhal
does the plugin pause the torrent different than the original plugin (shipped with deluge) ?

with the original one I can move the torrents up and down the queue when they are not running.
but with this plugin I cant.

Re: [Plugin] MyScheduler v0.3.6 (Forced Start)

Posted: Mon Jun 26, 2017 6:48 pm
by h3llrais3r
No it doesn't pause it otherwise...
But I'm not sure what you mean, because you can still change the order of the torrents...

Re: [Plugin] MyScheduler v0.3.6 (Forced Start)

Posted: Tue Jun 27, 2017 8:27 pm
by halhal
i mean in the red period (when the plugin stops the torrents) I cant move the torrents in queue unless I force start them.
this doesnt happen with the plugin shipped with the program.