From 99636aaba3f7ddf82676440068f7729af1408119 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Fri, 3 Jan 2025 20:50:14 +0900 Subject: edited bug report and feature request template. Custom report removed the report and feature request template are copied from hyprland github --- .github/ISSUE_TEMPLATE/bug_report.md | 98 ++++++++++++++++++------------- .github/ISSUE_TEMPLATE/custom.md | 47 --------------- .github/ISSUE_TEMPLATE/feature_request.md | 62 ++++++++++--------- 3 files changed, 91 insertions(+), 116 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/custom.md (limited to '.github') diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 12a598b0..0d862bcc 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -1,47 +1,63 @@ ---- -name: Bug report -about: Create a report to help us improve -title: "[Bug]: Short description of the issue" -labels: "Something isn't working" ---- +name: Bug Report +description: Something is not working right +labels: ["bug"] +body: + - type: checkboxes + attributes: + label: Already reported ? * + description: Before opening a new bug report, please take a moment to search through the current open and closed issues to check if it already exists. + options: + - label: I have searched the existing open and closed issues. + required: true + + - type: dropdown + id: type + attributes: + label: Regression? + description: | + Regression means that something used to work but no longer does. + options: + - "Yes" + - "No" + validations: + required: true + + - type: textarea + id: ver + attributes: + label: System Info and Version + description: | + Paste the output of `inxi -CGIsSMnr` here. + install inxi if command not found + validations: + required: true + + + - type: textarea + id: desc + attributes: + label: Description + description: "What went wrong? What exactly happened?" + validations: + required: true + + - type: textarea + id: repro + attributes: + label: How to reproduce + description: "How can someone else reproduce the issue?" + validations: + required: true + + - type: textarea + id: logs + attributes: + label: install logs, images or videos + description: | + Anything that can help. Please always ATTACH and not paste them. -## Bug Report -### Description -[Provide a clear and concise description of the bug.] -### Steps to Reproduce -1. [First Step] -2. [Second Step] -3. [and so on...] -### Expected Behavior - -[What did you expect to happen?] - -### Actual Behavior - -[What actually happened?] - -### Screenshots - -[If applicable, add screenshots to help explain your problem.] - -### Environment - -[Please add any other relevant information about the bug and remove the unnecessary lines.] - -### show output of `inxi -CGIsSMnr` install package `inxi` if not exist -show output here -``` - - -``` - -or you can also run `inxi -CGIsSMnr >diag.txt` and attach diag.txt - -### Additional Information - -[Add any other information about the problem here. For example, you might include the error message, any recent changes that you made to the project, or any other relevant details.] diff --git a/.github/ISSUE_TEMPLATE/custom.md b/.github/ISSUE_TEMPLATE/custom.md deleted file mode 100644 index 7d1d7e3e..00000000 --- a/.github/ISSUE_TEMPLATE/custom.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -name: Custom template -about: Use this template to submit a custom issue -title: "[Custom]: Short description of the issue" -labels: "custom" ---- - -## Custom Template - -### Description - -[Provide a clear and concise description of the issue or request.] - -### Steps to Reproduce (if applicable) - -1. [First Step] -2. [Second Step] -3. [and so on...] - -### Expected Behavior - -[What did you expect to happen?] - -### Actual Behavior - -[What actually happened?] - -### Screenshots (if applicable) - -[If applicable, add screenshots to help explain your problem.] - -### Proposed Solution (if applicable) - -[If you have a specific solution in mind, describe it here. If not, you can skip this section.] - -### Additional Information - -[Add any other information about the issue or request here. For example, you might include links to similar features in other projects, or screenshots or diagrams to help explain your idea.] - -### show output of `inxi -CGIsSMnr` install package `inxi` if not exist -show output here -``` - - -``` - -or you can also run `inxi -CGIsSMnr >diag.txt` and attach diag.txt \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index bd64d0a0..92bbc2f5 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -1,28 +1,34 @@ ---- -name: Feature request -about: Suggest a feature for this project -title: "[Feature Request]: Short description of the feature" -labels: "enhancement, needs triage, feature request" ---- - -## Feature Request - -### Description - -[Provide a clear and concise description of the feature you'd like to see added.] - -### Use Case - -[Describe how this feature would be useful to you or to other users of the project.] - -### Proposed Solution - -[If you have a specific solution in mind, describe it here. If not, you can skip this section.] - -### Alternatives - -[Are there any alternative solutions or workarounds that you've considered? If so, describe them here.] - -### Additional Information - -[Add any other information about the feature request here. For example, you might include links to similar features in other projects, or screenshots or diagrams to help explain your idea.] +name: Feature Request +description: I'd like to request additional functionality +labels: ["enhancement"] +body: + - type: markdown + attributes: + value: | + Before opening a new feature, take a moment to search through the current open ones. + + --- + + - type: textarea + id: desc + attributes: + label: Description + description: "Describe your idea" + validations: + required: true + + - type: textarea + id: desc + attributes: + label: Use case + description: "Describe how this feature would be useful to you or to other users of the project." + validations: + required: true + + - type: textarea + id: desc + attributes: + label: Proposed Solution or alternatives + description: "If you have a specific solution in mind, describe it here." + validations: + required: true -- cgit v1.2.3 From 80dc7cb37cfbe9a893174597d40ec71c72eee6c0 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Fri, 3 Jan 2025 20:55:03 +0900 Subject: hmmm does not seem to work --- .github/ISSUE_TEMPLATE/bug_report.md | 7 +++++++ .github/ISSUE_TEMPLATE/feature_request.md | 7 +++++++ 2 files changed, 14 insertions(+) (limited to '.github') diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 0d862bcc..21cc811d 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -1,3 +1,10 @@ +--- +name: Bug report +about: Create a report to help us improve +title: "[Bug]: Short description of the issue" +labels: "Something isn't working" +--- + name: Bug Report description: Something is not working right labels: ["bug"] diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index 92bbc2f5..b3ac7aa6 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -1,3 +1,10 @@ +--- +name: Feature request +about: Suggest a feature for this project +title: "[Feature Request]: I'd like to request additional functionality or changes" +labels: "enhancement, feature request" +--- + name: Feature Request description: I'd like to request additional functionality labels: ["enhancement"] -- cgit v1.2.3 From ba17206d13b748932fb3273aa03800ddba413f51 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Fri, 3 Jan 2025 20:57:13 +0900 Subject: oh got it now --- .github/ISSUE_TEMPLATE/bug_report.md | 70 ------------------------------ .github/ISSUE_TEMPLATE/bug_report.yml | 63 +++++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 41 ----------------- .github/ISSUE_TEMPLATE/feature_request.yml | 34 +++++++++++++++ 4 files changed, 97 insertions(+), 111 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yml delete mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.yml (limited to '.github') diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index 21cc811d..00000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,70 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve -title: "[Bug]: Short description of the issue" -labels: "Something isn't working" ---- - -name: Bug Report -description: Something is not working right -labels: ["bug"] -body: - - type: checkboxes - attributes: - label: Already reported ? * - description: Before opening a new bug report, please take a moment to search through the current open and closed issues to check if it already exists. - options: - - label: I have searched the existing open and closed issues. - required: true - - - type: dropdown - id: type - attributes: - label: Regression? - description: | - Regression means that something used to work but no longer does. - options: - - "Yes" - - "No" - validations: - required: true - - - type: textarea - id: ver - attributes: - label: System Info and Version - description: | - Paste the output of `inxi -CGIsSMnr` here. - install inxi if command not found - validations: - required: true - - - - type: textarea - id: desc - attributes: - label: Description - description: "What went wrong? What exactly happened?" - validations: - required: true - - - type: textarea - id: repro - attributes: - label: How to reproduce - description: "How can someone else reproduce the issue?" - validations: - required: true - - - type: textarea - id: logs - attributes: - label: install logs, images or videos - description: | - Anything that can help. Please always ATTACH and not paste them. - - - - - - diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 00000000..0d862bcc --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,63 @@ +name: Bug Report +description: Something is not working right +labels: ["bug"] +body: + - type: checkboxes + attributes: + label: Already reported ? * + description: Before opening a new bug report, please take a moment to search through the current open and closed issues to check if it already exists. + options: + - label: I have searched the existing open and closed issues. + required: true + + - type: dropdown + id: type + attributes: + label: Regression? + description: | + Regression means that something used to work but no longer does. + options: + - "Yes" + - "No" + validations: + required: true + + - type: textarea + id: ver + attributes: + label: System Info and Version + description: | + Paste the output of `inxi -CGIsSMnr` here. + install inxi if command not found + validations: + required: true + + + - type: textarea + id: desc + attributes: + label: Description + description: "What went wrong? What exactly happened?" + validations: + required: true + + - type: textarea + id: repro + attributes: + label: How to reproduce + description: "How can someone else reproduce the issue?" + validations: + required: true + + - type: textarea + id: logs + attributes: + label: install logs, images or videos + description: | + Anything that can help. Please always ATTACH and not paste them. + + + + + + diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index b3ac7aa6..00000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -name: Feature request -about: Suggest a feature for this project -title: "[Feature Request]: I'd like to request additional functionality or changes" -labels: "enhancement, feature request" ---- - -name: Feature Request -description: I'd like to request additional functionality -labels: ["enhancement"] -body: - - type: markdown - attributes: - value: | - Before opening a new feature, take a moment to search through the current open ones. - - --- - - - type: textarea - id: desc - attributes: - label: Description - description: "Describe your idea" - validations: - required: true - - - type: textarea - id: desc - attributes: - label: Use case - description: "Describe how this feature would be useful to you or to other users of the project." - validations: - required: true - - - type: textarea - id: desc - attributes: - label: Proposed Solution or alternatives - description: "If you have a specific solution in mind, describe it here." - validations: - required: true diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 00000000..92bbc2f5 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,34 @@ +name: Feature Request +description: I'd like to request additional functionality +labels: ["enhancement"] +body: + - type: markdown + attributes: + value: | + Before opening a new feature, take a moment to search through the current open ones. + + --- + + - type: textarea + id: desc + attributes: + label: Description + description: "Describe your idea" + validations: + required: true + + - type: textarea + id: desc + attributes: + label: Use case + description: "Describe how this feature would be useful to you or to other users of the project." + validations: + required: true + + - type: textarea + id: desc + attributes: + label: Proposed Solution or alternatives + description: "If you have a specific solution in mind, describe it here." + validations: + required: true -- cgit v1.2.3 From ea557fff7a83237ca840fa1e57e71619aa6a664f Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Fri, 3 Jan 2025 21:01:09 +0900 Subject: why feature request dont work --- .github/ISSUE_TEMPLATE/bug_report.yml | 1 + .github/ISSUE_TEMPLATE/feature_request.yml | 1 + 2 files changed, 2 insertions(+) (limited to '.github') diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 0d862bcc..1b6a4674 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -1,6 +1,7 @@ name: Bug Report description: Something is not working right labels: ["bug"] + body: - type: checkboxes attributes: diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index 92bbc2f5..5a6015a7 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -1,6 +1,7 @@ name: Feature Request description: I'd like to request additional functionality labels: ["enhancement"] + body: - type: markdown attributes: -- cgit v1.2.3 From 75f0347f1534cfc1bce8059e2fd8caf1823853b7 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Fri, 3 Jan 2025 21:09:38 +0900 Subject: updated feature request template --- .github/ISSUE_TEMPLATE/feature_request.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to '.github') diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index 5a6015a7..89ccd0b4 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -1,14 +1,15 @@ -name: Feature Request +name: Feature request description: I'd like to request additional functionality labels: ["enhancement"] body: - - type: markdown + - type: checkboxes attributes: - value: | - Before opening a new feature, take a moment to search through the current open ones. - - --- + label: Already requested ? * + description: Before opening a new feature request, please take a moment to search through the current open and closed issues to check if it already exists. + options: + - label: I have searched the existing open and closed issues. + required: true - type: textarea id: desc @@ -32,4 +33,4 @@ body: label: Proposed Solution or alternatives description: "If you have a specific solution in mind, describe it here." validations: - required: true + required: true \ No newline at end of file -- cgit v1.2.3 From 869bab270b52eaeca8cac3800cb8e160867ada81 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Fri, 3 Jan 2025 21:13:24 +0900 Subject: another change on template --- .github/ISSUE_TEMPLATE/bug.yml | 64 ++++++++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/bug_report.yml | 64 ------------------------------ .github/ISSUE_TEMPLATE/feature.yml | 27 +++++++++++++ .github/ISSUE_TEMPLATE/feature_request.yml | 36 ----------------- 4 files changed, 91 insertions(+), 100 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/bug.yml delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.yml create mode 100644 .github/ISSUE_TEMPLATE/feature.yml delete mode 100644 .github/ISSUE_TEMPLATE/feature_request.yml (limited to '.github') diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml new file mode 100644 index 00000000..1b6a4674 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -0,0 +1,64 @@ +name: Bug Report +description: Something is not working right +labels: ["bug"] + +body: + - type: checkboxes + attributes: + label: Already reported ? * + description: Before opening a new bug report, please take a moment to search through the current open and closed issues to check if it already exists. + options: + - label: I have searched the existing open and closed issues. + required: true + + - type: dropdown + id: type + attributes: + label: Regression? + description: | + Regression means that something used to work but no longer does. + options: + - "Yes" + - "No" + validations: + required: true + + - type: textarea + id: ver + attributes: + label: System Info and Version + description: | + Paste the output of `inxi -CGIsSMnr` here. + install inxi if command not found + validations: + required: true + + + - type: textarea + id: desc + attributes: + label: Description + description: "What went wrong? What exactly happened?" + validations: + required: true + + - type: textarea + id: repro + attributes: + label: How to reproduce + description: "How can someone else reproduce the issue?" + validations: + required: true + + - type: textarea + id: logs + attributes: + label: install logs, images or videos + description: | + Anything that can help. Please always ATTACH and not paste them. + + + + + + diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml deleted file mode 100644 index 1b6a4674..00000000 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ /dev/null @@ -1,64 +0,0 @@ -name: Bug Report -description: Something is not working right -labels: ["bug"] - -body: - - type: checkboxes - attributes: - label: Already reported ? * - description: Before opening a new bug report, please take a moment to search through the current open and closed issues to check if it already exists. - options: - - label: I have searched the existing open and closed issues. - required: true - - - type: dropdown - id: type - attributes: - label: Regression? - description: | - Regression means that something used to work but no longer does. - options: - - "Yes" - - "No" - validations: - required: true - - - type: textarea - id: ver - attributes: - label: System Info and Version - description: | - Paste the output of `inxi -CGIsSMnr` here. - install inxi if command not found - validations: - required: true - - - - type: textarea - id: desc - attributes: - label: Description - description: "What went wrong? What exactly happened?" - validations: - required: true - - - type: textarea - id: repro - attributes: - label: How to reproduce - description: "How can someone else reproduce the issue?" - validations: - required: true - - - type: textarea - id: logs - attributes: - label: install logs, images or videos - description: | - Anything that can help. Please always ATTACH and not paste them. - - - - - - diff --git a/.github/ISSUE_TEMPLATE/feature.yml b/.github/ISSUE_TEMPLATE/feature.yml new file mode 100644 index 00000000..0d13534c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature.yml @@ -0,0 +1,27 @@ +name: Feature Request +description: I'd like to request additional functionality +labels: ["enhancement"] + +body: + - type: markdown + attributes: + value: | + Before opening a new issue, take a moment to search through the current open ones. + + --- + + - type: textarea + id: desc + attributes: + label: Description + description: "Provide a clear and concise description of the feature you'd like to see added" + validations: + required: true + + - type: textarea + id: desc + attributes: + label: Proposed Solution + description: "If you have a specific solution in mind, describe it here" + validations: + required: true \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml deleted file mode 100644 index 89ccd0b4..00000000 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ /dev/null @@ -1,36 +0,0 @@ -name: Feature request -description: I'd like to request additional functionality -labels: ["enhancement"] - -body: - - type: checkboxes - attributes: - label: Already requested ? * - description: Before opening a new feature request, please take a moment to search through the current open and closed issues to check if it already exists. - options: - - label: I have searched the existing open and closed issues. - required: true - - - type: textarea - id: desc - attributes: - label: Description - description: "Describe your idea" - validations: - required: true - - - type: textarea - id: desc - attributes: - label: Use case - description: "Describe how this feature would be useful to you or to other users of the project." - validations: - required: true - - - type: textarea - id: desc - attributes: - label: Proposed Solution or alternatives - description: "If you have a specific solution in mind, describe it here." - validations: - required: true \ No newline at end of file -- cgit v1.2.3 From f6aa54b16ff58969ff016d00518313a0809a83c5 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Fri, 3 Jan 2025 21:15:25 +0900 Subject: danggit --- .github/ISSUE_TEMPLATE/feature.yml | 27 --------------------------- .github/ISSUE_TEMPLATE/feature_request.md | 28 ++++++++++++++++++++++++++++ 2 files changed, 28 insertions(+), 27 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/feature.yml create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md (limited to '.github') diff --git a/.github/ISSUE_TEMPLATE/feature.yml b/.github/ISSUE_TEMPLATE/feature.yml deleted file mode 100644 index 0d13534c..00000000 --- a/.github/ISSUE_TEMPLATE/feature.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: Feature Request -description: I'd like to request additional functionality -labels: ["enhancement"] - -body: - - type: markdown - attributes: - value: | - Before opening a new issue, take a moment to search through the current open ones. - - --- - - - type: textarea - id: desc - attributes: - label: Description - description: "Provide a clear and concise description of the feature you'd like to see added" - validations: - required: true - - - type: textarea - id: desc - attributes: - label: Proposed Solution - description: "If you have a specific solution in mind, describe it here" - validations: - required: true \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 00000000..4d53f2e6 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,28 @@ +--- +name: Feature request +about: Suggest a feature for this project +title: "[Feature Request]: Short description of the feature" +labels: ["enhancement"] +--- + +## Feature Request + +### Description + +[Provide a clear and concise description of the feature you'd like to see added.] + +### Use Case + +[Describe how this feature would be useful to you or to other users of the project.] + +### Proposed Solution + +[If you have a specific solution in mind, describe it here. If not, you can skip this section.] + +### Alternatives + +[Are there any alternative solutions or workarounds that you've considered? If so, describe them here.] + +### Additional Information + +[Add any other information about the feature request here. For example, you might include links to similar features in other projects, or screenshots or diagrams to help explain your idea.] \ No newline at end of file -- cgit v1.2.3 From e32a5c7061867b5da679358739e7914fdb0a0e4e Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Fri, 3 Jan 2025 21:17:33 +0900 Subject: let me try this thing --- .github/ISSUE_TEMPLATE/feature.yml | 64 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/feature.yml (limited to '.github') diff --git a/.github/ISSUE_TEMPLATE/feature.yml b/.github/ISSUE_TEMPLATE/feature.yml new file mode 100644 index 00000000..89f733b2 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature.yml @@ -0,0 +1,64 @@ +name: Feature Request +description: I'd like to propose some changes and enhancements +labels: ["enhancement"] + +body: + - type: checkboxes + attributes: + label: Already reported ? * + description: Before opening a new bug report, please take a moment to search through the current open and closed issues to check if it already exists. + options: + - label: I have searched the existing open and closed issues. + required: true + + - type: dropdown + id: type + attributes: + label: Regression? + description: | + Regression means that something used to work but no longer does. + options: + - "Yes" + - "No" + validations: + required: true + + - type: textarea + id: ver + attributes: + label: System Info and Version + description: | + Paste the output of `inxi -CGIsSMnr` here. + install inxi if command not found + validations: + required: true + + + - type: textarea + id: desc + attributes: + label: Description + description: "What went wrong? What exactly happened?" + validations: + required: true + + - type: textarea + id: repro + attributes: + label: How to reproduce + description: "How can someone else reproduce the issue?" + validations: + required: true + + - type: textarea + id: logs + attributes: + label: install logs, images or videos + description: | + Anything that can help. Please always ATTACH and not paste them. + + + + + + -- cgit v1.2.3 From 3595d89367e7d563320a6df2b93176adef396506 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Fri, 3 Jan 2025 21:20:49 +0900 Subject: hah! maybe I get it now --- .github/ISSUE_TEMPLATE/feature.yml | 39 ++++--------------------------- .github/ISSUE_TEMPLATE/feature_request.md | 28 ---------------------- 2 files changed, 5 insertions(+), 62 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/feature_request.md (limited to '.github') diff --git a/.github/ISSUE_TEMPLATE/feature.yml b/.github/ISSUE_TEMPLATE/feature.yml index 89f733b2..f657365a 100644 --- a/.github/ISSUE_TEMPLATE/feature.yml +++ b/.github/ISSUE_TEMPLATE/feature.yml @@ -6,56 +6,27 @@ body: - type: checkboxes attributes: label: Already reported ? * - description: Before opening a new bug report, please take a moment to search through the current open and closed issues to check if it already exists. + description: Before opening a new feature request, please take a moment to search through the current open and closed issues / request to check if it already exists. options: - - label: I have searched the existing open and closed issues. + - label: I have searched the existing open and closed request. required: true - - type: dropdown - id: type - attributes: - label: Regression? - description: | - Regression means that something used to work but no longer does. - options: - - "Yes" - - "No" - validations: - required: true - - - type: textarea - id: ver - attributes: - label: System Info and Version - description: | - Paste the output of `inxi -CGIsSMnr` here. - install inxi if command not found - validations: - required: true - - - type: textarea id: desc attributes: label: Description - description: "What went wrong? What exactly happened?" + description: "Describe your idea?" validations: required: true - type: textarea id: repro attributes: - label: How to reproduce - description: "How can someone else reproduce the issue?" + label: Proposed Solution + description: "describe if you have a specific solution in mind" validations: required: true - - type: textarea - id: logs - attributes: - label: install logs, images or videos - description: | - Anything that can help. Please always ATTACH and not paste them. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index 4d53f2e6..00000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -name: Feature request -about: Suggest a feature for this project -title: "[Feature Request]: Short description of the feature" -labels: ["enhancement"] ---- - -## Feature Request - -### Description - -[Provide a clear and concise description of the feature you'd like to see added.] - -### Use Case - -[Describe how this feature would be useful to you or to other users of the project.] - -### Proposed Solution - -[If you have a specific solution in mind, describe it here. If not, you can skip this section.] - -### Alternatives - -[Are there any alternative solutions or workarounds that you've considered? If so, describe them here.] - -### Additional Information - -[Add any other information about the feature request here. For example, you might include links to similar features in other projects, or screenshots or diagrams to help explain your idea.] \ No newline at end of file -- cgit v1.2.3 From b2974905ff7e2d2efd239e0638af5bde1bc4d6db Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Fri, 3 Jan 2025 21:24:58 +0900 Subject: Oh its a new github issue template :) --- .github/ISSUE_TEMPLATE/bug.yml | 3 +++ .github/ISSUE_TEMPLATE/feature.yml | 3 +++ 2 files changed, 6 insertions(+) (limited to '.github') diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index 1b6a4674..329c67a1 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -1,6 +1,9 @@ name: Bug Report description: Something is not working right +title: "[Bug]: " labels: ["bug"] +assignees: + - Ja.KooLit body: - type: checkboxes diff --git a/.github/ISSUE_TEMPLATE/feature.yml b/.github/ISSUE_TEMPLATE/feature.yml index f657365a..776dc364 100644 --- a/.github/ISSUE_TEMPLATE/feature.yml +++ b/.github/ISSUE_TEMPLATE/feature.yml @@ -1,6 +1,9 @@ name: Feature Request description: I'd like to propose some changes and enhancements +title: "[Enhancement]: " labels: ["enhancement"] +assignees: + - Ja.KooLit body: - type: checkboxes -- cgit v1.2.3 From 1ac500e5d87d36c191b3343cc548c48ad2ca160c Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Fri, 3 Jan 2025 21:53:46 +0900 Subject: updated assignee on issue template --- .github/ISSUE_TEMPLATE/bug.yml | 2 +- .github/ISSUE_TEMPLATE/feature.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to '.github') diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index 329c67a1..f9e57da2 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -3,7 +3,7 @@ description: Something is not working right title: "[Bug]: " labels: ["bug"] assignees: - - Ja.KooLit + - JaKooLit body: - type: checkboxes diff --git a/.github/ISSUE_TEMPLATE/feature.yml b/.github/ISSUE_TEMPLATE/feature.yml index 776dc364..6143d176 100644 --- a/.github/ISSUE_TEMPLATE/feature.yml +++ b/.github/ISSUE_TEMPLATE/feature.yml @@ -3,7 +3,7 @@ description: I'd like to propose some changes and enhancements title: "[Enhancement]: " labels: ["enhancement"] assignees: - - Ja.KooLit + - JaKooLit body: - type: checkboxes -- cgit v1.2.3 From 1870b4ed3c289c4cf93f12c34232d584dddeb4dc Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Fri, 3 Jan 2025 22:03:27 +0900 Subject: documents template update --- .github/ISSUE_TEMPLATE/documentation-update.yml | 30 +++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/documentation_update.md | 24 -------------------- 2 files changed, 30 insertions(+), 24 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/documentation-update.yml delete mode 100644 .github/ISSUE_TEMPLATE/documentation_update.md (limited to '.github') diff --git a/.github/ISSUE_TEMPLATE/documentation-update.yml b/.github/ISSUE_TEMPLATE/documentation-update.yml new file mode 100644 index 00000000..3e3e8c22 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/documentation-update.yml @@ -0,0 +1,30 @@ +name: Documentation update +description: Propose a change to the project documentation wiki +title: "[Documentation update]: " +labels: ["documentation_update"] +assignees: + - JaKooLit + +body: + - type: textarea + id: desc + attributes: + label: Description + description: "Provide a clear and concise description of the documentation update" + validations: + required: true + + - type: textarea + id: repro + attributes: + label: Proposed Solution + description: "Provide a clear and concise description of the updated documentation that you'd like to see added" + validations: + required: true + + - type: textarea + id: logs + attributes: + label: install links, images or videos + description: | + Add any other information about the documentation update here. For example, you might include links to similar documentation in other projects, or screenshots or diagrams to help explain your idea diff --git a/.github/ISSUE_TEMPLATE/documentation_update.md b/.github/ISSUE_TEMPLATE/documentation_update.md deleted file mode 100644 index b75d92f0..00000000 --- a/.github/ISSUE_TEMPLATE/documentation_update.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -name: Documentation update -about: Propose a change to the project documentation -title: "[Docs]: Short description of the change" -labels: "documentation update" ---- - -## Documentation Update - -### Description - -[Provide a clear and concise description of the documentation update you'd like to see made.] - -### Current Documentation - -[Provide a link to the current documentation or describe where it can be found.] - -### Proposed Documentation - -[Provide a clear and concise description of the updated documentation that you'd like to see added.] - -### Additional Information - -[Add any other information about the documentation update here. For example, you might include links to similar documentation in other projects, or screenshots or diagrams to help explain your idea.] -- cgit v1.2.3 From 5fd065770fdb04f4fcb59813a4e95f00dd02d522 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Fri, 3 Jan 2025 22:23:55 +0900 Subject: updated bug template --- .github/ISSUE_TEMPLATE/bug.yml | 29 ++++++++++++++++++++++++++--- 1 file changed, 26 insertions(+), 3 deletions(-) (limited to '.github') diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index f9e57da2..d365a34c 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -26,16 +26,39 @@ body: validations: required: true + - type: textarea id: ver attributes: - label: System Info and Version + label: System Info and Hyprland Version description: | - Paste the output of `inxi -CGIsSMnr` here. + Paste the output of `inxi -CGIsSMnr` here. here. If you can't install inxi if command not found + value: "
+ System/Version info + + + ``` + + + + + ``` + + +
" + validations: + required: true + + - type: textarea + id: ver + attributes: + label: KooL's Dots version + description: | + Paste the output of `find ~/.config/hypr/ -type f -name 'v*' -exec basename {} \;` + This is just KooL's Dots hyprland version validations: required: true - - type: textarea id: desc -- cgit v1.2.3 From 120062777c955018754db99d93e9b5821f8c647f Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Fri, 3 Jan 2025 22:27:44 +0900 Subject: damn again --- .github/ISSUE_TEMPLATE/bug.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.github') diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index d365a34c..39e77f35 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -30,9 +30,9 @@ body: - type: textarea id: ver attributes: - label: System Info and Hyprland Version + label: System Info description: | - Paste the output of `inxi -CGIsSMnr` here. here. If you can't + Paste the output of `inxi -CGIsSMnr` here install inxi if command not found value: "
System/Version info -- cgit v1.2.3 From b1d48fa7de1e8ab37e741876bc1e4503332287ac Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Fri, 3 Jan 2025 22:32:32 +0900 Subject: im speechless --- .github/ISSUE_TEMPLATE/bug.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to '.github') diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index 39e77f35..23a833bb 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -26,13 +26,12 @@ body: validations: required: true - - type: textarea id: ver attributes: - label: System Info + label: System Info description: | - Paste the output of `inxi -CGIsSMnr` here + Paste the output of `inxi -CGIsSMnr` here. install inxi if command not found value: "
System/Version info @@ -42,13 +41,12 @@ body: - ```
" validations: - required: true + required: true - type: textarea id: ver -- cgit v1.2.3 From a5ee15ef05f2df3bf1b840d8fd2db3a2fc22919d Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Fri, 3 Jan 2025 22:38:44 +0900 Subject: maybe this will work now --- .github/ISSUE_TEMPLATE/bug.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.github') diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index 23a833bb..529f1eb8 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -32,7 +32,7 @@ body: label: System Info description: | Paste the output of `inxi -CGIsSMnr` here. - install inxi if command not found + install inxi if command not found. value: "
System/Version info @@ -54,7 +54,7 @@ body: label: KooL's Dots version description: | Paste the output of `find ~/.config/hypr/ -type f -name 'v*' -exec basename {} \;` - This is just KooL's Dots hyprland version + This is just KooL's Dots hyprland version. validations: required: true -- cgit v1.2.3 From 7e2d4aa1a9001b3732cb3acb668afe77d4aedc95 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Fri, 3 Jan 2025 22:43:47 +0900 Subject: If this will not work I dont know --- .github/ISSUE_TEMPLATE/bug.yml | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) (limited to '.github') diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index 529f1eb8..91106f32 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -23,15 +23,16 @@ body: options: - "Yes" - "No" + - "Not sure" validations: required: true - type: textarea id: ver attributes: - label: System Info + label: System Info and Version description: | - Paste the output of `inxi -CGIsSMnr` here. + Paste the output of `inxi --full` here. install inxi if command not found. value: "
System/Version info @@ -47,14 +48,14 @@ body:
" validations: required: true - + - type: textarea - id: ver + id: dots attributes: label: KooL's Dots version description: | - Paste the output of `find ~/.config/hypr/ -type f -name 'v*' -exec basename {} \;` - This is just KooL's Dots hyprland version. + Paste the output of `find ~/.config/hypr/ -type f -name 'v*' -exec basename {} \;` + This is just KooL's Hyprland Dots version. validations: required: true @@ -80,9 +81,3 @@ body: label: install logs, images or videos description: | Anything that can help. Please always ATTACH and not paste them. - - - - - - -- cgit v1.2.3