diff options
author | Leonardo Hernández Hernández <leohdz172@proton.me> | 2023-11-28 22:50:40 -0600 |
---|---|---|
committer | Leonardo Hernández Hernández <leohdz172@proton.me> | 2023-11-28 23:03:35 -0600 |
commit | 43f31b8f1be327bf4d29e1efc2ea51178ac64481 (patch) | |
tree | 1e1a23b8691102e443c885c2003f4c693326317d | |
parent | ff39cac355e79b21049ba0ad181c098aebefc313 (diff) |
improve the bug report template
Fixes: https://codeberg.org/dwl/dwl/issues/498
-rw-r--r-- | .gitea/issue_template/bug_report.yml | 43 |
1 files changed, 39 insertions, 4 deletions
diff --git a/.gitea/issue_template/bug_report.yml b/.gitea/issue_template/bug_report.yml index 1ec1cf0..56f4a3e 100644 --- a/.gitea/issue_template/bug_report.yml +++ b/.gitea/issue_template/bug_report.yml @@ -7,21 +7,56 @@ body: - type: markdown attributes: value: | - Only report bugs that can be reproduced on the main (or wlroots-next) branch - Report patch issues to their respective authors + - Only report bugs that can be reproduced on the main (or wlroots-next) branch without patches. + - 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 id: dwl_version attributes: - label: dwl version + label: 'dwl version:' placeholder: '`dwl -v`' validations: required: true + - type: input id: wlroots_version attributes: - label: wlroots version + label: 'wlroots version:' validations: 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 attributes: label: Description + value: | + The steps you took to reproduce the problem. + validations: + required: false |