From 2e7e8f577eaaff40a82d86fd9c9db907444e24b5 Mon Sep 17 00:00:00 2001 From: Kendall Date: Wed, 12 Oct 2022 13:17:42 +0530 Subject: [PATCH 01/12] Delete bug_report.md --- .github/ISSUE_TEMPLATE/bug_report.md | 29 ---------------------------- 1 file changed, 29 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index 28e6f37..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: "[BUG] " -labels: bug -assignees: '' - ---- - -## Problem Description - -**Summary** -A clear and concise description of what the bug is. - -**To Reproduce** -Steps to reproduce the behavior: -1. Go to '...' -2. Click on '....' -3. Scroll down to '....' -4. See error - -**Screenshots** -If applicable, add screenshots to help explain your problem. - -**Device** -What device(s) exhibit this behavious - -## Additional context -Add any other context about the problem here. From 6b0d33e93f8db805639848eff6ede0efb28142b2 Mon Sep 17 00:00:00 2001 From: Kendall Date: Wed, 12 Oct 2022 13:17:49 +0530 Subject: [PATCH 02/12] Delete feature_request.md --- .github/ISSUE_TEMPLATE/feature_request.md | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/feature_request.md diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index a143709..0000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -name: Feature request -about: Suggest an idea for this project -title: "[FEAT] " -labels: enhancement -assignees: '' - ---- - -## Feature Description - -**Summary:** - -**Screenshots:** - -## Proposed Method - -**Summary:** - -## Additional context -Add any other context or screenshots about the feature request here. - -- [ ] I want to work on this From 180adc84a565686fafd0534fc8d2cd9b8e50265a Mon Sep 17 00:00:00 2001 From: Kendall Date: Wed, 12 Oct 2022 13:20:19 +0530 Subject: [PATCH 03/12] Add bug report template as per requested in #19 --- .github/ISSUE_TEMPLATE/bug_report.yaml | 68 ++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yaml diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml new file mode 100644 index 0000000..9d8766b --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -0,0 +1,68 @@ +name: Bug Report +description: File a bug report +title: "[Bug]: (Enter short, one sentence summary of bug here)" +labels: ["Bug / Error"] +assignees: + - ThioJoe +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this bug report! + + - type: checkboxes + id: no-issues-relating-to-this + attributes: + label: Duplicate Issues + description: Check to make sure there are no existing posts about your problem in the 'issues' section. + options: + - label: There are **no existing posts relating to my problem** + required: true + - label: There are **existing posts relating to my problem, but the solution given, doesn't work for me.** + required: false + - type: textarea + id: what-happened + attributes: + label: What happened? + description: Also tell me, what did you expect to happen? + placeholder: Tell me what you see! + value: "Well, I was trying to ... but then ..." + validations: + required: true + - type: textarea + id: steps-to-reproduce + attributes: + label: Steps to reproduce + description: This will allow me to figure out where the issue originates. + placeholder: Step 1, Step 2, Step 3... + value: | + 1. + 2. + 3. + validations: + required: true + - type: dropdown + id: platform + attributes: + label: What platform are you seeing this problem on? + description: Sometimes, problems can be platform-specific. + multiple: false + options: + - Windows + - MacOS + - Linux (can also be ChromeOS) + - Android + - iPhone + validations: + required: true + - type: textarea + id: logs + attributes: + label: Relevant log output + description: Copy and paste from tracebacks, aka any error message text that appears in console, etc + render: shell + - type: textarea + id: screenshots + attributes: + label: Screenshots + description: (Screenshots can be uploaded by simply dragging an image file into this box) From b0f7218d5f581a770ceaabb6acdcc02cfb97b9a1 Mon Sep 17 00:00:00 2001 From: Kendall Date: Wed, 12 Oct 2022 13:21:01 +0530 Subject: [PATCH 04/12] Update bug_report.yaml --- .github/ISSUE_TEMPLATE/bug_report.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml index 9d8766b..49d0fa9 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yaml +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -3,13 +3,12 @@ description: File a bug report title: "[Bug]: (Enter short, one sentence summary of bug here)" labels: ["Bug / Error"] assignees: - - ThioJoe + body: - type: markdown attributes: value: | Thanks for taking the time to fill out this bug report! - - type: checkboxes id: no-issues-relating-to-this attributes: From 8ef54652a3aa1a52d4c459c9572e0fb5bdd5d43e Mon Sep 17 00:00:00 2001 From: Kendall Date: Wed, 12 Oct 2022 13:21:29 +0530 Subject: [PATCH 05/12] Update bug_report.yaml --- .github/ISSUE_TEMPLATE/bug_report.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml index 49d0fa9..7db0c87 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yaml +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -6,7 +6,7 @@ assignees: body: - type: markdown - attributes: +attributes: value: | Thanks for taking the time to fill out this bug report! - type: checkboxes From 9a84127e82881f1c3eda71807120a53b724c4bc7 Mon Sep 17 00:00:00 2001 From: Kendall Date: Wed, 12 Oct 2022 13:21:45 +0530 Subject: [PATCH 06/12] Update bug_report.yaml --- .github/ISSUE_TEMPLATE/bug_report.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml index 7db0c87..c3a0a97 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yaml +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -5,8 +5,8 @@ labels: ["Bug / Error"] assignees: body: - - type: markdown -attributes: + - type: markdown + attributes: value: | Thanks for taking the time to fill out this bug report! - type: checkboxes From 168875c0f564679f7e88572bac2b1a2f755a332a Mon Sep 17 00:00:00 2001 From: Kendall Date: Wed, 12 Oct 2022 13:23:29 +0530 Subject: [PATCH 07/12] fix errors --- .github/ISSUE_TEMPLATE/bug_report.yaml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml index c3a0a97..8afc085 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yaml +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -3,12 +3,13 @@ description: File a bug report title: "[Bug]: (Enter short, one sentence summary of bug here)" labels: ["Bug / Error"] assignees: - + - Codezilla-Club body: - - type: markdown - attributes: + - type: markdown + attributes: value: | Thanks for taking the time to fill out this bug report! + - type: checkboxes id: no-issues-relating-to-this attributes: @@ -28,7 +29,7 @@ body: value: "Well, I was trying to ... but then ..." validations: required: true - - type: textarea + - type: textarea id: steps-to-reproduce attributes: label: Steps to reproduce @@ -50,15 +51,15 @@ body: - Windows - MacOS - Linux (can also be ChromeOS) - - Android - iPhone + - Android validations: required: true - type: textarea id: logs attributes: label: Relevant log output - description: Copy and paste from tracebacks, aka any error message text that appears in console, etc + description: Copy and paste from tracebacks, aka any error message text that appears in the console render: shell - type: textarea id: screenshots From fec86c7d0c29064800f694c66d761a7a34e23b1b Mon Sep 17 00:00:00 2001 From: Kendall Date: Wed, 12 Oct 2022 13:28:59 +0530 Subject: [PATCH 08/12] add feature request template as requested in #19 --- .github/ISSUE_TEMPLATE/feature_request.yaml | 30 +++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/feature_request.yaml diff --git a/.github/ISSUE_TEMPLATE/feature_request.yaml b/.github/ISSUE_TEMPLATE/feature_request.yaml new file mode 100644 index 0000000..7703453 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yaml @@ -0,0 +1,30 @@ +name: Bug Report +description: Suggest an idea for this project +title: [FEAT]: (Enter short, one sentence summary of feature here)" +labels: ["enhancement"] +assignees: + - Codezilla-Club + body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this feature request! + - type: textarea + id: addition + attributes: + label: Summary + description: Summary of the Feature you want to add. + validations: + required: true + - type: textarea + id: proposed-method + attributes: + label: Proposed Method + description: Proposed Method of the feature you want to add. + validations: + required: true + - type: textarea + id: screenshots + attributes: + label: Screenshots + description: (Screenshots can be uploaded by simply dragging an image file into this box) From a3c5b68150b425f52445f15942e7ed2d63e4d0c3 Mon Sep 17 00:00:00 2001 From: Kendall Date: Wed, 12 Oct 2022 13:29:37 +0530 Subject: [PATCH 09/12] Update feature_request.yaml --- .github/ISSUE_TEMPLATE/feature_request.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/feature_request.yaml b/.github/ISSUE_TEMPLATE/feature_request.yaml index 7703453..e2a6530 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yaml +++ b/.github/ISSUE_TEMPLATE/feature_request.yaml @@ -11,7 +11,7 @@ assignees: Thanks for taking the time to fill out this feature request! - type: textarea id: addition - attributes: + attributes: label: Summary description: Summary of the Feature you want to add. validations: From c6c85f87edaf931ac9c9d93b7e3bae30c59e9881 Mon Sep 17 00:00:00 2001 From: Kendall Date: Wed, 12 Oct 2022 13:30:11 +0530 Subject: [PATCH 10/12] Update feature_request.yaml --- .github/ISSUE_TEMPLATE/feature_request.yaml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/feature_request.yaml b/.github/ISSUE_TEMPLATE/feature_request.yaml index e2a6530..7f4dd63 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yaml +++ b/.github/ISSUE_TEMPLATE/feature_request.yaml @@ -10,10 +10,12 @@ assignees: value: | Thanks for taking the time to fill out this feature request! - type: textarea - id: addition - attributes: - label: Summary - description: Summary of the Feature you want to add. + id: what-happened + attributes: + label: What happened? + description: Also tell me, what did you expect to happen? + placeholder: Tell me what you see! + value: "Well, I was trying to ... but then ..." validations: required: true - type: textarea From 3eb13eae1297d7ac1cf1e15e4e7d4fb6176107cd Mon Sep 17 00:00:00 2001 From: Kendall Date: Wed, 12 Oct 2022 13:30:34 +0530 Subject: [PATCH 11/12] Update feature_request.yaml --- .github/ISSUE_TEMPLATE/feature_request.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/feature_request.yaml b/.github/ISSUE_TEMPLATE/feature_request.yaml index 7f4dd63..99774d7 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yaml +++ b/.github/ISSUE_TEMPLATE/feature_request.yaml @@ -4,7 +4,7 @@ title: [FEAT]: (Enter short, one sentence summary of feature here)" labels: ["enhancement"] assignees: - Codezilla-Club - body: +body: - type: markdown attributes: value: | From 8b64858303d5ffe20ed977adaf06455c54ce2b59 Mon Sep 17 00:00:00 2001 From: Kendall Date: Wed, 12 Oct 2022 13:31:20 +0530 Subject: [PATCH 12/12] Update feature_request.yaml --- .github/ISSUE_TEMPLATE/feature_request.yaml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/feature_request.yaml b/.github/ISSUE_TEMPLATE/feature_request.yaml index 99774d7..13af4cd 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yaml +++ b/.github/ISSUE_TEMPLATE/feature_request.yaml @@ -10,12 +10,10 @@ body: value: | Thanks for taking the time to fill out this feature request! - type: textarea - id: what-happened + id: addition attributes: - label: What happened? - description: Also tell me, what did you expect to happen? - placeholder: Tell me what you see! - value: "Well, I was trying to ... but then ..." + label: Summary + description: Summary of the Feature you want to add. validations: required: true - type: textarea