forked from vladimir-tutin/Plex-Auto-Collections
-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
2.4.0 Filter/Subfilter Overall, tmdb_director, and tmdb_writer #76
Merged
Merged
Changes from 32 commits
Commits
Show all changes
36 commits
Select commit
Hold shift + click to select a range
656bde3
Merge pull request #5 from mza921/master
meisnate12 d206f7b
Bump pyyaml from 5.1.2 to 5.3.1
dependabot[bot] cf43b95
Merge pull request #7 from mza921/master
meisnate12 1faee56
Merge pull request #6 from meisnate12/dependabot/pip/pyyaml-5.3.1
meisnate12 cc8e0d5
added method to detail
meisnate12 7ed0018
combined methods
meisnate12 51496a7
update trakt_tools
meisnate12 e6cb027
Merge pull request #8 from mza921/master
meisnate12 d7d4c68
method rename
meisnate12 be0a1e1
2.3.0 Revamped Filters and Subfilters
meisnate12 878a7c3
typo
meisnate12 392b12e
fixed two errors
meisnate12 405b6d1
added tmdb_director
meisnate12 0e2d05f
collection_sort -> collection_order
meisnate12 5f65bdb
updated CHANGELOG
meisnate12 9d60c0f
added tmdb_writer
meisnate12 7b63417
README fix
meisnate12 22e10a7
README edit
meisnate12 d79a628
days_from_now -> max_age
meisnate12 1c19c88
! -> .not
meisnate12 0827293
check methods first
meisnate12 47aee95
small fixes
meisnate12 fe62ae6
Overhaul how the program checks input and .and
meisnate12 425c881
bug fix
meisnate12 f741f34
filters->searches subfilters->collection_filters
meisnate12 d31f169
Bump plexapi from 4.1.2 to 4.2.0
dependabot[bot] 208ffcf
Major Config checks created plex_search
meisnate12 c57b78b
Merge pull request #9 from meisnate12/dependabot/pip/plexapi-4.2.0
meisnate12 0b4617b
Bump plexapi from 4.1.2 to 4.2.0
meisnate12 24a4c7b
README edits
meisnate12 22ddd65
README fix
meisnate12 c44982a
typo
meisnate12 40dba4a
removed decade and fixed bug
meisnate12 7b14b7a
Merge remote-tracking branch 'upstream/master'
meisnate12 d53c3c8
decades is back
meisnate12 b38f082
Merge remote-tracking branch 'upstream/master'
meisnate12 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm confused about this. So if
plex_search
does an AND, how do I do an OR? How would this README example work:There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it ANDs different attributes and ORs multiples of the same attribute I can try and clarify that in the readme. The program will also tell you exactly how it's searching so for your example it would look like this:
it will show each AND on the subsequent lines
if you want to AND the same attribute you have to use subfilters
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Got it. Nice addition to report the actual query.