From fe3f1019381daa32132080a87dc5794d574bc7e4 Mon Sep 17 00:00:00 2001 From: ItsEasyActually Date: Fri, 31 Jan 2025 16:51:29 -0500 Subject: [PATCH] Adding Exception Report Issue Configuration. Updating Bug Report to use the correct template. --- .../ISSUE_TEMPLATE/03-exception-report.yml | 35 +++++++++++++++++++ SA-Mod-Manager/UI/MainWindow.xaml.cs | 2 +- 2 files changed, 36 insertions(+), 1 deletion(-) create mode 100644 .github/ISSUE_TEMPLATE/03-exception-report.yml diff --git a/.github/ISSUE_TEMPLATE/03-exception-report.yml b/.github/ISSUE_TEMPLATE/03-exception-report.yml new file mode 100644 index 00000000..ddc906f9 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/03-exception-report.yml @@ -0,0 +1,35 @@ +name: "Exception Report" +description: "Report a crash from the Mod Manager. DO NOT report game crashes." +title: "[Exception Report]: " +labels: ["exception report", "bug"] +body: +- type: checkboxes + attributes: + label: Report Verification + description: Before submitting your Exception Report, please check the Issues on the repo for any similar reports. If you find one, please add your report to that issue. + options: + - label: I have checked and verified there are no similar reports. + required: true +- type: textarea + attributes: + label: Exception Report + description: Please paste your Exception Report here. Include any additional crash related files here. + validations: + required: true +- type: textarea + attributes: + label: Reproduction Steps + description: Please provide the steps you were taking when the bug occurred. + value: | + 1. + 2. + 3. + ... + validations: + required: true +- type: textarea + attributes: + label: Additional Information + description: Please provide any additional information you believe may pertain to this bug. You can provide screenshots, videos, and any potential logs by clicking this area to highlight it, then dragging the file(s) in. + validations: + required: false \ No newline at end of file diff --git a/SA-Mod-Manager/UI/MainWindow.xaml.cs b/SA-Mod-Manager/UI/MainWindow.xaml.cs index 61a86064..0664c066 100644 --- a/SA-Mod-Manager/UI/MainWindow.xaml.cs +++ b/SA-Mod-Manager/UI/MainWindow.xaml.cs @@ -1235,7 +1235,7 @@ private void OpenLoaderIssue() private void OpenManagerIssue() { string url = "https://github.com/X-Hax/SA-Mod-Manager/issues/new"; - url += "?template=bug_report.md"; // Add Template + url += "?template=01-bug-report.yml"; // Add Configuration. var ps = new ProcessStartInfo(url) {