From 9fc39c0eb2dc8e55af5bde98808351ad9b123376 Mon Sep 17 00:00:00 2001 From: 92 Date: Sat, 14 Sep 2024 13:13:46 +0900 Subject: [PATCH 1/2] Add yaml version issue template --- .github/ISSUE_TEMPLATE/bug_report.yaml | 83 +++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.yaml | 51 +++++++++++++ 2 files changed, 134 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yaml create mode 100644 .github/ISSUE_TEMPLATE/feature_request.yaml diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml new file mode 100644 index 0000000..7beb804 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -0,0 +1,83 @@ +name: Bug report +description: Create a report to help us address issues you are facing +title: "[Bug] " +labels: [bug] +body: + - type: checkboxes + id: duplication + attributes: + label: ⠀ + options: + - label: This issue is not duplicated with any other open or closed issues + required: true + + - type: markdown + attributes: + value: | + ⠀ + Thanks for taking the time to make us better! + + - type: textarea + id: description + attributes: + label: Describe the bug + description: A clear and concise description of what the bug is + placeholder: | + App crashes on startup every time after changing settings. + validations: + required: true + + - type: textarea + id: expected + attributes: + label: Expected behavior + description: A clear and concise description of what you expected to happen + placeholder: | + App started normally, everything worked fine. + validations: + required: true + + - type: textarea + id: reproduce + attributes: + label: Steps to reproduce + description: Steps to reproduce the bug + placeholder: | + 1. Turn on "Show hitbox" in "Judgement" settings + 2. Restart the app + 3. Crash + validations: + required: true + + - type: textarea + id: environment + attributes: + label: Device information + description: Provide details about your system environment + placeholder: | + Device: [e.g. Pixel 8 Pro] + System: [e.g. Android 15 (AP41.240823.009)] + Version: [e.g. v2.0.0.beta.2.patch.5] + validations: + required: true + + - type: textarea + id: screenshots + attributes: + label: Screenshots + description: If applicable, add screenshots to help explain your problem + placeholder: | + modified_setting_items.jpg + crashed_screen.jpg + validations: + required: false + + - type: textarea + id: additional + attributes: + label: Additional context + description: Add any other context about the problem here + placeholder: | + Crash report: + validations: + required: false diff --git a/.github/ISSUE_TEMPLATE/feature_request.yaml b/.github/ISSUE_TEMPLATE/feature_request.yaml new file mode 100644 index 0000000..9489ec1 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yaml @@ -0,0 +1,51 @@ +name: Feature request +description: Suggest features you want to add or suggest to modify existing features +title: "[Feature] " +labels: [enhancement] +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to make us better! + + - type: textarea + id: related + attributes: + label: Is your feature request related to a problem? + description: A clear and concise description of what the problem + placeholder: | + I'm always frustrated when ... + validations: + required: false + + - type: textarea + id: description + attributes: + label: Describe the feature + description: A clear and concise description of what the feature is + validations: + required: true + + - type: textarea + id: reasons + attributes: + label: Reason for adding + description: Explain why this feature would be useful to you + validations: + required: true + + - type: textarea + id: examples + attributes: + label: Example(s) + description: Post screenshots/drawings/links/etc of the feature request, or proof-of-concept images about the feature + validations: + required: false + + - type: textarea + id: additional + attributes: + label: Additional context + description: Add any other context about the feature here + validations: + required: false From e25ebfb358e4311eba162e25fb360e86549c7422 Mon Sep 17 00:00:00 2001 From: 92 Date: Sat, 14 Sep 2024 13:41:24 +0900 Subject: [PATCH 2/2] Remove markdown version issue template --- .github/ISSUE_TEMPLATE/bug_report.md | 29 ----------------------- .github/ISSUE_TEMPLATE/feature_request.md | 20 ---------------- 2 files changed, 49 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md delete mode 100644 .github/ISSUE_TEMPLATE/feature_request.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index 7fcca46..0000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,29 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve -title: '' -labels: bug -assignees: '2394425147' - ---- - -**Describe the bug** -A clear and concise description of what the bug is. - -**To Reproduce** -Steps to reproduce the behavior: -1. - -**Expected behavior** -A clear and concise description of what you expected to happen. - -**Screenshots** -If applicable, add screenshots to help explain your problem. - -**Device specs** - - Device: [e.g. iPhone6] - - OS: [e.g. iOS8.1] - - Version [e.g. 22] - -**Additional context** -Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index 7d01e0c..0000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -name: Feature request -about: Suggest an idea for this project -title: '' -labels: enhancement -assignees: '2394425147' - ---- - -**Is your feature request related to a problem? Please describe.** -A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] - -**Describe the solution you'd like** -A clear and concise description of what you want to happen. - -**Describe alternatives you've considered** -A clear and concise description of any alternative solutions or features you've considered. - -**Additional context** -Add any other context or screenshots about the feature request here.