bug_report.yaml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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 your Minetest Engine 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.minetest.net/packages/?type=game) and submit a bug report in their issue trackers.
  11. * For example, you can submit issues about the Minetest Game (the official game of Minetest) [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: Minetest version
  16. description: |
  17. Paste the Minetest 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 `minetest --version` on the command line.
  20. placeholder: |
  21. Example:
  22. Minetest 5.7.0-dev-ca13c51 (Linux)
  23. Using Irrlicht 1.9.0mt9
  24. Using LuaJIT 2.1.0-beta3
  25. BUILD_TYPE=Release
  26. RUN_IN_PLACE=1
  27. USE_CURL=1
  28. USE_GETTEXT=1
  29. USE_SOUND=1
  30. STATIC_SHAREDIR="."
  31. STATIC_LOCALEDIR="locale"
  32. render: "true"
  33. validations:
  34. required: true
  35. - type: input
  36. attributes:
  37. label: Irrlicht device
  38. description:
  39. placeholder: "Example: X11"
  40. validations:
  41. required: false
  42. - type: input
  43. attributes:
  44. label: Operating system and version
  45. description: It is recommended to upgrade your operating system to see if the problem persists.
  46. placeholder: "Example: Ubuntu 22.04"
  47. validations:
  48. required: true
  49. - type: input
  50. attributes:
  51. label: CPU model
  52. description: Usually found in OS/system settings.
  53. placeholder: "Example: Intel Core i5-2410M"
  54. validations:
  55. required: false
  56. - type: markdown
  57. attributes:
  58. value: The GPU model and renderer can be omitted if the bug is not a graphical issue.
  59. - type: input
  60. attributes:
  61. label: GPU model
  62. description: Usually found in OS/system settings.
  63. placeholder: "Example: NVIDIA GeForce GTX 1660"
  64. validations:
  65. required: false
  66. - type: input
  67. attributes:
  68. label: Active renderer
  69. description: You can find this in the "About" tab in the main menu.
  70. placeholder: "Example: OpenGL 4.6.0"
  71. validations:
  72. required: false
  73. - type: textarea
  74. attributes:
  75. label: Summary
  76. description: Describe your problem here.
  77. validations:
  78. required: true
  79. - type: textarea
  80. attributes:
  81. label: Steps to reproduce
  82. description: Explain how the problem has happened, providing a minimal test (e.g. a minimized code snippet) where possible.
  83. validations:
  84. required: true