[Plugin] MyScheduler v2.0.0a1 (Forced Start) - Testers needed for Deluge 2.x

Suggest, post, or discuss plugins for Deluge
flash_flooding

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

Post by flash_flooding »

Plugin looks good but every time I hit "apply" it resets the slow number of active seeding to 5.
h3llrais3r
Member
Member
Posts: 34
Joined: Sat Aug 22, 2015 10:42 am

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

Post 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).
h3llrais3r
Member
Member
Posts: 34
Joined: Sat Aug 22, 2015 10:42 am

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

Post 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)
cmann

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

Post 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.
h3llrais3r
Member
Member
Posts: 34
Joined: Sat Aug 22, 2015 10:42 am

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

Post 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.
h3llrais3r
Member
Member
Posts: 34
Joined: Sat Aug 22, 2015 10:42 am

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

Post 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.
h3llrais3r
Member
Member
Posts: 34
Joined: Sat Aug 22, 2015 10:42 am

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

Post 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.
halhal
New User
New User
Posts: 4
Joined: Fri Jun 23, 2017 9:13 pm

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

Post 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.
h3llrais3r
Member
Member
Posts: 34
Joined: Sat Aug 22, 2015 10:42 am

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

Post 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...
halhal
New User
New User
Posts: 4
Joined: Fri Jun 23, 2017 9:13 pm

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

Post 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.
Post Reply