From b8884d9591a878e9b6b1b92bdafe22c34cbf0c63 Mon Sep 17 00:00:00 2001 From: Missake212 Date: Mon, 14 Apr 2025 10:26:39 +0100 Subject: [PATCH] Adding requirements to the App Bug Report template based on the Game Bug Report template (#2783) * Update app-bug-report.yaml Forcing people to fill information about their hardware to make it easier for debugging problems, example: "shad crashes after I open it" with this we can tell if the user has a CPU with an iGPU instead of asking them. * Update app-bug-report.yaml VRAM amount shouldn't be needed actually. --- .github/ISSUE_TEMPLATE/app-bug-report.yaml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/.github/ISSUE_TEMPLATE/app-bug-report.yaml b/.github/ISSUE_TEMPLATE/app-bug-report.yaml index cd540e06e..8959221a0 100644 --- a/.github/ISSUE_TEMPLATE/app-bug-report.yaml +++ b/.github/ISSUE_TEMPLATE/app-bug-report.yaml @@ -53,3 +53,24 @@ body: placeholder: "Example: Windows 11, Arch Linux, MacOS 15" validations: required: true + - type: input + id: cpu + attributes: + label: CPU + placeholder: "Example: Intel Core i7-8700" + validations: + required: true + - type: input + id: gpu + attributes: + label: GPU + placeholder: "Example: nVidia GTX 1650" + validations: + required: true + - type: input + id: ram + attributes: + label: Amount of RAM in GB + placeholder: "Example: 16 GB" + validations: + required: true