The JUCE cross-platform C++ framework, with DISTRHO/KXStudio specific changes
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

99 lines
2.5KB

  1. name: Bug Report
  2. description: File a bug report
  3. title: "[Bug]: "
  4. body:
  5. - type: markdown
  6. attributes:
  7. value: |
  8. Thank you for reporting an issue with JUCE.
  9. - type: textarea
  10. id: repro
  11. attributes:
  12. label: Detailed steps on how to reproduce the bug
  13. description: If possible please use already existing JUCE code such as the examples or the demo plug-in
  14. validations:
  15. required: true
  16. - type: textarea
  17. id: expected
  18. attributes:
  19. label: What is the expected behaviour?
  20. validations:
  21. required: true
  22. - type: dropdown
  23. id: os
  24. attributes:
  25. label: Operating systems
  26. description: What operating systems do you see the bug on?
  27. multiple: true
  28. options:
  29. - Windows
  30. - macOS
  31. - Linux
  32. - iOS
  33. - Android
  34. - Other
  35. validations:
  36. required: true
  37. - type: textarea
  38. id: osversion
  39. attributes:
  40. label: What versions of the operating systems?
  41. validations:
  42. required: true
  43. - type: dropdown
  44. id: architecture
  45. attributes:
  46. label: Architectures
  47. description: What types of machine do you see the bug on?
  48. multiple: true
  49. options:
  50. - x86_64
  51. - ARM
  52. - Other
  53. - 64-bit
  54. - 32-bit
  55. validations:
  56. required: true
  57. - type: textarea
  58. id: stacktrace
  59. attributes:
  60. label: Stacktrace
  61. description: Please copy and paste any relevant stack trace. This will be automatically formatted into code, so no need for backticks.
  62. render: shell
  63. - type: dropdown
  64. id: pluginformat
  65. attributes:
  66. label: Plug-in formats (if applicable)
  67. multiple: true
  68. options:
  69. - VST2
  70. - VST3
  71. - AU
  72. - AUv3
  73. - AAX
  74. - LV2
  75. - Standalone
  76. - type: textarea
  77. id: pluginhost
  78. attributes:
  79. label: Plug-in host applications (DAWs) (if applicable)
  80. - type: dropdown
  81. id: branch
  82. attributes:
  83. label: Testing on the `develop` branch
  84. description: We have often already fixed bugs on our `develop` branch. Please confirm if you have tested with the latest commit.
  85. options:
  86. - The bug is present on the `develop` branch
  87. - I have not tested against the `develop` branch
  88. validations:
  89. required: true
  90. - type: checkboxes
  91. id: terms
  92. attributes:
  93. label: Code of Conduct
  94. description: By submitting this issue, you agree to follow our [Code of Conduct](https://berlincodeofconduct.org/)
  95. options:
  96. - label: I agree to follow the Code of Conduct
  97. required: true