| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- name: Bug 报告
- description: 提交一个 bug
- labels:
- - "z:question"
- body:
- - type: markdown
- attributes:
- value: |
- 感谢你来到这里
- 在反馈前, 请确认你已经做了下面这些事情
- - 阅读过 [「提问的智慧」](https://github.com/ryanhanwu/How-To-Ask-Questions-The-Smart-Way/blob/main/README-zh_CN.md)
- - 阅读过 [「如何有效地报告 Bug」](https://www.chiark.greenend.org.uk/~sgtatham/bugs-cn.html)
- - 对照过 [Releases](https://github.com/mamoe/mirai/releases),相关问题未在近期更新中解决
- - 搜索了已有的 [issues](https://github.com/mamoe/mirai/issues?q=is%3Aissue) 列表中有没相关的信息
- - 阅读了 [Mirai 的相关文档](https://github.com/mamoe/mirai/tree/dev/docs)
- - type: textarea
- id: issue-description
- attributes:
- label: 问题描述
- description: 在此详细描述你遇到的问题
- validations:
- required: true
- - type: textarea
- id: reproduce
- attributes:
- label: 复现
- description: 在这里简略说明如何让这个问题再次发生
- placeholder: |
- 在这里简略说明如何让这个问题再次发生
- 可使用 1. 2. 3. 的列表格式,或其他任意恰当的格式
- 如果你不确定如何复现, 请尽量描述发生当时的情景
-
- 建议提供相关代码
- validations:
- required: true
- - type: input
- id: version-mirai-core
- attributes:
- label: mirai-core 版本
- description: "填写你正在使用的版本号,如 `2.8.2`"
- placeholder: 2.8.2
- validations:
- required: true
- - type: dropdown
- id: bot-protocol
- attributes:
- label: bot-protocol
- options:
- - ANDROID_PHONE
- - ANDROID_PAD
- - ANDROID_WATCH
- - IPAD
- - MACOS
- validations:
- required: true
- - type: textarea
- id: version-others
- attributes:
- label: 其他组件版本
- description: |
- 如果你正在通过 mirai-console 或其他间接使用 mirai-core 的中间件(如 mirai-native、mirai-api-http 或者其他第三方 SDK), 请同样提供版本号
- 如果你正在使用 mirai-console, 请在此处粘贴 `/status` 命令的结果
- placeholder: |
- mirai-api-http: `2.3.3`
- - type: textarea
- id: journal-system
- attributes:
- label: 系统日志
- description: |
- 请提供全面的相关日志. 请不要截图.
- 如果日志过大, 可以在 `补充信息` 上传文件.
- 如果你遇到的问题是 "消息收不到", "收消息报错" 等与协议有关的问题, 请一定提交日志. 若不提交日志, 你的问题可能会被直接关闭.
- render: 'text'
- validations:
- required: false
- - type: textarea
- id: journal-network
- attributes:
- label: 网络日志
- description: |
- 如果网络日志 (Net xxx) 不包含在系统日志中, 请额外提供网络日志. 若已经包含, 请忽略.
- 请提供全面的网络日志. 请不要截图.
- 若使用 Mirai Console 一般网络日志位于 bots/<****>/logs 里
- 如果日志过大, 可以在 `补充信息` 上传文件.
- render: text
- validations:
- required: false
- - type: textarea
- id: additional
- attributes:
- label: 补充信息
- description: 如有必要,你可以在下文继续添加其他信息
- - type: markdown
- attributes:
- value: |
- ----
- 在发出 issue 前, 请确认
- - 全部信息已经填写完毕, 特别是 「其他组件版本」
- - 报告中没有令人反感的语言
- - 「复现」的描述是否足够详细准确
|