From 3ee4c92dc5f812d9a5d61125e662dc67d7e93fe9 Mon Sep 17 00:00:00 2001 From: DDSDerek <108336573+DDSDerek@users.noreply.github.com> Date: Sun, 13 Aug 2023 10:52:50 +0800 Subject: [PATCH 1/5] fix --- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 7be9ab98..0ec61ffa 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -1,6 +1,6 @@ name: 问题反馈 description: File a bug report -title: "[错误报告]请在此处简单描述你的问题" +title: "[错误报告]: 请在此处简单描述你的问题" labels: ["bug"] body: - type: markdown From f49999774c2026ebeda24c670eeb9b2857917d0f Mon Sep 17 00:00:00 2001 From: DDSDerek <108336573+DDSDerek@users.noreply.github.com> Date: Sun, 13 Aug 2023 10:59:01 +0800 Subject: [PATCH 2/5] fix --- .github/ISSUE_TEMPLATE/feature_request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index ed408c56..d89e18c7 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -26,5 +26,5 @@ body: id: references attributes: label: 参考资料 - description: 可以列举一些参考资料。 + description: 可以列举一些参考资料,但是不要引用同类但商业化软件的任何内容。 placeholder: "参考资料" From 42520ca79041bc795800fe92e9a0fe2a0dea697a Mon Sep 17 00:00:00 2001 From: DDSDerek <108336573+DDSDerek@users.noreply.github.com> Date: Sun, 13 Aug 2023 11:00:47 +0800 Subject: [PATCH 3/5] fix --- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 0ec61ffa..a4d72f91 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -40,7 +40,7 @@ body: options: - 主程序运行问题 - 插件问题 - - Docker运行及环境问题 + - Docker或运行环境问题 - 其他问题 validations: required: true From a85527c94aebb198df6bdc7bca6d5dc261eb3e3a Mon Sep 17 00:00:00 2001 From: DDSDerek <108336573+DDSDerek@users.noreply.github.com> Date: Sun, 13 Aug 2023 11:04:38 +0800 Subject: [PATCH 4/5] feat: issue config --- .github/ISSUE_TEMPLATE/config.yml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/config.yml diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 00000000..f8f8a9b6 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,8 @@ +blank_issues_enabled: false +contact_links: + - name: Telegram 频道 + url: https://t.me/moviepilot_channel + about: 更新日志 + - name: Telegram 交流群 + url: https://t.me/moviepilot_official + about: 交流互助 From 49af85cb8c319f3ebaa3d432d414ec4d9a779ff0 Mon Sep 17 00:00:00 2001 From: mayun110 Date: Sun, 13 Aug 2023 13:00:21 +0800 Subject: [PATCH 5/5] =?UTF-8?q?fix=20BestFilmVersion=20datetime=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/plugins/bestfilmversion/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/plugins/bestfilmversion/__init__.py b/app/plugins/bestfilmversion/__init__.py index ee4b24b8..f12758ed 100644 --- a/app/plugins/bestfilmversion/__init__.py +++ b/app/plugins/bestfilmversion/__init__.py @@ -489,7 +489,7 @@ class BestFilmVersion(_PluginBase): "poster": mediainfo.get_poster_image(), "overview": mediainfo.overview, "tmdbid": mediainfo.tmdb_id, - "time": datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S") + "time": datetime.now().strftime("%Y-%m-%d %H:%M:%S") }) # 保存历史记录 self.save_data('history', history) @@ -668,7 +668,7 @@ class BestFilmVersion(_PluginBase): "poster": mediainfo.get_poster_image(), "overview": mediainfo.overview, "tmdbid": mediainfo.tmdb_id, - "time": datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S") + "time": datetime.now().strftime("%Y-%m-%d %H:%M:%S") }) # 保存历史记录 self.save_data('history', history)