bug_report.yaml 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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: Irrlicht device
  39. description:
  40. placeholder: "Example: X11"
  41. validations:
  42. required: false
  43. - type: input
  44. attributes:
  45. label: Operating system and version
  46. description: It is recommended to upgrade your operating system to see if the problem persists.
  47. placeholder: "Example: Ubuntu 22.04"
  48. validations:
  49. required: true
  50. - type: input
  51. attributes:
  52. label: CPU model
  53. description: Usually found in OS/system settings.
  54. placeholder: "Example: Intel Core i5-2410M"
  55. validations:
  56. required: false
  57. - type: markdown
  58. attributes:
  59. value: The GPU model and renderer can be omitted if the bug is not a graphical issue.
  60. - type: input
  61. attributes:
  62. label: GPU model
  63. description: Usually found in OS/system settings.
  64. placeholder: "Example: NVIDIA GeForce GTX 1660"
  65. validations:
  66. required: false
  67. - type: input
  68. attributes:
  69. label: Active renderer
  70. description: You can find this in the "About" tab in the main menu.
  71. placeholder: "Example: OpenGL 4.6.0"
  72. validations:
  73. required: false
  74. - type: textarea
  75. attributes:
  76. label: Summary
  77. description: Describe your problem here.
  78. validations:
  79. required: true
  80. - type: textarea
  81. attributes:
  82. label: Steps to reproduce
  83. description: Explain how the problem has happened, providing a minimal test (e.g. a minimized code snippet) where possible.
  84. validations:
  85. required: true