mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-29 07:58:01 -04:00
forgejo: issue report templates
This commit is contained in:
parent
7b983be3d8
commit
26e22b74b1
2 changed files with 74 additions and 0 deletions
5
.forgejo/issue_template/config.yml
Normal file
5
.forgejo/issue_template/config.yml
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
blank_issues_enabled: true
|
||||||
|
contact_links:
|
||||||
|
- name: IRC
|
||||||
|
url: https://web.libera.chat/?channels=#foot
|
||||||
|
about: Join the IRC channel for foot-related discussion and support
|
||||||
69
.forgejo/issue_template/issue_template.yml
Normal file
69
.forgejo/issue_template/issue_template.yml
Normal file
|
|
@ -0,0 +1,69 @@
|
||||||
|
name: Bug Report
|
||||||
|
description: File a bug report
|
||||||
|
labels: ["bug"]
|
||||||
|
body:
|
||||||
|
- type: markdown
|
||||||
|
attributes:
|
||||||
|
value: |
|
||||||
|
Please provide as many details as possible, we must be able to
|
||||||
|
understand the bug in order to fix it.
|
||||||
|
|
||||||
|
Don't forget to search the issue tracker in case there is
|
||||||
|
already an open issue for the bug you found.
|
||||||
|
- type: input
|
||||||
|
id: version
|
||||||
|
attributes:
|
||||||
|
label: Foot Version
|
||||||
|
description: "The output of `foot --version`"
|
||||||
|
placeholder: "foot version: 1.17.2-11-gc4f13809 (May 20 2024, branch 'master') +pgo +ime +graphemes -assertions"
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: input
|
||||||
|
id: compositor
|
||||||
|
attributes:
|
||||||
|
label: Compositor Version
|
||||||
|
description: "The name and version of your compositor"
|
||||||
|
placeholder: "sway version 1.9"
|
||||||
|
validation:
|
||||||
|
required: true
|
||||||
|
- type: textarea
|
||||||
|
id: repro
|
||||||
|
attributes:
|
||||||
|
label: Description of Bug and Steps to Reproduce
|
||||||
|
description: |
|
||||||
|
Exactly what steps can someone else take to see the bug
|
||||||
|
themselves? What happens?
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: markdown
|
||||||
|
attributes:
|
||||||
|
value: |
|
||||||
|
Please provide as many details as possible, we must be able to
|
||||||
|
understand the bug in order to fix it.
|
||||||
|
|
||||||
|
Have you tested other compositors? Does the issue happen on
|
||||||
|
all of them, or only your main compositor?
|
||||||
|
|
||||||
|
Use a debug [build](../../INSTALL.md#debug-build) of foot is
|
||||||
|
possible, to get a better quality stacktrace in case of a
|
||||||
|
crash.
|
||||||
|
|
||||||
|
Run foot with logging enabled:
|
||||||
|
```sh
|
||||||
|
foot -d info 2> foot.log
|
||||||
|
```
|
||||||
|
|
||||||
|
In many cases, tracing the Wayland communication is extremely helpful:
|
||||||
|
```sh
|
||||||
|
WAYLAND_DEBUG=1 foot -d info 2> foot.wayland.log
|
||||||
|
```
|
||||||
|
|
||||||
|
Reproduce your problem as quickly as possible, and then exit foot.
|
||||||
|
- type: textarea
|
||||||
|
id: logs
|
||||||
|
attributes:
|
||||||
|
label: Relevant logs, stacktraces, etc.
|
||||||
|
- type: markdown
|
||||||
|
attributes:
|
||||||
|
value: |
|
||||||
|
Please attach files instead of pasting the logs, if the logs are large
|
||||||
Loading…
Add table
Add a link
Reference in a new issue