diff options
| author | Leonardo Hernández Hernández <leohdz172@proton.me> | 2023-11-30 22:44:52 -0600 | 
|---|---|---|
| committer | Leonardo Hernández Hernández <leohdz172@proton.me> | 2023-11-30 22:44:52 -0600 | 
| commit | bab5c0185a5f62fe30e1b02fa454fdddac73a752 (patch) | |
| tree | 5d5a7277edd2f0522191d1db6925373c591c87ab /.gitea/issue_template | |
| parent | chase xdg-shell events update (wlroots!4345) (diff) | |
| parent | don't return early if the first output commit fails (diff) | |
| download | dwl-bab5c0185a5f62fe30e1b02fa454fdddac73a752.tar.gz dwl-bab5c0185a5f62fe30e1b02fa454fdddac73a752.tar.bz2 dwl-bab5c0185a5f62fe30e1b02fa454fdddac73a752.tar.xz dwl-bab5c0185a5f62fe30e1b02fa454fdddac73a752.tar.zst dwl-bab5c0185a5f62fe30e1b02fa454fdddac73a752.zip | |
Merge remote-tracking branch 'upstream/main' into wlroots-next
Diffstat (limited to '.gitea/issue_template')
| -rw-r--r-- | .gitea/issue_template/bug_report.yml | 62 | ||||
| -rw-r--r-- | .gitea/issue_template/enhancement-idea.yml | 9 | 
2 files changed, 71 insertions, 0 deletions
| diff --git a/.gitea/issue_template/bug_report.yml b/.gitea/issue_template/bug_report.yml new file mode 100644 index 0000000..56f4a3e --- /dev/null +++ b/.gitea/issue_template/bug_report.yml @@ -0,0 +1,62 @@ +name: Bug Report +about: Something in dwl isn't working correctly +title: +labels: +    - 'Kind/Bug' +body: +    - type: markdown +      attributes: +          value: | +              - 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:' +          placeholder: '`dwl -v`' +      validations: +          required: true + +    - type: input +      id: wlroots_version +      attributes: +          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 diff --git a/.gitea/issue_template/enhancement-idea.yml b/.gitea/issue_template/enhancement-idea.yml new file mode 100644 index 0000000..be1bbf2 --- /dev/null +++ b/.gitea/issue_template/enhancement-idea.yml @@ -0,0 +1,9 @@ +name: Enhancement idea +about: Suggest a feature or improvement +title: +labels: +    - 'Kind/Feature' +body: +    - type: textarea +      attributes: +          label: Description | 
