bug_report.yaml 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. name: Bug report
  2. description: Create a report to help us improve
  3. labels: ["Unconfirmed bug"]
  4. body:
  5. - type: markdown
  6. attributes:
  7. value: |
  8. Please note the following:
  9. 1. **Please update Luanti to the latest stable or dev version** before submitting bug reports. Make sure the bug is still reproducible on the latest version.
  10. 2. This page is for reporting the bugs of **the engine itself**. For bugs in a particular game, please [search for the game in the ContentDB](https://content.luanti.org/packages/?type=game) and submit a bug report in their issue trackers.
  11. * For example, you can submit issues about the Minetest Game [in its own repository](https://github.com/minetest/minetest_game/issues).
  12. 3. Please provide as many details as possible for us to spot the problem quicker.
  13. - type: textarea
  14. attributes:
  15. label: Luanti version
  16. description: |
  17. Paste the Luanti version below.
  18. If you are on a dev version, please also indicate the git commit hash.
  19. Refer to the "About" tab of the menu or run `luanti --version` on the command line.
  20. placeholder: |
  21. Example:
  22. Luanti 5.10.0-3ad6aee9b (Linux)
  23. Using LuaJIT 2.1.1727870382
  24. Built by GCC 14.2
  25. Running on Linux/6.11.5 x86_64
  26. BUILD_TYPE=Release
  27. RUN_IN_PLACE=1
  28. USE_CURL=1
  29. USE_GETTEXT=1
  30. USE_SOUND=1
  31. STATIC_SHAREDIR="."
  32. STATIC_LOCALEDIR="locale"
  33. render: "true"
  34. validations:
  35. required: true
  36. - type: input
  37. attributes:
  38. label: Operating system and version
  39. description: It is recommended to upgrade your operating system to see if the problem persists.
  40. placeholder: "Example: Ubuntu 22.04"
  41. validations:
  42. required: true
  43. - type: input
  44. attributes:
  45. label: CPU model
  46. description: Usually found in OS/system settings.
  47. placeholder: "Example: Intel Core i5-2410M"
  48. validations:
  49. required: false
  50. - type: markdown
  51. attributes:
  52. value: The GPU model and renderer can be omitted if the bug is not a graphical issue.
  53. - type: input
  54. attributes:
  55. label: GPU model
  56. description: Usually found in OS/system settings.
  57. placeholder: "Example: NVIDIA GeForce GTX 1660"
  58. validations:
  59. required: false
  60. - type: input
  61. attributes:
  62. label: Active renderer
  63. description: You can find this in the "About" tab in the main menu.
  64. placeholder: "Example: ES 3.2 / ogles2 / X11"
  65. validations:
  66. required: false
  67. - type: textarea
  68. attributes:
  69. label: Summary
  70. description: Describe your problem here.
  71. validations:
  72. required: true
  73. - type: textarea
  74. attributes:
  75. label: Steps to reproduce
  76. description: Explain how the problem has happened, providing a minimal test (e.g. a minimized code snippet) where possible.
  77. validations:
  78. required: true