bug_report_zh.yml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. name: bug反馈
  2. description: "提交 Xray-core bug"
  3. body:
  4. - type: checkboxes
  5. attributes:
  6. label: 完整性要求
  7. description: |-
  8. 请勾选以下所有选项以证明您已经阅读并理解了以下要求,否则该 issue 将被关闭。
  9. options:
  10. - label: 我保证阅读了文档,了解所有我编写的配置文件项的含义,而不是大量堆砌看似有用的选项或默认值。
  11. required: true
  12. - label: 我提供了完整的配置文件和日志,而不是出于自己的判断只给出截取的部分。
  13. required: true
  14. - label: 我搜索了 issues, 没有发现已提出的类似问题。
  15. required: true
  16. - label: 问题在 Release 最新的版本上可以成功复现
  17. required: true
  18. - type: textarea
  19. attributes:
  20. label: 描述
  21. description: |-
  22. 请提供错误的详细描述。以及你认为有价值的信息。
  23. 如果问题在更新后出现,请提供**具体**出现问题的版本号。
  24. validations:
  25. required: true
  26. - type: textarea
  27. attributes:
  28. label: 重现方式
  29. description: |-
  30. 基于你下面提供的配置,提供重现BUG方法。
  31. validations:
  32. required: true
  33. - type: markdown
  34. attributes:
  35. value: |-
  36. ## 配置与日志部分
  37. ### 对于配置文件
  38. 请提供可以重现问题的配置文件,包括服务端和客户端。
  39. 不要直接在这里黏贴一大段导出的 config 文件。去掉无用的出入站、规则、选项,这可以帮助确定问题,如果你真的想得到帮助。
  40. ### 对于日志
  41. 请先将日志等级设置为 debug, dnsLog 设置为true.
  42. 重启 Xray-core ,再按复现方式操作,尽量减少日志中的无关部分。
  43. 记得删除有关个人信息(如UUID与IP)的部分。
  44. 提供 Xray-core 的日志,而不是面板或者别的东西输出的日志。
  45. ### 最后
  46. 在去掉不影响复现的部分后,提供实际运行的**完整**文件,不要出于自己的判断只提供入站出站或者几行日志。
  47. 把内容放在文本框预置的 ```<details><pre><code>``` 和 ```</code></pre></details>``` 中间。
  48. 如果问题十分明确只出现在某一端(如按文档正确编写配置后核心启动失败/崩溃),可以在下面不需要的项目填入N/A.
  49. - type: textarea
  50. attributes:
  51. label: 客户端配置
  52. value: |-
  53. <details><pre><code>
  54. </code></pre></details>
  55. validations:
  56. required: true
  57. - type: textarea
  58. attributes:
  59. label: 服务端配置
  60. value: |-
  61. <details><pre><code>
  62. </code></pre></details>
  63. validations:
  64. required: true
  65. - type: textarea
  66. attributes:
  67. label: 客户端日志
  68. value: |-
  69. <details><pre><code>
  70. </code></pre></details>
  71. validations:
  72. required: true
  73. - type: textarea
  74. attributes:
  75. label: 服务端日志
  76. value: |-
  77. <details><pre><code>
  78. </code></pre></details>
  79. validations:
  80. required: true