Merge remote-tracking branch 'origin/main'

This commit is contained in:
jxxghp 2023-08-13 14:06:00 +08:00
commit 29485a9752
4 changed files with 13 additions and 5 deletions

View File

@ -1,6 +1,6 @@
name: 问题反馈 name: 问题反馈
description: File a bug report description: File a bug report
title: "[错误报告]请在此处简单描述你的问题" title: "[错误报告]: 请在此处简单描述你的问题"
labels: ["bug"] labels: ["bug"]
body: body:
- type: markdown - type: markdown
@ -40,7 +40,7 @@ body:
options: options:
- 主程序运行问题 - 主程序运行问题
- 插件问题 - 插件问题
- Docker运行环境问题 - Docker运行环境问题
- 其他问题 - 其他问题
validations: validations:
required: true required: true

8
.github/ISSUE_TEMPLATE/config.yml vendored Normal file
View File

@ -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: 交流互助

View File

@ -26,5 +26,5 @@ body:
id: references id: references
attributes: attributes:
label: 参考资料 label: 参考资料
description: 可以列举一些参考资料 description: 可以列举一些参考资料,但是不要引用同类但商业化软件的任何内容
placeholder: "参考资料" placeholder: "参考资料"

View File

@ -489,7 +489,7 @@ class BestFilmVersion(_PluginBase):
"poster": mediainfo.get_poster_image(), "poster": mediainfo.get_poster_image(),
"overview": mediainfo.overview, "overview": mediainfo.overview,
"tmdbid": mediainfo.tmdb_id, "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) self.save_data('history', history)
@ -668,7 +668,7 @@ class BestFilmVersion(_PluginBase):
"poster": mediainfo.get_poster_image(), "poster": mediainfo.get_poster_image(),
"overview": mediainfo.overview, "overview": mediainfo.overview,
"tmdbid": mediainfo.tmdb_id, "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) self.save_data('history', history)