Skip to content

Commit c885fb7

Browse files
Fix #5279
1 parent 2ff69db commit c885fb7

File tree

3 files changed

+103
-53
lines changed

3 files changed

+103
-53
lines changed

.github/ISSUE_TEMPLATE.md

-53
This file was deleted.

.github/ISSUE_TEMPLATE/defect.yml

+90
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
name: Defect
2+
description: Report bugs, crashes, or unintended behavior
3+
labels: ['T: defect']
4+
5+
body:
6+
7+
- type: textarea
8+
id: description
9+
attributes:
10+
label: Description
11+
description: Provide a clear and concise explanation of the problem encountered.
12+
validations:
13+
required: true
14+
15+
- type: textarea
16+
id: to_reproduce
17+
attributes:
18+
label: Steps to reproduce
19+
description: Outline the exact sequence of actions required to reproduce the issue.
20+
placeholder: |
21+
1. Launch SuperTuxKart
22+
2. Navigate to [specific menu/location]
23+
3. Perform [specific action]
24+
4. Observe unexpected behavior
25+
validations:
26+
required: true
27+
28+
- type: textarea
29+
id: config
30+
attributes:
31+
label: Configuration
32+
description: |
33+
Include the following details to help us diagnose the issue:
34+
- SuperTuxKart version (visible in the "About" menu)
35+
- Installation source (official website, package manager, etc.)
36+
- Operating system and version
37+
- CPU/GPU specifications
38+
- Input device details (if relevant)
39+
values: |
40+
SuperTuxKart version:
41+
Installation source:
42+
OS:
43+
CPU:
44+
GPU:
45+
Input device:
46+
validations:
47+
required: true
48+
49+
- type: textarea
50+
id: error_msg
51+
attributes:
52+
label: Error message
53+
description: |
54+
If an error message was shown, please paste the complete error message, or a screenshot of it.
55+
values: |
56+
```
57+
[Paste error message here]
58+
```
59+
60+
- type: textarea
61+
id: stdout
62+
attributes:
63+
label: Log File (stdout.log)
64+
description: |
65+
Attach the log file (stdout.log) from your latest session where the issue occurred.
66+
File location
67+
- Windows: %appdata%\supertuxkart\config-0.10\stdout.log
68+
- macOS: ~/Library/Application Support/supertuxkart/config-0.10/stdout.log
69+
- Linux and other Unix-based systems:
70+
$XDG_CONFIG_HOME/supertuxkart/config-0.10/stdout.log
71+
or
72+
~/.config/supertuxkart/config-0.10/stdout.log
73+
values: |
74+
```
75+
[Paste contents of stdout.log here]
76+
```
77+
78+
- type: textarea
79+
id: input
80+
attributes:
81+
label: Input Configuration (input.xml)
82+
description: |
83+
If your issue is related to the input config (gamepads, keyboards),
84+
please provide your file input.xml located in the same directory as stdout.log.
85+
values: |
86+
```
87+
[Paste contents of input.xml here]
88+
```
89+
90+
+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Enhancement
2+
description: Request for new features and other improvements
3+
labels: ['T: enhancement']
4+
5+
body:
6+
- type: textarea
7+
id: description
8+
attributes:
9+
label: Description
10+
description: |
11+
If applicable, add screenshots or mockups to help explain your request.
12+
validations:
13+
required: true

0 commit comments

Comments
 (0)