From d79f28ce6e75d41b27be3a367310bdc6b24f3df6 Mon Sep 17 00:00:00 2001 From: meisnate12 Date: Fri, 2 Sep 2022 12:06:37 -0400 Subject: [PATCH] [11] fix imdb_watchlist --- .github/ISSUE_TEMPLATE/1.bug_report.yml | 1 - ...{3.docs_request.yml => 2.docs_request.yml} | 1 - .github/ISSUE_TEMPLATE/2.feature_request.yml | 31 ------------------- .github/ISSUE_TEMPLATE/config.yml | 3 ++ VERSION | 2 +- docs/metadata/details/metadata.md | 3 ++ modules/imdb.py | 2 +- 7 files changed, 8 insertions(+), 35 deletions(-) rename .github/ISSUE_TEMPLATE/{3.docs_request.yml => 2.docs_request.yml} (93%) delete mode 100644 .github/ISSUE_TEMPLATE/2.feature_request.yml diff --git a/.github/ISSUE_TEMPLATE/1.bug_report.yml b/.github/ISSUE_TEMPLATE/1.bug_report.yml index 6d2f34d9..5a0e2ecc 100644 --- a/.github/ISSUE_TEMPLATE/1.bug_report.yml +++ b/.github/ISSUE_TEMPLATE/1.bug_report.yml @@ -1,6 +1,5 @@ name: Bug Report description: Please do not use bug reports for support issues. -title: '[Bug]: ' labels: ['status:not-yet-viewed', 'bug'] assignees: 'meisnate12' diff --git a/.github/ISSUE_TEMPLATE/3.docs_request.yml b/.github/ISSUE_TEMPLATE/2.docs_request.yml similarity index 93% rename from .github/ISSUE_TEMPLATE/3.docs_request.yml rename to .github/ISSUE_TEMPLATE/2.docs_request.yml index 7933b393..57644a91 100644 --- a/.github/ISSUE_TEMPLATE/3.docs_request.yml +++ b/.github/ISSUE_TEMPLATE/2.docs_request.yml @@ -1,6 +1,5 @@ name: Wiki Request description: A request to update or improve Plex Meta Manager's wiki -title: '[Docs]: ' labels: ['status:not-yet-viewed', 'documentation'] assignees: 'meisnate12' diff --git a/.github/ISSUE_TEMPLATE/2.feature_request.yml b/.github/ISSUE_TEMPLATE/2.feature_request.yml deleted file mode 100644 index b9247c4c..00000000 --- a/.github/ISSUE_TEMPLATE/2.feature_request.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: Feature Request -description: Suggest a new feature for Plex Meta Manager. -title: '[Feature]: ' -labels: ['status:not-yet-viewed', 'enhancement'] -assignees: 'meisnate12' - -body: - - type: markdown - attributes: - value: > - Thanks for taking the time to file a feature request! Please fill out this form as completely as possible. - - type: textarea - id: problem-relation - attributes: - label: Is your feature request related to a problem? Please elaborate. - description: A clear and concise description of what the problem is. - placeholder: eg. I'm always frustrated when... - validations: - required: true - - type: textarea - id: solution - attributes: - label: Describe the solution you'd like - description: A clear and concise description of what you want to happen. - validations: - required: true - - type: textarea - id: additional-info - attributes: - label: Additional Information - description: "[optional] You may provide additional context or screenshots for us to better understand the need of the feature." diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index d165edc6..516c2f01 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,5 +1,8 @@ blank_issues_enabled: false contact_links: + - name: Fwature Requests + url: https://features.metamanager.wiki + about: Please use the features site to submit and vote on features. - name: Plex Meta Manager Wiki url: https://metamanager.wiki about: Please check the wiki to see if your question has already been answered. diff --git a/VERSION b/VERSION index fc754fd5..4edfbb61 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.17.3-develop10 +1.17.3-develop11 diff --git a/docs/metadata/details/metadata.md b/docs/metadata/details/metadata.md index 4545e490..9f1b5b55 100644 --- a/docs/metadata/details/metadata.md +++ b/docs/metadata/details/metadata.md @@ -41,6 +41,9 @@ None of these details work with Playlists. | `item_label` | **Description:** Appends new labels to every movie/show in the collection
**Values:** Comma-separated string of labels to append | | `item_label.remove` | **Description:** Removes existing labels from every movie/show in the collection
**Values:** Comma-separated string of labels to remove | | `item_label.sync` | **Description:** Matches the labels of every movie/show in the collection to the labels provided (Leave blank to remove all labels)
**Values:** Comma-separated string of labels to sync | +| `item_genre` | **Description:** Appends new genres to every movie/show in the collection
**Values:** Comma-separated string of genres to append | +| `item_genre.remove` | **Description:** Removes existing genres from every movie/show in the collection
**Values:** Comma-separated string of genres to remove | +| `item_genre.sync` | **Description:** Matches the genres of every movie/show in the collection to the genres provided (Leave blank to remove all genres)
**Values:** Comma-separated string of genres to sync | | `non_item_remove_label` | **Description:** Matches every movie/show that has the given label and is not in the collection and removes the label
**Values:** Comma-separated string of labels to remove | | `item_lock_poster` | **Description:** Locks/Unlocks the poster of every movie/show in the collection
**Default:** `None`
**Values:**
`true`Lock
`false`Unlock
| | `item_lock_background` | **Description:** Locks/Unlocks the background of every movie/show in the collection
**Default:** `None`
**Values:**
`true`Lock
`false`Unlock
| diff --git a/modules/imdb.py b/modules/imdb.py index bcc282c5..bf28a43d 100644 --- a/modules/imdb.py +++ b/modules/imdb.py @@ -72,7 +72,7 @@ class IMDb: valid_users = [] for user in util.get_list(users): user_id = None - if not user.startswith("ur"): + if user.startswith("ur"): try: user_id = int(user[2:]) except ValueError: