Skip to content
This repository was archived by the owner on Jan 16, 2022. It is now read-only.

Commit bb684f5

Browse files
authored
Add files via upload
1 parent 372e3a4 commit bb684f5

File tree

2 files changed

+204
-0
lines changed

2 files changed

+204
-0
lines changed
Lines changed: 152 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,152 @@
1+
name: Bug Report
2+
description: File a bug report
3+
title: "[Bug]: "
4+
labels: [bug]
5+
assignees:
6+
- x0rtrunks
7+
body:
8+
- type: markdown
9+
attributes:
10+
value: |
11+
# STOP!
12+
### Before posting a bug report here, you must start a discussion on Duet3D forums. This is to help reduce duplicates and solve configuration issues.
13+
https://forum.duet3d.com/categories
14+
15+
### Before posting your issue, please review the following sources to check if your question has already been reported and answered.
16+
17+
#### Have you checked the documentation?
18+
https://duet3d.dozuki.com/
19+
20+
#### Have you checked the GCODE Wiki?
21+
https://duet3d.dozuki.com/Wiki/Gcode
22+
23+
#### Have you checked the firmware release notes?
24+
RRF2: https://github.com/Duet3D/RepRapFirmware/wiki/Changelog-RRF-1.x-&-2.x
25+
RRF3: https://github.com/Duet3D/RepRapFirmware/wiki/Changelog-RRF-3.x
26+
27+
#### Have you searched the forums?
28+
https://forum.duet3d.com/search
29+
30+
#### If this is a Beta firmware release, have you checked the Beta Firmware Forum?
31+
https://forum.duet3d.com/category/30/beta-firmware
32+
33+
#### Have you searched the existing issues on GitHub?
34+
35+
### Please complete the following form to the best of your ability. Provide as much detail as possible.
36+
37+
## Thank you for taking the time to file a bug report.
38+
- type: checkboxes
39+
id: Hardware
40+
attributes:
41+
label: Which Duet products are you using?
42+
description: Please list all Duet electronics boards you are using when experiencing your issue.
43+
options:
44+
- label: Duet2-Wifi
45+
- label: Duet2-Ethernet
46+
- label: Duet Expansion Breakout Board
47+
- label: Duex2
48+
- label: Duex5
49+
- label: Duet2-Maestro
50+
- label: Maestro Dual Driver Expansion
51+
- label: Duet3-6HC
52+
- label: Duet3-3HC
53+
- label: Duet3-1XD
54+
- label: Duet3-1LC
55+
- label: Duet3-Tool Distribution Board
56+
- label: Duet3-Mini5+
57+
- label: Duet3-Mini2+
58+
- label: Raspberry Pi or other SBC
59+
- label: SmartEffector
60+
- label: Magnetic Filament Sensor
61+
- label: Laser Filament Sensor
62+
- label: PT100 Daughterboard
63+
- label: Thermocouple Daughterboard
64+
- label: PanelDue
65+
- label: Other
66+
- label: None
67+
validations:
68+
required: true
69+
- type: input
70+
id: FirmwareVersion
71+
attributes:
72+
label: Firmware Version
73+
description: What version of our software are you running? Identify by sending M115
74+
placeholder: ex. RepRapFirmware 3.2.2, PanelDueFirmware 3.3
75+
validations:
76+
required: true
77+
- type: input
78+
id: DWCVersion
79+
attributes:
80+
label: Duet Web Control Version
81+
description: What version of our software are you running? Identify in DWC by going to the Settings, General page
82+
placeholder: ex. DWC 3.2.2, DWC 2.0
83+
validations:
84+
required: true
85+
- type: checkboxes
86+
id: SBCMode
87+
attributes:
88+
label: Are you using a Single Board Computer (RaspberryPi) with your Duet?
89+
description: SBC - Yes or No.
90+
options:
91+
- label: Yes I use a SBC.
92+
- label: No I do not use a SBC.
93+
validations:
94+
required: true
95+
- type: textarea
96+
id: M122
97+
attributes:
98+
label: Please upload the results of sending M122 in the gcode console.
99+
description: This diagnostic report will provide a lot of useful information for us.
100+
placeholder: Results of M122 copy and paste here.
101+
value: "M122 Report"
102+
render: shell
103+
validations:
104+
required: false
105+
- type: textarea
106+
id: config
107+
attributes:
108+
label: Please upload the content of your config.g file.
109+
description: This will show us how your printer is configured at startup.
110+
placeholder: Copy and paste your config.g here.
111+
value: "Config.g"
112+
render: gcode
113+
validations:
114+
required: false
115+
- type: textarea
116+
id: OtherMacros
117+
attributes:
118+
label: Please upload the content of any other releveant macro files.
119+
description: Homeall.g, bed.g, or a custom macro needed to reproduce the problem.
120+
placeholder: Copy and paste your macro file here.
121+
render: gcode
122+
validations:
123+
required: false
124+
- type: textarea
125+
id: PrinterDetails
126+
attributes:
127+
label: Details specific to your printer.
128+
description: Please tell us about your printer.
129+
placeholder: Make, model, DIY, kinematics, motors, power supply voltage, heaters, fans, etc.
130+
validations:
131+
required: false
132+
- type: textarea
133+
id: Links
134+
attributes:
135+
label: Links to additional info.
136+
description: Please share any links to forum threads or photos and videos of the problem.
137+
validations:
138+
required: false
139+
- type: textarea
140+
id: ProblemDescription
141+
attributes:
142+
label: What happened?
143+
description: Describe the problem in as much detail as possible.
144+
value: |
145+
Expected result
146+
147+
Observed result
148+
149+
Steps to reproduce
150+
151+
validations:
152+
required: true
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
name: Feature Request
2+
description: Suggest an idea for this project
3+
title: "[FeatureRequest]: "
4+
labels: [FeatureRequest]
5+
assignees:
6+
- x0rtrunks
7+
body:
8+
- type: markdown
9+
attributes:
10+
value: |
11+
### The Duet forums have wishlist sections for feature requests if you'd like to discuss your feature request there first.
12+
https://forum.duet3d.com/category/9/hardware-wishlist
13+
https://forum.duet3d.com/category/8/firmware-wishlist
14+
https://forum.duet3d.com/category/11/duet-web-control-wishlist
15+
16+
## Thank you for taking the time to submit a feature request.
17+
- type: textarea
18+
id: ProblemDescription
19+
attributes:
20+
label: Is your feature request related to a problem? Please describe.
21+
description: A clear and concise description of what the problem is.
22+
value: |
23+
Ex. I'm always frustrated when...
24+
validations:
25+
required: true
26+
- type: textarea
27+
id: SolutionDescription
28+
attributes:
29+
label: Describe the solution you propose.
30+
description: A clear and concise description of your prefered solution.
31+
value: |
32+
Ex. It would be great if...
33+
validations:
34+
required: true
35+
- type: textarea
36+
id: AlternativesDescription
37+
attributes:
38+
label: Describe alternatives you've considered
39+
description: A clear and concise description of any alternative solutions or features you've considered.
40+
value: |
41+
Ex. A workaround exists but it is tedius, for example...
42+
validations:
43+
required: false
44+
- type: textarea
45+
id: AdditionalDetails
46+
attributes:
47+
label: Provide any additional context or information.
48+
description: Add any other context or screenshots about the feature request here.
49+
value: |
50+
Ex. Photos, mockups, etc.
51+
validations:
52+
required: false

0 commit comments

Comments
 (0)