Skip to content

Commit 9db19fc

Browse files
authored
Merge pull request #332 from william-sy/issue_template
Added issue template
2 parents c72c7c4 + 652393f commit 9db19fc

File tree

1 file changed

+123
-0
lines changed

1 file changed

+123
-0
lines changed
Lines changed: 123 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,123 @@
1+
name: Issue Report
2+
description: Report a bug or issue with RapidRAW (not for feature requests)
3+
labels: ["bug"]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thanks for taking the time to report a bug! Please fill out the information below to help us understand and fix the issue.
9+
10+
> **Note:** This template is for reporting bugs and issues only. For feature requests, please use the [Discussions page](../../discussions) instead.
11+
12+
- type: textarea
13+
id: what-happened
14+
attributes:
15+
label: What happened?
16+
description: Describe the problem you encountered.
17+
placeholder: Tell us what went wrong...
18+
validations:
19+
required: true
20+
21+
- type: textarea
22+
id: expected-behavior
23+
attributes:
24+
label: What did you expect to happen?
25+
description: Tell us what you thought should happen instead.
26+
placeholder: Describe the expected behavior...
27+
validations:
28+
required: true
29+
30+
- type: textarea
31+
id: reproduction-steps
32+
attributes:
33+
label: How can we reproduce this?
34+
description: List the steps to recreate the issue
35+
placeholder: |
36+
1. Go to...
37+
2. Click on...
38+
3. See error...
39+
validations:
40+
required: true
41+
42+
- type: textarea
43+
id: screenshots-logs
44+
attributes:
45+
label: Screenshots or error messages
46+
description: If you have any screenshots, error messages, or log files, please share them here.
47+
placeholder: Paste screenshots or error messages here...
48+
49+
- type: markdown
50+
attributes:
51+
value: "### Your Environment"
52+
53+
- type: dropdown
54+
id: operating-system
55+
attributes:
56+
label: Operating System
57+
options:
58+
- Windows 11
59+
- Windows 10
60+
- macOS Apple Silicon
61+
- macOS Intel
62+
- Ubuntu 24.04
63+
- Ubuntu 22.04
64+
- Other Linux
65+
- Other (please specify in additional info)
66+
validations:
67+
required: true
68+
69+
- type: input
70+
id: rapidraw-version
71+
attributes:
72+
label: RapidRAW Version
73+
description: What version of RapidRAW are you using?
74+
placeholder: e.g., v1.2.3
75+
validations:
76+
required: true
77+
78+
- type: dropdown
79+
id: ram-amount
80+
attributes:
81+
label: Available RAM
82+
options:
83+
- 8GB or less
84+
- 16GB
85+
- 32GB
86+
- 64GB or more
87+
88+
- type: input
89+
id: cpu-gpu
90+
attributes:
91+
label: CPU / GPU
92+
description: What CPU and/or GPU (including driver version) are you using? This is helpful for performance / rendering issues.
93+
placeholder: e.g., Apple M1 Pro, or Intel i7-12700K / NVIDIA RTX 3080
94+
95+
- type: dropdown
96+
id: image-storage-type
97+
attributes:
98+
label: Image Storage Type
99+
options:
100+
- SSD (Internal)
101+
- HDD (Internal)
102+
- External SSD
103+
- External HDD
104+
- External SD Card
105+
- External CF express
106+
- Network storage (NAS)
107+
- Other
108+
109+
- type: textarea
110+
id: additional-info
111+
attributes:
112+
label: Additional information
113+
description: Any other details that might help us understand the problem?
114+
placeholder: Any other context, workarounds you've tried, etc...
115+
116+
- type: checkboxes
117+
id: similar-issues
118+
attributes:
119+
label: Similar issues
120+
description: Have you checked for similar issues?
121+
options:
122+
- label: I have searched existing issues and didn't find a duplicate
123+
required: true

0 commit comments

Comments
 (0)