|
| 1 | +name: Bug report |
| 2 | +description: Report a defect in FlashPaste |
| 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. Before filing, please: |
| 10 | +
|
| 11 | + 1. Run `flashpaste-doctor` and paste the output below. |
| 12 | + 2. Walk the [troubleshooting flowchart](https://github.com/NagyVikt/flashpaste/blob/main/docs/troubleshooting.md). |
| 13 | + 3. Search existing issues — yours may already be tracked. |
| 14 | +
|
| 15 | + - type: textarea |
| 16 | + id: what-happened |
| 17 | + attributes: |
| 18 | + label: What happened? |
| 19 | + description: A clear description of the bug. What did you do, what did you expect, what actually happened? |
| 20 | + placeholder: | |
| 21 | + Pressed PrtScr → right-click → Paste in a tmux pane running Claude Code. |
| 22 | + Expected the screenshot to attach. Instead, nothing happened. |
| 23 | + validations: |
| 24 | + required: true |
| 25 | + |
| 26 | + - type: textarea |
| 27 | + id: doctor |
| 28 | + attributes: |
| 29 | + label: flashpaste-doctor output |
| 30 | + description: Run `flashpaste-doctor` and paste the full output here. |
| 31 | + render: text |
| 32 | + validations: |
| 33 | + required: true |
| 34 | + |
| 35 | + - type: textarea |
| 36 | + id: tmux-paste-log |
| 37 | + attributes: |
| 38 | + label: Last 50 lines of ~/.local/state/tmux-paste.log |
| 39 | + description: "`tail -n 50 ~/.local/state/tmux-paste.log`" |
| 40 | + render: text |
| 41 | + validations: |
| 42 | + required: true |
| 43 | + |
| 44 | + - type: textarea |
| 45 | + id: pipeline-log |
| 46 | + attributes: |
| 47 | + label: Last 50 lines of ~/.local/state/clipboard-pipeline.log |
| 48 | + description: "`tail -n 50 ~/.local/state/clipboard-pipeline.log`" |
| 49 | + render: text |
| 50 | + validations: |
| 51 | + required: false |
| 52 | + |
| 53 | + - type: dropdown |
| 54 | + id: distro |
| 55 | + attributes: |
| 56 | + label: Distribution |
| 57 | + options: |
| 58 | + - Ubuntu 24.04 LTS |
| 59 | + - Debian 13 (Trixie) |
| 60 | + - Fedora 40+ |
| 61 | + - Pop!_OS 24.04+ |
| 62 | + - Arch / Manjaro |
| 63 | + - NixOS |
| 64 | + - Other |
| 65 | + validations: |
| 66 | + required: true |
| 67 | + |
| 68 | + - type: input |
| 69 | + id: kitty-version |
| 70 | + attributes: |
| 71 | + label: kitty version |
| 72 | + description: Output of `kitty --version` |
| 73 | + placeholder: "kitty 0.32.2" |
| 74 | + validations: |
| 75 | + required: true |
| 76 | + |
| 77 | + - type: input |
| 78 | + id: tmux-version |
| 79 | + attributes: |
| 80 | + label: tmux version |
| 81 | + description: Output of `tmux -V` |
| 82 | + placeholder: "tmux 3.4" |
| 83 | + validations: |
| 84 | + required: true |
| 85 | + |
| 86 | + - type: dropdown |
| 87 | + id: tier |
| 88 | + attributes: |
| 89 | + label: Which performance tier are you on? |
| 90 | + options: |
| 91 | + - "Tier 1 — bash hot path (default)" |
| 92 | + - "Tier 2 — flashpaste-dispatch (Rust one-shot)" |
| 93 | + - "Tier 3 — flashpasted daemon + flashpaste-trigger" |
| 94 | + - "Not sure" |
| 95 | + validations: |
| 96 | + required: true |
| 97 | + |
| 98 | + - type: input |
| 99 | + id: flashpaste-version |
| 100 | + attributes: |
| 101 | + label: FlashPaste version |
| 102 | + description: Output of `flashpaste --version` or the release tag you installed |
| 103 | + placeholder: "v1.19" |
| 104 | + validations: |
| 105 | + required: true |
| 106 | + |
| 107 | + - type: checkboxes |
| 108 | + id: checks |
| 109 | + attributes: |
| 110 | + label: Pre-submission checklist |
| 111 | + options: |
| 112 | + - label: I have read [docs/troubleshooting.md](https://github.com/NagyVikt/flashpaste/blob/main/docs/troubleshooting.md) |
| 113 | + required: true |
| 114 | + - label: I have searched existing issues for duplicates |
| 115 | + required: true |
0 commit comments