2022-07-09 01:34:16 +00:00
|
|
|
name: Bug Report
|
|
|
|
description: "Create a report to help us improve."
|
|
|
|
body:
|
|
|
|
- type: checkboxes
|
|
|
|
id: terms
|
|
|
|
attributes:
|
|
|
|
label: Welcome
|
|
|
|
options:
|
|
|
|
- label: Yes, I'm using the latest major release. Only such installations are supported.
|
|
|
|
required: true
|
2022-08-24 08:23:21 +00:00
|
|
|
- label: Yes, I'm using the latest Golang release. Only such installations are supported.
|
|
|
|
required: true
|
2022-07-09 01:34:16 +00:00
|
|
|
- label: Yes, I've searched similar issues on GitHub and didn't find any.
|
|
|
|
required: true
|
2022-08-24 08:23:21 +00:00
|
|
|
- label: Yes, I've included all information below (version, config, log, etc).
|
2022-07-09 01:34:16 +00:00
|
|
|
required: true
|
|
|
|
|
|
|
|
- type: textarea
|
|
|
|
id: problem
|
|
|
|
attributes:
|
|
|
|
label: Description of the problem
|
|
|
|
placeholder: Your problem description
|
|
|
|
validations:
|
|
|
|
required: true
|
|
|
|
|
|
|
|
- type: textarea
|
|
|
|
id: version
|
|
|
|
attributes:
|
|
|
|
label: Version of sing-box
|
|
|
|
value: |-
|
|
|
|
<details>
|
|
|
|
|
|
|
|
```console
|
2022-08-29 08:52:15 +00:00
|
|
|
$ sing-box version
|
2022-07-09 01:34:16 +00:00
|
|
|
# Paste output here
|
|
|
|
```
|
|
|
|
|
|
|
|
</details>
|
|
|
|
validations:
|
|
|
|
required: true
|
|
|
|
|
|
|
|
- type: textarea
|
|
|
|
id: config
|
|
|
|
attributes:
|
|
|
|
label: Server and client configuration file
|
|
|
|
value: |-
|
|
|
|
<details>
|
|
|
|
|
|
|
|
```console
|
|
|
|
# paste json here
|
|
|
|
```
|
|
|
|
|
|
|
|
</details>
|
|
|
|
validations:
|
2022-08-24 08:23:21 +00:00
|
|
|
required: true
|
|
|
|
|
|
|
|
- type: textarea
|
2022-08-25 08:12:37 +00:00
|
|
|
id: log
|
2022-08-24 08:23:21 +00:00
|
|
|
attributes:
|
|
|
|
label: Server and client log file
|
|
|
|
value: |-
|
|
|
|
<details>
|
|
|
|
|
|
|
|
```console
|
|
|
|
# paste log here
|
|
|
|
```
|
|
|
|
|
|
|
|
</details>
|
|
|
|
validations:
|
|
|
|
required: true
|