Search found 94 matches

by basher
Wed Mar 15, 2023 12:17 pm
Forum: Plugins
Topic: [Plugin] Auto Remove Plus v2.0.0
Replies: 108
Views: 1347750

Re: [Plugin] Auto Remove Plus v2.0.0

But I can't figure out how I make it delete torrents with a specific label, based on seed time, preferably days, since I'm going for 30 and 60 days on two different labels. Can someone explain to me how it should be done? If you're using my version, then seed time rules are configured in hours. Jus...
by basher
Wed Mar 15, 2023 12:01 pm
Forum: Plugins
Topic: [Plugin] Auto Remove Plus v0.6.1
Replies: 274
Views: 1039625

Re: [Plugin] Auto Remove Plus v0.6.1

Nanobug wrote: Wed Mar 15, 2023 11:57 am Then renamed it to AutoRemovePlus-2.0.0-py3.10.egg since my container uses python version 3.10.9
Note as long as your runtime is py3, you could remove the python ver from the filename altogether - ie AutoRemovePlus-2.0.0.egg, and it'd work with variety of py3 versions.
by basher
Wed Mar 15, 2023 11:49 am
Forum: Plugins
Topic: [Plugin] dlimit v0.1
Replies: 8
Views: 35330

Re: [Plugin] dlimit v0.1

No sweat, just had to make that comment :D
mhertz wrote: Mon Mar 13, 2023 11:54 am also was gonna check if you had added AddTorrentCheck yourself, or forked, to your repo's
Nope, but can do. Where can I fork it from?
by basher
Wed Mar 15, 2023 11:33 am
Forum: Plugins
Topic: [Plugin] Auto Remove Plus v0.6.1
Replies: 274
Views: 1039625

Re: [Plugin] Auto Remove Plus v0.6.1

I'm having trouble enabling AutoRemovePlus in my Deluge on the WebUI. But no matter what I do, it's not enabling the pluging. Any idea where to start with this? How did you install the plugin, and which version of it? It's best to drop the .egg file into the /plugins directory, as opposed to instal...
by basher
Mon Mar 13, 2023 11:20 am
Forum: Plugins
Topic: [Plugin] dlimit v0.1
Replies: 8
Views: 35330

Re: [Plugin] dlimit v0.1

Not quite following - how's this different than limiting speeds via built-in per-torrent or global settings in deluge?
Also, @mhertz, you know what I'm going to say -- where's the github project? :)
by basher
Wed Mar 01, 2023 10:28 am
Forum: Support
Topic: seeding_time - what is the ultimate source of truth?
Replies: 6
Views: 12694

Re: seeding_time - what is the ultimate source of truth?

Bit of an update here. I've been using ARP with "force_reannounce_before_remove": true , causing torrent to be force-reannounced prior to removal. My experience shows this still doesn't fix the issue where at least some trackers flag you for hit&run because their seed time doesn't matc...
by basher
Wed Mar 01, 2023 10:10 am
Forum: Plugins
Topic: What Is 20 Minutes?
Replies: 28
Views: 83393

Re: What Is 20 Minutes?

chnaski wrote: Tue Feb 28, 2023 9:45 pm ok so this?
Yup, that should do it.
by basher
Wed Mar 01, 2023 10:08 am
Forum: Plugins
Topic: What Is 20 Minutes?
Replies: 28
Views: 83393

Re: What Is 20 Minutes?

Anyway, I just made a small change to not have the loop run every 2 secs and restart sleep every 5 therein, little counter-intuitive, and additionally I noticed that indeed the sleep blocks. Well obviously, but I thought that when run in a subprocess ala loopingCall or callLater from twisted, then ...
by basher
Tue Feb 28, 2023 3:59 pm
Forum: Plugins
Topic: What Is 20 Minutes?
Replies: 28
Views: 83393

Re: What Is 20 Minutes?

If I remember right then I fixed it to work for idiocracy in the first unofficial windows installer thread, and I can't remember but saw a snippet posted using time.sleep(), which stalls whole deluge main UI thread if not remember wrong, so twisted reactor.callLater() or alike preferred I'd guess, ...
by basher
Tue Feb 28, 2023 3:37 pm
Forum: Plugins
Topic: What Is 20 Minutes?
Replies: 28
Views: 83393

Re: What Is 20 Minutes?

There's also a plugin for this btw(so using deluge api instead of external calls to deluge-console), curtesey idiocracy: https://forum.deluge-torrent.org/viewtopic.php?f=9&t=54638 Been using a bash script myself for this purpose, but this is considerably better way of doing this. Especially con...