From a9ed7da16e25655dcb919c42d6aeb49a012c714b Mon Sep 17 00:00:00 2001 From: Zero Date: Tue, 16 Aug 2022 10:57:51 +0800 Subject: [PATCH] DOC: use issue forms replace plain text (#752) --- .github/ISSUE_TEMPLATE/bug-report.md | 32 ----------- .github/ISSUE_TEMPLATE/bug-report.yaml | 78 ++++++++++++++++++++++++++ 2 files changed, 78 insertions(+), 32 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug-report.md create mode 100644 .github/ISSUE_TEMPLATE/bug-report.yaml diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md deleted file mode 100644 index 23ced593e..000000000 --- a/.github/ISSUE_TEMPLATE/bug-report.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -name: "\U0001F41E Bug report" -about: Create a bug report to help us improve Flow Launcher -title: "[Describe Your Bug]" -labels: 'bug' -assignees: '' - ---- - -**Describe the bug/issue** -A clear and concise description of what the bug is. - -**To Reproduce** -Steps to reproduce the behavior: -1. ... -2. ... -3. ... - -**Screenshots** -If applicable, add screenshots to help explain your problem. - -**Your System** -``` -Windows build number: (run "ver" at a command prompt) -Flow Launcher version: (Settings => About) -``` -**Flow Launcher Error Log** - diff --git a/.github/ISSUE_TEMPLATE/bug-report.yaml b/.github/ISSUE_TEMPLATE/bug-report.yaml new file mode 100644 index 000000000..87bb5045a --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-report.yaml @@ -0,0 +1,78 @@ +name: "\U0001F41E Bug Report" +description: Create a bug report to help us improve Flow Launcher +title: "BUG: " +labels: ["bug"] + +body: + - type: markdown + attributes: + value: Thanks for taking the time to fill out this bug report! + + - type: checkboxes + attributes: + label: Checks + options: + - label: > + I have checked that this issue has not already been reported. + + - type: textarea + attributes: + label: Problem Description + description: A clear and concise description of what the problem is. + validations: + required: true + + - type: textarea + attributes: + label: To Reproduce + description: Steps to reproduce the behavior. + value: > + 1. ... + + 2. ... + + 3. ... + + - type: textarea + attributes: + label: Screenshots + description: If applicable, add screenshots to help explain your problem. + + - type: input + attributes: + label: Flow Launcher Version + description: Go to "Settings" => "About". + value: v1.8.3 + + - type: input + attributes: + label: Windows Build Number + description: Run "ver" at CMD (command prompt). + value: 10.0.19043.1288 + + - type: textarea + id: logs + attributes: + label: Error Log + description: > + Log file place: + + - The latest version place: `%AppData%\FlowLauncher\Logs\\.txt` + + - For portable mode: `%LocalAppData%\FlowLauncher\\UserData\Logs\\.txt` + value: > +
+ + + ```shell + + + Replace this line with the important log contents. + + + ``` + +
+ + +