From 09e285f91bde70de37f27f85315f93e7d373ce60 Mon Sep 17 00:00:00 2001 From: BotBlake Date: Sat, 21 Dec 2024 01:57:16 +0100 Subject: [PATCH 1/4] change bugreport form --- .github/ISSUE_TEMPLATE/bug_report.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index b301e02f..169afc0c 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -1,6 +1,5 @@ name: "Bug Report" description: "Report an issue with the software." -title: "[Bug]: " labels: ["bug"] body: - type: textarea @@ -63,7 +62,6 @@ body: label: "Logs" description: "Please provide the logs." placeholder: "Paste your Kodi logs here..." - render: "python" validations: required: true @@ -73,7 +71,6 @@ body: label: "Server Logs" description: "Please provide server logs (if relevant)." placeholder: "Paste your server logs here..." - render: "csharp" validations: required: false From 67eb6dcb9afab574aca69fab35d3177769e572e7 Mon Sep 17 00:00:00 2001 From: BotBlake Date: Sat, 21 Dec 2024 02:21:10 +0100 Subject: [PATCH 2/4] add feature request form template --- .github/ISSUE_TEMPLATE/feature-request.yml | 64 ++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/feature-request.yml diff --git a/.github/ISSUE_TEMPLATE/feature-request.yml b/.github/ISSUE_TEMPLATE/feature-request.yml new file mode 100644 index 00000000..c7aac469 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-request.yml @@ -0,0 +1,64 @@ +name: Feature Request +about: Suggest a feature or enhancement for the project +labels: enhancement +body: + - type: markdown + attributes: + value: | + Thank you for suggesting a new feature! Please take a moment to fill out the following details to help us understand your idea better. + + - type: input + id: short-description + attributes: + label: Short Description + description: A brief summary of the feature you are requesting. + placeholder: "Add a short, descriptive title for your feature request." + validations: + required: true + + - type: textarea + id: user-story + attributes: + label: User Story + description: | + Please provide a user story for the feature. A user story follows the format: + + "As a [type of user], I want [a goal] so that [benefit]." + + Example: "As a user, I want a dark mode setting so that I can use the application comfortably at night." + placeholder: | + "As a [type of user], I want [a goal] so that [benefit]." + + Acceptance Criteria: + [List of measurable criteria to ensure the feature works as intended.] + validations: + required: true + + - type: textarea + id: why-needed + attributes: + label: Why is this feature needed? + description: Explain why this feature would be beneficial and how it improves the project. + placeholder: "Describe why this feature would be useful." + validations: + required: true + + - type: textarea + id: additional-context + attributes: + label: Additional Context + description: Provide any other details or resources (like screenshots, designs, or links) that might help us understand your request. + placeholder: "Add any additional information here." + validations: + required: false + + - type: checkboxes + id: agreement + attributes: + label: Agreement + description: Please confirm the following before submitting. + options: + - label: I have searched the existing issues to ensure this feature has not been requested before. + required: true + - label: I have provided enough detail to explain the value of this feature. + required: true From 39a5bc7c597708919eee74c520ee6aec51995185 Mon Sep 17 00:00:00 2001 From: BotBlake Date: Sat, 21 Dec 2024 02:23:48 +0100 Subject: [PATCH 3/4] fix feature request template --- .github/ISSUE_TEMPLATE/feature-request.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/feature-request.yml b/.github/ISSUE_TEMPLATE/feature-request.yml index c7aac469..8ff683cd 100644 --- a/.github/ISSUE_TEMPLATE/feature-request.yml +++ b/.github/ISSUE_TEMPLATE/feature-request.yml @@ -1,5 +1,5 @@ name: Feature Request -about: Suggest a feature or enhancement for the project +description: Suggest a feature or enhancement for the project labels: enhancement body: - type: markdown @@ -30,7 +30,7 @@ body: "As a [type of user], I want [a goal] so that [benefit]." Acceptance Criteria: - [List of measurable criteria to ensure the feature works as intended.] + [List of measurable criteria to ensure the feature works as intended.] validations: required: true From 4de8e793ff9b0513ee6f07b6f071bcf0dfa3f175 Mon Sep 17 00:00:00 2001 From: BotBlake Date: Sat, 21 Dec 2024 02:24:59 +0100 Subject: [PATCH 4/4] remove user story explaination --- .github/ISSUE_TEMPLATE/feature-request.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/feature-request.yml b/.github/ISSUE_TEMPLATE/feature-request.yml index 8ff683cd..3b7c1c88 100644 --- a/.github/ISSUE_TEMPLATE/feature-request.yml +++ b/.github/ISSUE_TEMPLATE/feature-request.yml @@ -21,11 +21,7 @@ body: attributes: label: User Story description: | - Please provide a user story for the feature. A user story follows the format: - - "As a [type of user], I want [a goal] so that [benefit]." - - Example: "As a user, I want a dark mode setting so that I can use the application comfortably at night." + Please provide a user story for the feature. placeholder: | "As a [type of user], I want [a goal] so that [benefit]."