Skip to content

Commit 1db8203

Browse files
authored
Add files via upload
1 parent 665ad17 commit 1db8203

3 files changed

Lines changed: 183 additions & 0 deletions

File tree

Lines changed: 122 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,122 @@
1+
name: Bug Report
2+
description: Report a reproducible problem with Catalyst
3+
title: "[Bug]: "
4+
labels:
5+
- bug
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: |
10+
Thanks for reporting a bug. Please provide as much detail as possible so the issue can be reproduced and fixed.
11+
12+
- type: checkboxes
13+
id: checks
14+
attributes:
15+
label: Before submitting
16+
options:
17+
- label: I searched for existing issues and could not find a duplicate.
18+
required: true
19+
- label: I am using the latest available version of Catalyst.
20+
required: true
21+
22+
- type: textarea
23+
id: description
24+
attributes:
25+
label: Description
26+
description: Clearly explain what is broken.
27+
placeholder: Describe the problem and when it occurs.
28+
validations:
29+
required: true
30+
31+
- type: textarea
32+
id: reproduce
33+
attributes:
34+
label: Steps to reproduce
35+
description: Provide the exact steps needed to reproduce the problem.
36+
placeholder: |
37+
1. Open ...
38+
2. Select ...
39+
3. Start ...
40+
4. See the error
41+
validations:
42+
required: true
43+
44+
- type: textarea
45+
id: expected
46+
attributes:
47+
label: Expected behavior
48+
description: Explain what you expected to happen.
49+
validations:
50+
required: true
51+
52+
- type: textarea
53+
id: actual
54+
attributes:
55+
label: Actual behavior
56+
description: Explain what happened instead.
57+
validations:
58+
required: true
59+
60+
- type: input
61+
id: catalyst-version
62+
attributes:
63+
label: Catalyst version
64+
placeholder: e.g. v1.4.0 or commit hash
65+
validations:
66+
required: true
67+
68+
- type: input
69+
id: operating-system
70+
attributes:
71+
label: Operating system
72+
placeholder: e.g. Windows 11 24H2
73+
validations:
74+
required: true
75+
76+
- type: input
77+
id: minecraft-version
78+
attributes:
79+
label: Minecraft version
80+
placeholder: e.g. 1.21.8
81+
validations:
82+
required: false
83+
84+
- type: dropdown
85+
id: server-software
86+
attributes:
87+
label: Server software
88+
options:
89+
- Not applicable
90+
- Vanilla
91+
- Paper
92+
- Fabric
93+
- Forge
94+
- NeoForge
95+
- Other
96+
validations:
97+
required: true
98+
99+
- type: textarea
100+
id: logs
101+
attributes:
102+
label: Logs
103+
description: Paste relevant Catalyst or server logs. Remove passwords, tokens, and other private data.
104+
render: shell
105+
validations:
106+
required: false
107+
108+
- type: textarea
109+
id: screenshots
110+
attributes:
111+
label: Screenshots or recordings
112+
description: Drag and drop screenshots or recordings here if they help explain the problem.
113+
validations:
114+
required: false
115+
116+
- type: textarea
117+
id: additional-context
118+
attributes:
119+
label: Additional context
120+
description: Add anything else that may help investigate the issue.
121+
validations:
122+
required: false

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
blank_issues_enabled: false
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
name: Feature Request
2+
description: Suggest an improvement or a new feature for Catalyst
3+
title: "[Feature]: "
4+
labels:
5+
- enhancement
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: |
10+
Thanks for suggesting an improvement. Focus on the problem first, then describe your proposed solution.
11+
12+
- type: checkboxes
13+
id: checks
14+
attributes:
15+
label: Before submitting
16+
options:
17+
- label: I searched for existing issues and could not find a duplicate.
18+
required: true
19+
20+
- type: textarea
21+
id: problem
22+
attributes:
23+
label: Problem
24+
description: What problem or limitation are you experiencing?
25+
placeholder: Explain why the current behavior is difficult or limiting.
26+
validations:
27+
required: true
28+
29+
- type: textarea
30+
id: solution
31+
attributes:
32+
label: Proposed solution
33+
description: Describe how the feature should work.
34+
placeholder: Explain the desired behavior from a user's perspective.
35+
validations:
36+
required: true
37+
38+
- type: textarea
39+
id: alternatives
40+
attributes:
41+
label: Alternatives considered
42+
description: Describe any workarounds or alternative solutions you considered.
43+
validations:
44+
required: false
45+
46+
- type: textarea
47+
id: user-experience
48+
attributes:
49+
label: Expected user experience
50+
description: Describe the flow, settings, buttons, or messages the user should see.
51+
validations:
52+
required: false
53+
54+
- type: textarea
55+
id: additional-context
56+
attributes:
57+
label: Additional context
58+
description: Add screenshots, mockups, links, or other useful information.
59+
validations:
60+
required: false

0 commit comments

Comments
 (0)