Wiki: https://flexget.com/ Forum: https://discuss.flexget.com/ Bugs: https://github.com/Flexget/Flexget/issues | Got a problem? Upload logs and config to a paste service
gazpachoking on clean
Automated ChangeLog update (compare)
FlexGet-Bot on master
Automated ChangeLog update (compare)
FlexGet-Bot on develop
v3.3.18 Prepare v3.3.19.dev (compare)
FlexGet-Bot on v3.3.18
FlexGet-Bot on master
Make colorizing markup when wri… Prepare v3.3.18.dev Merge pull request #3470 from F… and 1 more (compare)
gazpachoking on plex_watchlist
[add] plex_watchlist: Add a new… (compare)
gazpachoking on develop
Make colorizing markup when wri… Merge pull request #3470 from F… (compare)
antivirtel (discord)
Hi, I've just seen this: https://flexget.com/Plugins/series/season_packs - is there a way to enable this globally for all series? Adding it to the global template like this doesn't seem to work:
templates:
global:
series:
season_packs: always
Thanks!
BrutuZ (discord)
Just make up your own
BrutuZ (discord)
Call it whatever you like: all, default, potato...
antivirtel (discord)
Hm, I just realised they're already in a group :)
BrutuZ (discord)
Neat, makes it a single line implementation 🙂
Ram-Z (irc)
i.e. the selected entry failed to download, I'd like to try again the same episode with a different entry.
ksurl (discord)
flexget seen forget “title”
ksurl (discord)
I submitted a PR to add apt caching for the main build and test workflow
ksurl (discord)
It should. If all else fails you could run the task with —disable seen
Ram-Z (irc)
This is an attempt to automate this.
Ram-Z (irc)
I can run a script on download failure. In that script I'd like to notify flexget that this episode has not been downloaded, please try again.
Ram-Z (irc)
I'll have a play with the seen
cli. Thank you.
ksurl (discord)
Oh it could be under -cli-config and then injecting disable: seen instead of that disable flag
Ram-Z (irc)
Probably flexget series remove <show> <ep-id>
is a better approach.
Ram-Z (irc)
Docs suggest it removes that SxxExx, but doesn't affect the seen db.
Ram-Z (irc)
Oh, there might be an API then? Good shout, I'll have a look at that.
Ram-Z (irc)
I suppose I could write a task that does that for me and trigger it via API.
Ram-Z (irc)
Ouf this is getting quite awkward. The api endpoint is there, but both the {id} and {ep-id} are internal ids which need to be requested from the api first, via /series/search to get {series-id}, then requests all episodes via /series/{id}/episodes, loop through them to match them the episode identifier SxxExx to extract the {ep-id}, then finally PUT /series/{id}/episodes/{ep-id}/releases to reset
Ram-Z (irc)
them all.
Fonville (slack)
HI devs,
I have a question of how to approach this issue for improving the npo_watchlist plugin.
NPO recently started sending an e-mail for every login that happens on the NPO account, which makes every time Flexget runs the tasks it is sending this e-mail.
So if possible, I would like the plugin to retain its cookies, so that it can re-use the login it already had from the last task run. What would be the approach to store such data for the plugin within Flexget?
Thanks!
BrutuZ (discord)
Login on browser, then have Flexget pass them with https://flexget.com/Plugins/cookies ?
rminus (discord)
I think it has to be done at the org settings level
chewy75 (discord)
Any way to shut off crash reports until it's fixed?BrutuZ (discord)
Depending on the identifier https://flexget.com/Plugins/series/regexps#Episodenumberingmatching could be your way
BrutuZ (discord)
Quick question about the seen
plugin: Does it count entries as seen if any or all fields have been seen?
- {title: 'MyEntry', url: 'https://sameurl.com'}
- {title: 'MyEntry', url: 'https://otherurl.com'}
- {title: 'ThatEntry', url: 'https://sameurl.com'}
Would only the last 2 be rejected by seen
due to one field being repeated or would they all be left alone because both fields aren't repeated?
Also, website cert expired https://flexget.com/Plugins/seen
aidan (discord)
@BrutuZ Looking at the code, if the first one is accepted, the 2nd two should then be rejected. title, url and original_url are the default fields used to determine if something has been seen - any one of those values from an accepted entry will cause future entries to be rejected