improve the bug report template

Fixes: https://codeberg.org/dwl/dwl/issues/498
This commit is contained in:
Leonardo Hernández Hernández 2023-11-28 22:50:40 -06:00
parent ff39cac355
commit 43f31b8f1b
No known key found for this signature in database
GPG Key ID: E538897EE11B9624
1 changed files with 39 additions and 4 deletions

View File

@ -7,21 +7,56 @@ body:
- type: markdown - type: markdown
attributes: attributes:
value: | value: |
Only report bugs that can be reproduced on the main (or wlroots-next) branch - Only report bugs that can be reproduced on the main (or wlroots-next) branch without patches.
Report patch issues to their respective authors - Proprietary graphics drivers, including nvidia, are not supported. Please use the open source equivalents, such as nouveau, if you would like to use dwl.
- Report patch issues to their respective authors.
- type: input - type: input
id: dwl_version id: dwl_version
attributes: attributes:
label: dwl version label: 'dwl version:'
placeholder: '`dwl -v`' placeholder: '`dwl -v`'
validations: validations:
required: true required: true
- type: input - type: input
id: wlroots_version id: wlroots_version
attributes: attributes:
label: wlroots version label: 'wlroots version:'
validations: validations:
required: true required: true
- type: input
id: distro
attributes:
label: What distro (and version) are you using?
validations:
required: false
- type: textarea
id: debug_log
attributes:
label: Debug Log
value: |
Run `dwl -d 2> ~/dwl.log` from a TTY and attach the **full** (do not truncate it) file here, or upload it to a pastebin.
Please try to keep the reproduction as brief as possible and exit dwl.
validations:
required: false
- type: textarea
id: backtrace
attributes:
label: Stack Trace
value: |
- Only required if dwl crashes.
- If the lines mentioning dwl or wlroots have `??`. Please compile both dwl and wlroots from source (enabling debug symbols) and try to reproduce.
validations:
required: false
- type: textarea - type: textarea
attributes: attributes:
label: Description label: Description
value: |
The steps you took to reproduce the problem.
validations:
required: false