Skip to content

Commit 5d85ea7

Browse files
authored
Merge pull request #90 from TheAnonym3000/1.20.1
Further improved bug reporting System
2 parents 821ca42 + 96954b4 commit 5d85ea7

5 files changed

Lines changed: 137 additions & 7 deletions

File tree

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Bug Report
22
description: "Report some other kind of issue."
3-
labels: [ "bug" ]
3+
labels: [ "Type: Bug" ]
4+
type: "Bug"
45
body:
56
- type: textarea
67
attributes:
@@ -14,10 +15,10 @@ body:
1415

1516
- type: input
1617
attributes:
17-
label: Game Log & Crash Report (if applicable)
18+
label: Game Log (if applicable)
1819
description: >
19-
We may need the game/crash log for additional information.
20-
This file can be found in the \"logs\" or \"crash-reports\" folder of your Minecraft folder as \"latest.log\" or \"crash-*.txt"\.
20+
We may need the game log for additional information.
21+
This file can be found in the \"logs\" folder of your Minecraft folder as \"latest.log\".
2122
Please upload the file to https://mclo.gs/ and put the link here.
2223
**DO NOT** paste the file or its raw here, as that makes it harder to examine, and reduces the chance that we will be able to help you.
2324
validations:
@@ -30,6 +31,7 @@ body:
3031
Please run the \"/create debuginfo\" command in-game.
3132
This will copy useful information to your clipboard that will greatly help with debugging.
3233
Please paste this information here.
34+
**This is required and needed for debugging, so please don't leave this empty or add something else!**
3335
validations:
3436
required: true
3537

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: Bug Report
2+
description: "Report some other kind of incompatibility with another mod."
3+
labels: [ "Type: Compatibility" ]
4+
type: "Bug"
5+
body:
6+
- type: textarea
7+
attributes:
8+
label: Description
9+
description: >
10+
Please describe the issue in as much detail as possible.
11+
Explain what happened, and what you expected to have happened instead.
12+
Include images, screenshots, or videos if applicable.
13+
validations:
14+
required: true
15+
16+
- type: input
17+
attributes:
18+
label: Game Log (if applicable)
19+
description: >
20+
We may need the game log for additional information.
21+
This file can be found in the \"logs\" folder of your Minecraft folder as \"latest.log\".
22+
Please upload the file to https://mclo.gs/ and put the link here.
23+
**DO NOT** paste the file or its raw here, as that makes it harder to examine, and reduces the chance that we will be able to help you.
24+
validations:
25+
required: false
26+
27+
- type: textarea
28+
attributes:
29+
label: Debug Information
30+
description: >
31+
Please run the \"/create debuginfo\" command in-game.
32+
This will copy useful information to your clipboard that will greatly help with debugging.
33+
Please paste this information here.
34+
**This is required and needed for debugging, so please don't leave this empty or add something else!**
35+
validations:
36+
required: true
37+
38+
- type: markdown
39+
attributes:
40+
value: "Thank you for taking the time to make a report and help improve Create: Sound of Steam!"
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: Bug Report
2+
description: "Report a crash."
3+
labels: [ "Type: Crash" ]
4+
type: "Bug"
5+
body:
6+
- type: textarea
7+
attributes:
8+
label: Description
9+
description: >
10+
Please describe the crash in as much detail as possible.
11+
Include images, screenshots, or videos if applicable.
12+
validations:
13+
required: true
14+
15+
- type: input
16+
attributes:
17+
label: Crash Report
18+
description: >
19+
We may need the crash report for additional information.
20+
This file can be found in the \"crash-reports\" folder of your Minecraft folder as \"crash-*.txt"\.
21+
Please upload the file to https://mclo.gs/ and put the link here.
22+
**DO NOT** paste the file or its raw here, as that makes it harder to examine, and reduces the chance that we will be able to help you.
23+
validations:
24+
required: true
25+
26+
- type: textarea
27+
attributes:
28+
label: Debug Information
29+
description: >
30+
If possible please run the \"/create debuginfo\" command in-game.
31+
This will copy useful information to your clipboard that will greatly help with debugging.
32+
Please paste this information here.
33+
34+
If that is not possible, please shortly describe which version you are using, which addons and on what operating system you are etc.
35+
validations:
36+
required: true
37+
38+
- type: markdown
39+
attributes:
40+
value: "Thank you for taking the time to make a report and help improve Create: Sound of Steam!"
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: Feature request
2+
description: "Suggest an idea/change for the documentation"
3+
labels: [ "Type: Documentation" ]
4+
type: "Feature"
5+
body:
6+
- type: textarea
7+
attributes:
8+
label: Which page would you like to have added to/changed?
9+
description: >
10+
Please describe what you want to be added/changed.
11+
validations:
12+
required: true
13+
14+
15+
- type: textarea
16+
attributes:
17+
label: "Describe the solution you'd like."
18+
description: >
19+
A clear and concise description of what you want to happen.
20+
validations:
21+
required: true
22+
23+
- type: textarea
24+
attributes:
25+
label: "Describe alternatives you've considered."
26+
description: >
27+
A clear and concise description of any alternative solutions or features you've considered.
28+
validations:
29+
required: false
30+
31+
- type: textarea
32+
attributes:
33+
label: Additional context
34+
description: >
35+
Add any other context or screenshots about the feature request here.
36+
validations:
37+
required: false
38+
39+
- type: markdown
40+
attributes:
41+
value: "Thank you for taking the time to make a report and help improve Create: Sound of Steam!"

.github/ISSUE_TEMPLATE/feature_request.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,19 @@
11
name: Feature request
22
description: "Suggest an idea for the mod"
3-
labels: [ "enhancement" ]
3+
labels: [ "Type: Enhancement" ]
4+
type: "Feature"
45
body:
6+
- - type: textarea
7+
- attributes:
8+
- label: What feature do you want to be added?
9+
- description: >
10+
Please describe what you want to be added.
11+
512
- type: textarea
613
attributes:
714
label: Is your feature request related to a problem? Please describe.
815
description: >
9-
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]. Leave empty if not.
16+
A clear and concise description of what the problem is. e.g. \"I'm always frustrated when [...].\" Leave empty if not.
1017
validations:
1118
required: false
1219

@@ -24,7 +31,7 @@ body:
2431
description: >
2532
A clear and concise description of any alternative solutions or features you've considered.
2633
validations:
27-
required: true
34+
required: false
2835

2936
- type: textarea
3037
attributes:

0 commit comments

Comments
 (0)