-
Notifications
You must be signed in to change notification settings - Fork 1
Description
First suggestion:
andrewe: @- Journey Over - I was confused by the “trash guide” naming and finally looked up trash-guides.info …super helpful. Does your userscript follow The Golden Rule?
(?=.1080)(?!.(?:HEVC|265))|(?=.*(?:4K|2160))(?!.*264)
Currently the code doesn't support negative lookaheads at all, I need to look into adding this as an option. Idea is to possibly add a small button next to the quality buttons or make the buttons themselves function as a switch between positive and negative lookahead only when in the and mode.
Added
I also need to figure out a way to support adding a | between alternative groupings cleanly so we can do things like (?=.*1080)(?!.*(?:HEVC|265))|(?=.*(?:4K|2160))(?!.*264)
This will take a while to get added, but will eventually get added in at some point.
Second suggestion:
di5c0rduser: @- Journey Over - if you are taking the requests, could you please add atmos as one of the categories next to remux button?
This is easy, I just need to add an extra regex pattern to the quality selection stuff. Will probably be the first thing I do before I try to work on the first suggestion.
Added