bug_report.yml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. name: Bug Report
  2. about: Something in dwl isn't working correctly
  3. title:
  4. labels:
  5. - 'Kind/Bug'
  6. body:
  7. - type: markdown
  8. attributes:
  9. value: |
  10. - Only report bugs that can be reproduced on the main (or wlroots-next) branch without patches.
  11. - Proprietary graphics drivers, including nvidia, are not supported. Please use the open source equivalents, such as nouveau, if you would like to use dwl.
  12. - Report patch issues to their respective authors.
  13. - type: input
  14. id: dwl_version
  15. attributes:
  16. label: 'dwl version:'
  17. placeholder: '`dwl -v`'
  18. validations:
  19. required: true
  20. - type: input
  21. id: wlroots_version
  22. attributes:
  23. label: 'wlroots version:'
  24. validations:
  25. required: true
  26. - type: input
  27. id: distro
  28. attributes:
  29. label: What distro (and version) are you using?
  30. validations:
  31. required: false
  32. - type: textarea
  33. attributes:
  34. label: Description
  35. value: |
  36. The steps you took to reproduce the problem.
  37. validations:
  38. required: false
  39. - type: textarea
  40. id: debug_log
  41. attributes:
  42. label: Debug Log
  43. value: |
  44. 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.
  45. Please try to keep the reproduction as brief as possible and exit dwl.
  46. validations:
  47. required: false
  48. - type: textarea
  49. id: backtrace
  50. attributes:
  51. label: Stack Trace
  52. value: |
  53. - Only required if dwl crashes.
  54. - If the lines mentioning dwl or wlroots have `??`. Please compile both dwl and wlroots from source (enabling debug symbols) and try to reproduce.
  55. validations:
  56. required: false