|
| 1 | +name: Bug Report |
| 2 | +description: Report a bug in velotype |
| 3 | +title: "[Bug]: " |
| 4 | +labels: ["bug", "needs-triage"] |
| 5 | +body: |
| 6 | + - type: markdown |
| 7 | + attributes: |
| 8 | + value: | |
| 9 | + Thanks for taking the time to report a bug. |
| 10 | +
|
| 11 | + Before submitting, please search existing issues, test the latest release, |
| 12 | + and include the smallest reproduction you can provide. |
| 13 | +
|
| 14 | + - type: checkboxes |
| 15 | + id: checklist |
| 16 | + attributes: |
| 17 | + label: Checklist |
| 18 | + options: |
| 19 | + - label: I have searched the existing issues |
| 20 | + required: true |
| 21 | + - label: I have tested this on the latest release |
| 22 | + required: true |
| 23 | + |
| 24 | + - type: input |
| 25 | + id: version |
| 26 | + attributes: |
| 27 | + label: velotype version |
| 28 | + description: Exact version number or commit hash. |
| 29 | + placeholder: e.g. 0.3.2 |
| 30 | + validations: |
| 31 | + required: true |
| 32 | + |
| 33 | + - type: dropdown |
| 34 | + id: platform |
| 35 | + attributes: |
| 36 | + label: Platform |
| 37 | + description: Where did the issue happen? |
| 38 | + options: |
| 39 | + - Windows |
| 40 | + - macOS |
| 41 | + - Linux(Ubuntu / Debian / Fedora / Arch / Kali, Wayland or X11) |
| 42 | + - Other(not currently supported) |
| 43 | + validations: |
| 44 | + required: true |
| 45 | + |
| 46 | + - type: input |
| 47 | + id: environment |
| 48 | + attributes: |
| 49 | + label: Environment details |
| 50 | + description: Include OS version, Linux distro, desktop/session, scaling, display setup, IME, or other relevant context. |
| 51 | + placeholder: e.g. Ubuntu 24.04, GNOME, Wayland, X11, etc |
| 52 | + validations: |
| 53 | + required: true |
| 54 | + |
| 55 | + - type: dropdown |
| 56 | + id: area |
| 57 | + attributes: |
| 58 | + label: Affected area |
| 59 | + description: Which part of velotype is affected? |
| 60 | + options: |
| 61 | + - Rendering / layout |
| 62 | + - Editing / IME / shortcuts |
| 63 | + - Markdown parsing |
| 64 | + - Menu / window / file operations |
| 65 | + - Export |
| 66 | + - Theme / i18n |
| 67 | + - Crash / freeze / performance |
| 68 | + - Other |
| 69 | + validations: |
| 70 | + required: true |
| 71 | + |
| 72 | + - type: textarea |
| 73 | + id: actual |
| 74 | + attributes: |
| 75 | + label: What happened? |
| 76 | + description: Describe the actual behavior. |
| 77 | + placeholder: Tell us what you saw. |
| 78 | + validations: |
| 79 | + required: true |
| 80 | + |
| 81 | + - type: textarea |
| 82 | + id: expected |
| 83 | + attributes: |
| 84 | + label: What did you expect to happen? |
| 85 | + description: Describe the expected behavior. |
| 86 | + placeholder: Tell us what should have happened. |
| 87 | + validations: |
| 88 | + required: true |
| 89 | + |
| 90 | + - type: textarea |
| 91 | + id: reproduce |
| 92 | + attributes: |
| 93 | + label: Steps to reproduce |
| 94 | + description: Please provide the shortest possible steps. |
| 95 | + placeholder: | |
| 96 | + 1. Open velotype |
| 97 | + 2. Load a markdown file |
| 98 | + 3. Click ... |
| 99 | + 4. Observe ... |
| 100 | + validations: |
| 101 | + required: true |
| 102 | + |
| 103 | + - type: textarea |
| 104 | + id: sample |
| 105 | + attributes: |
| 106 | + label: Minimal sample / reproduction file |
| 107 | + description: Paste a minimal markdown snippet, or link to a repo / gist / file if needed. |
| 108 | + placeholder: | |
| 109 | + ```md |
| 110 | + # Minimal example |
| 111 | + ... |
| 112 | + ``` |
| 113 | + validations: |
| 114 | + required: false |
| 115 | + |
| 116 | + - type: textarea |
| 117 | + id: evidence |
| 118 | + attributes: |
| 119 | + label: Evidence / additional context |
| 120 | + description: Add logs, panic messages, screenshots, recordings, theme/font details, or anything else that may help. |
| 121 | + placeholder: | |
| 122 | + - Logs: |
| 123 | + - Screenshot: |
| 124 | + - Video: |
| 125 | + validations: |
| 126 | + required: false |
0 commit comments