mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-13 00:07:13 +00:00
[37] add '.any' modifier to a few search attributes (#2229)
This commit is contained in:
parent
a1063e3487
commit
a48c727118
3 changed files with 32 additions and 10 deletions
|
@ -32,4 +32,5 @@ Fixed #2176 `clean_bundles`, `optimize`, and `empty_trash` not working as global
|
|||
Fixed #2186 `total_runtime` will now trigger an overlay update
|
||||
Fixed #2195 an image on the docs was a dead link
|
||||
Fixes sort order of resolution collections
|
||||
Fixes #2228 ".any" not accepted for a variety of imdb_search parameters
|
||||
Various other Minor Fixes
|
||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
2.0.2-build36
|
||||
2.0.2-build37
|
||||
|
|
|
@ -42,16 +42,37 @@ chart_urls = {
|
|||
"trending_tamil": "india/tamil",
|
||||
"trending_telugu": "india/telugu",
|
||||
}
|
||||
|
||||
imdb_search_attributes = [
|
||||
"limit", "sort_by", "title", "type", "type.not", "release.after", "release.before", "rating.gte", "rating.lte",
|
||||
"votes.gte", "votes.lte", "genre", "genre.any", "genre.not", "topic", "topic.any", "topic.not",
|
||||
"alternate_version", "alternate_version.not", "crazy_credit", "crazy_credit.not", "location", "location.not",
|
||||
"goof", "goof.not", "plot", "plot.not", "quote", "quote.not", "soundtrack", "soundtrack.not",
|
||||
"trivia", "trivia.not", "event", "event.winning", "imdb_top", "imdb_bottom", "company", "content_rating",
|
||||
"country", "country.any", "country.not", "country.origin", "keyword", "keyword.any",
|
||||
"keyword.not", "series", "series.not", "list", "list.any", "list.not", "language", "language.any", "language.not",
|
||||
"language.primary", "popularity.gte", "popularity.lte", "cast", "cast.any", "cast.not", "runtime.gte",
|
||||
"runtime.lte", "adult",
|
||||
"limit",
|
||||
"sort_by",
|
||||
"title",
|
||||
"type", "type.not",
|
||||
"release.after", "release.before", "rating.gte", "rating.lte",
|
||||
"votes.gte", "votes.lte",
|
||||
"genre", "genre.any", "genre.not",
|
||||
"topic", "topic.any", "topic.not",
|
||||
"alternate_version", "alternate_version.any", "alternate_version.not",
|
||||
"crazy_credit", "crazy_credit.any", "crazy_credit.not",
|
||||
"location", "location.any", "location.not",
|
||||
"goof", "goof.any", "goof.not",
|
||||
"plot", "plot.any", "plot.not",
|
||||
"quote", "quote.any", "quote.not",
|
||||
"soundtrack", "soundtrack.any", "soundtrack.not",
|
||||
"trivia", "trivia.any", "trivia.not",
|
||||
"event", "event.winning",
|
||||
"imdb_top", "imdb_bottom",
|
||||
"company",
|
||||
"content_rating",
|
||||
"country", "country.any", "country.not", "country.origin",
|
||||
"keyword", "keyword.any", "keyword.not",
|
||||
"series", "series.not",
|
||||
"list", "list.any", "list.not",
|
||||
"language", "language.any", "language.not", "language.primary",
|
||||
"popularity.gte", "popularity.lte",
|
||||
"cast", "cast.any", "cast.not",
|
||||
"runtime.gte", "runtime.lte",
|
||||
"adult",
|
||||
]
|
||||
sort_by_options = {
|
||||
"popularity": "POPULARITY",
|
||||
|
|
Loading…
Reference in a new issue