From a6121c5b26ddb281de2a131e9ca04c995438c4d2 Mon Sep 17 00:00:00 2001 From: Stella Prins <30465823+stellaprins@users.noreply.github.com> Date: Mon, 28 Jul 2025 13:54:36 +0100 Subject: [PATCH 1/5] Add issue templates Add Feature request and Custom issue templates. When I attempted to create a new issue, the only available template was the "Bug report" template. After selecting "Choose a different template", no other templates were listed. --- .github/ISSUE_TEMPLATE/bug_report.md | 38 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/custom.md | 10 ++++++ .github/ISSUE_TEMPLATE/feature_request.md | 20 ++++++++++++ 3 files changed, 68 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/custom.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..dd84ea7 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,38 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: '' +assignees: '' + +--- + +**Describe the bug** +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 + +**Expected behavior** +A clear and concise description of what you expected to happen. + +**Screenshots** +If applicable, add screenshots to help explain your problem. + +**Desktop (please complete the following information):** + - OS: [e.g. iOS] + - Browser [e.g. chrome, safari] + - Version [e.g. 22] + +**Smartphone (please complete the following information):** + - Device: [e.g. iPhone6] + - OS: [e.g. iOS8.1] + - Browser [e.g. stock browser, safari] + - Version [e.g. 22] + +**Additional context** +Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/custom.md b/.github/ISSUE_TEMPLATE/custom.md new file mode 100644 index 0000000..48d5f81 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/custom.md @@ -0,0 +1,10 @@ +--- +name: Custom issue template +about: Describe this issue template's purpose here. +title: '' +labels: '' +assignees: '' + +--- + + diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..bbcbbe7 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,20 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: '' +labels: '' +assignees: '' + +--- + +**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. From 34cda21b76511b0150afe70a8de9faf51effd118 Mon Sep 17 00:00:00 2001 From: Stella Prins <30465823+stellaprins@users.noreply.github.com> Date: Mon, 28 Jul 2025 14:04:56 +0100 Subject: [PATCH 2/5] Delete .github/ISSUE_TEMPLATE/bug_report.md Because there was already a bug-form.yml that created a bug report template --- .github/ISSUE_TEMPLATE/bug_report.md | 38 ---------------------------- 1 file changed, 38 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 dd84ea7..0000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve -title: '' -labels: '' -assignees: '' - ---- - -**Describe the bug** -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 - -**Expected behavior** -A clear and concise description of what you expected to happen. - -**Screenshots** -If applicable, add screenshots to help explain your problem. - -**Desktop (please complete the following information):** - - OS: [e.g. iOS] - - Browser [e.g. chrome, safari] - - Version [e.g. 22] - -**Smartphone (please complete the following information):** - - Device: [e.g. iPhone6] - - OS: [e.g. iOS8.1] - - Browser [e.g. stock browser, safari] - - Version [e.g. 22] - -**Additional context** -Add any other context about the problem here. From da2ba9726778536f3f3f162ede4e5a7f336e80b6 Mon Sep 17 00:00:00 2001 From: Stella Prins <30465823+stellaprins@users.noreply.github.com> Date: Mon, 28 Jul 2025 14:54:32 +0100 Subject: [PATCH 3/5] Change issue templates to original kwave style (#20) --- .github/ISSUE_TEMPLATE/custom-form.yml | 16 ++++++++ .../ISSUE_TEMPLATE/feature_request-form.yml | 37 +++++++++++++++++++ 2 files changed, 53 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/custom-form.yml create mode 100644 .github/ISSUE_TEMPLATE/feature_request-form.yml diff --git a/.github/ISSUE_TEMPLATE/custom-form.yml b/.github/ISSUE_TEMPLATE/custom-form.yml new file mode 100644 index 0000000..174cee4 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/custom-form.yml @@ -0,0 +1,16 @@ +name: Custom Issue +description: Custom issue template +title: "Issue: " +body: + - type: markdown + attributes: + value: | + **Note:** For Bug Reports or Feature Requests, please use the dedicated forms instead of this custom issue template. + - type: textarea + id: custom-description + attributes: + label: Description + description: A clear and detailed description of the issue. + placeholder: Please use provide a detailed and specific description of your issue. + validations: + required: true \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature_request-form.yml b/.github/ISSUE_TEMPLATE/feature_request-form.yml new file mode 100644 index 0000000..c9c6e63 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request-form.yml @@ -0,0 +1,37 @@ +name: Feature Request +description: Suggest a new feature or improvement +title: "Feature: " +labels: ["feature"] +body: + - type: textarea + id: problem-description + attributes: + label: Is your feature request related to a problem? Please describe. + description: A clear and concise description of what the problem is. + placeholder: Describe the problem your feature request addresses. + validations: + required: true + - type: textarea + id: solution-description + attributes: + label: Describe the solution you'd like + description: A clear and concise description of what you want to happen. + placeholder: Describe your proposed solution. + validations: + required: true + - type: textarea + id: alternatives + attributes: + label: Describe alternatives you've considered + description: A clear and concise description of any alternative solutions or features you've considered. + placeholder: List any alternative solutions or features. + validations: + required: false + - type: textarea + id: additional-context + attributes: + label: Additional context + description: Add any other context or screenshots about the feature request here. + placeholder: Any additional information or screenshots. + validations: + required: false From 0b43d143a2f6eda0974bfdf0e64b457e02fedc10 Mon Sep 17 00:00:00 2001 From: Stella Prins <30465823+stellaprins@users.noreply.github.com> Date: Mon, 28 Jul 2025 15:01:55 +0100 Subject: [PATCH 4/5] Delete .github/ISSUE_TEMPLATE/custom.md --- .github/ISSUE_TEMPLATE/custom.md | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/custom.md diff --git a/.github/ISSUE_TEMPLATE/custom.md b/.github/ISSUE_TEMPLATE/custom.md deleted file mode 100644 index 48d5f81..0000000 --- a/.github/ISSUE_TEMPLATE/custom.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -name: Custom issue template -about: Describe this issue template's purpose here. -title: '' -labels: '' -assignees: '' - ---- - - From eac38a13960e136425af6e77725d1c09ed3d29c5 Mon Sep 17 00:00:00 2001 From: Stella Prins <30465823+stellaprins@users.noreply.github.com> Date: Mon, 28 Jul 2025 15:02:17 +0100 Subject: [PATCH 5/5] Delete .github/ISSUE_TEMPLATE/feature_request.md --- .github/ISSUE_TEMPLATE/feature_request.md | 20 -------------------- 1 file changed, 20 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 bbcbbe7..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: '' -assignees: '' - ---- - -**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.