mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-22 08:31:30 +00:00
Add new issue template
This commit is contained in:
parent
b459001600
commit
cf57e46d69
109
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
109
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
|
@ -1,70 +1,77 @@
|
||||||
name: Bug Report
|
name: Bug report
|
||||||
description: "Create a report to help us improve."
|
description: "Report sing-box bug"
|
||||||
body:
|
body:
|
||||||
- type: checkboxes
|
- type: dropdown
|
||||||
id: terms
|
|
||||||
attributes:
|
attributes:
|
||||||
label: Welcome
|
label: Operating system
|
||||||
|
description: Operating system type
|
||||||
options:
|
options:
|
||||||
- label: Yes, I'm using the latest major release. Only such installations are supported.
|
- iOS
|
||||||
required: true
|
- macOS
|
||||||
- label: Yes, I'm using the latest Golang release. Only such installations are supported.
|
- Apple tvOS
|
||||||
required: true
|
- Android
|
||||||
- label: Yes, I've searched similar issues on GitHub and didn't find any.
|
- Windows
|
||||||
required: true
|
- Linux
|
||||||
- label: Yes, I've included all information below (version, **FULL** config, **FULL** log, etc).
|
- Others
|
||||||
required: true
|
|
||||||
|
|
||||||
- type: textarea
|
|
||||||
id: problem
|
|
||||||
attributes:
|
|
||||||
label: Description of the problem
|
|
||||||
placeholder: Your problem description
|
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
|
- type: input
|
||||||
- type: textarea
|
|
||||||
id: version
|
|
||||||
attributes:
|
attributes:
|
||||||
label: Version of sing-box
|
label: System version
|
||||||
|
description: Please provide the operating system version
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: dropdown
|
||||||
|
attributes:
|
||||||
|
label: Installation type
|
||||||
|
description: Please provide the sing-box installation type
|
||||||
|
options:
|
||||||
|
- Original sing-box Command Line
|
||||||
|
- sing-box for iOS Graphical Client
|
||||||
|
- sing-box for macOS Graphical Client
|
||||||
|
- sing-box for Apple tvOS Graphical Client
|
||||||
|
- sing-box for Android Graphical Client
|
||||||
|
- Third-party graphical clients that advertise themselves as using sing-box (Windows)
|
||||||
|
- Third-party graphical clients that advertise themselves as using sing-box (Android)
|
||||||
|
- Others
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: input
|
||||||
|
attributes:
|
||||||
|
description: Graphical client version
|
||||||
|
label: If you are using a graphical client, please provide the version of the client.
|
||||||
|
- type: textarea
|
||||||
|
attributes:
|
||||||
|
label: Version
|
||||||
|
description: If you are using the original command line program, please provide the output of the `sing-box version` command.
|
||||||
value: |-
|
value: |-
|
||||||
<details>
|
<details>
|
||||||
|
|
||||||
```console
|
```console
|
||||||
$ sing-box version
|
# Replace this line with the output
|
||||||
# Paste output here
|
|
||||||
```
|
```
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
- type: textarea
|
||||||
|
attributes:
|
||||||
|
label: Description
|
||||||
|
description: Please provide a detailed description of the error.
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
|
|
||||||
- type: textarea
|
- type: textarea
|
||||||
id: config
|
|
||||||
attributes:
|
attributes:
|
||||||
label: Server and client configuration file
|
label: Reproduction
|
||||||
|
description: Please provide the steps to reproduce the error, including the configuration files and procedures that can locally (not dependent on the remote server) reproduce the error using the original command line program of sing-box.
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: textarea
|
||||||
|
attributes:
|
||||||
|
label: Logs
|
||||||
|
description: |-
|
||||||
|
If you encounter a crash with the graphical client, please provide crash logs.
|
||||||
|
For Apple platform clients, please check `Settings - View Service Log` for crash logs.
|
||||||
|
For the Android client, please check the `/sdcard/Android/data/io.nekohasekai.sfa/files/stderr.log` file for crash logs.
|
||||||
value: |-
|
value: |-
|
||||||
<details>
|
<details>
|
||||||
|
|
||||||
```console
|
```console
|
||||||
# paste json here
|
# Replace this line with logs
|
||||||
```
|
```
|
||||||
|
</details>
|
||||||
</details>
|
|
||||||
validations:
|
|
||||||
required: true
|
|
||||||
|
|
||||||
- type: textarea
|
|
||||||
id: log
|
|
||||||
attributes:
|
|
||||||
label: Server and client log file
|
|
||||||
value: |-
|
|
||||||
<details>
|
|
||||||
|
|
||||||
```console
|
|
||||||
# paste log here
|
|
||||||
```
|
|
||||||
|
|
||||||
</details>
|
|
||||||
validations:
|
|
||||||
required: true
|
|
77
.github/ISSUE_TEMPLATE/bug_report_zh.yml
vendored
Normal file
77
.github/ISSUE_TEMPLATE/bug_report_zh.yml
vendored
Normal file
|
@ -0,0 +1,77 @@
|
||||||
|
name: 错误反馈
|
||||||
|
description: "提交 sing-box 漏洞"
|
||||||
|
body:
|
||||||
|
- type: dropdown
|
||||||
|
attributes:
|
||||||
|
label: 操作系统
|
||||||
|
description: 请提供操作系统类型
|
||||||
|
options:
|
||||||
|
- iOS
|
||||||
|
- macOS
|
||||||
|
- Apple tvOS
|
||||||
|
- Android
|
||||||
|
- Windows
|
||||||
|
- Linux
|
||||||
|
- 其他
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: input
|
||||||
|
attributes:
|
||||||
|
label: 系统版本
|
||||||
|
description: 请提供操作系统版本
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: dropdown
|
||||||
|
attributes:
|
||||||
|
label: 安装类型
|
||||||
|
description: 请提供该 sing-box 安装类型
|
||||||
|
options:
|
||||||
|
- sing-box 原始命令行程序
|
||||||
|
- sing-box for iOS 图形客户端程序
|
||||||
|
- sing-box for macOS 图形客户端程序
|
||||||
|
- sing-box for Apple tvOS 图形客户端程序
|
||||||
|
- sing-box for Android 图形客户端程序
|
||||||
|
- 宣传使用 sing-box 的第三方图形客户端程序 (Windows)
|
||||||
|
- 宣传使用 sing-box 的第三方图形客户端程序 (Android)
|
||||||
|
- 其他
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: input
|
||||||
|
attributes:
|
||||||
|
description: 图形客户端版本
|
||||||
|
label: 如果您使用图形客户端程序,请提供该程序版本。
|
||||||
|
- type: textarea
|
||||||
|
attributes:
|
||||||
|
label: 版本
|
||||||
|
description: 如果您使用原始命令行程序,请提供 `sing-box version` 命令的输出。
|
||||||
|
value: |-
|
||||||
|
<details>
|
||||||
|
```console
|
||||||
|
# 使用输出内容覆盖此行
|
||||||
|
```
|
||||||
|
</details>
|
||||||
|
- type: textarea
|
||||||
|
attributes:
|
||||||
|
label: 描述
|
||||||
|
description: 请提供错误的详细描述。
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: textarea
|
||||||
|
attributes:
|
||||||
|
label: 重现方式
|
||||||
|
description: 请提供重现错误的步骤,必须包括可以在本地(不依赖与远程服务器)使用 sing-box 原始命令行程序重现错误的配置文件与流程。
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: textarea
|
||||||
|
attributes:
|
||||||
|
label: 日志
|
||||||
|
description: |-
|
||||||
|
如果您遭遇图形界面应用程序崩溃,请提供崩溃日志。
|
||||||
|
对于 Apple 平台图形客户端程序,请检查 `Settings - View Service Log` 以导出崩溃日志。
|
||||||
|
对于 Android 图形客户端程序,请检查 `/sdcard/Android/data/io.nekohasekai.sfa/files/stderr.log` 文件以导出崩溃日志。
|
||||||
|
value: |-
|
||||||
|
<details>
|
||||||
|
```console
|
||||||
|
# 使用日志内容覆盖此行
|
||||||
|
```
|
||||||
|
</details>
|
Loading…
Reference in a new issue