From 866385c3ddd0e31553294280c8004b5fd8494190 Mon Sep 17 00:00:00 2001 From: Hari Chalise Date: Mon, 30 Dec 2024 23:44:40 +0545 Subject: [PATCH 01/18] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c0568171..f93e3e2e 100644 --- a/README.md +++ b/README.md @@ -130,15 +130,15 @@ If you find Linutil helpful, please consider giving it a ⭐️ to show your sup ## 🎓 Documentation -For comprehensive information on how to use Linutil, visit the [Linutil Official Documentation](https://chris-titus-docs.github.io/linutil-docs/). +For comprehensive information on how to use Linutil, visit the [Linutil Official Documentation](https://harilvfs.github.io/linutil-docs/). ## 🛠 Contributing We welcome contributions from the community! Before you start, please review our [Contributing Guidelines](.github/CONTRIBUTING.md) to understand how to make the most effective and efficient contributions. -[Official LinUtil Roadmap](https://chris-titus-docs.github.io/linutil-docs/roadmap/) +[Official LinUtil Roadmap](https://harilvfs.github.io/linutil-docs/collaboration/roadmap.html) -Docs are now [here](https://github.com/Chris-Titus-Docs/linutil-docs) +Docs are now [here](https://harilvfs.github.io/linutil-docs/) ## 🏅 Thanks to All Contributors From 413cf30b4a81fa3cbceabcf1a468155a0f03fd9e Mon Sep 17 00:00:00 2001 From: Hari Chalise Date: Thu, 16 Jan 2025 21:18:08 +0545 Subject: [PATCH 02/18] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f93e3e2e..c0568171 100644 --- a/README.md +++ b/README.md @@ -130,15 +130,15 @@ If you find Linutil helpful, please consider giving it a ⭐️ to show your sup ## 🎓 Documentation -For comprehensive information on how to use Linutil, visit the [Linutil Official Documentation](https://harilvfs.github.io/linutil-docs/). +For comprehensive information on how to use Linutil, visit the [Linutil Official Documentation](https://chris-titus-docs.github.io/linutil-docs/). ## 🛠 Contributing We welcome contributions from the community! Before you start, please review our [Contributing Guidelines](.github/CONTRIBUTING.md) to understand how to make the most effective and efficient contributions. -[Official LinUtil Roadmap](https://harilvfs.github.io/linutil-docs/collaboration/roadmap.html) +[Official LinUtil Roadmap](https://chris-titus-docs.github.io/linutil-docs/roadmap/) -Docs are now [here](https://harilvfs.github.io/linutil-docs/) +Docs are now [here](https://github.com/Chris-Titus-Docs/linutil-docs) ## 🏅 Thanks to All Contributors From 52d9af9a1ed7de304c37bfb59b0d052d7dac7a10 Mon Sep 17 00:00:00 2001 From: Hari Chalise Date: Thu, 16 Jan 2025 21:31:19 +0545 Subject: [PATCH 03/18] New Issue Templates (YAML) --- .github/ISSUE_TEMPLATE/bug-reports.yml | 64 ++++++++++++++++++++++ .github/ISSUE_TEMPLATE/bug_report.md | 32 ----------- .github/ISSUE_TEMPLATE/feature-reqests.yml | 49 +++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 24 -------- 4 files changed, 113 insertions(+), 56 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/bug-reports.yml delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/feature-reqests.yml delete mode 100644 .github/ISSUE_TEMPLATE/feature_request.md diff --git a/.github/ISSUE_TEMPLATE/bug-reports.yml b/.github/ISSUE_TEMPLATE/bug-reports.yml new file mode 100644 index 00000000..e2a7982d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-reports.yml @@ -0,0 +1,64 @@ +name: Bug Report +description: Report a bug or issue to help us improve. +title: "[Bug]: " +labels: ["bug"] +assignees: [] +body: + - type: markdown + attributes: + value: | + Thank you for helping us improve! Please provide as much detail as possible to ensure we can address the issue effectively. + - type: textarea + id: describe-bug + attributes: + label: Describe the bug + description: | + Provide a clear and concise description of what the bug is. + placeholder: Describe the issue in detail. + validations: + required: true + - type: textarea + id: reproduce-steps + attributes: + label: Steps to reproduce + description: | + Steps to reproduce the behavior: + 1. Go to '...' + 2. Click on '...' + 3. Scroll down to '...' + 4. See error + placeholder: List the steps or actions needed to reproduce the issue. + validations: + required: true + - type: textarea + id: expected-behavior + attributes: + label: Expected behavior + description: | + A clear and concise description of what you expected to happen. + placeholder: Explain the expected outcome. + validations: + required: true + - type: textarea + id: additional-context + attributes: + label: Additional context + description: | + Add any other context or information about the problem here. + placeholder: Include any related logs, error messages, or configurations. + - type: textarea + id: screenshots + attributes: + label: Screenshots + description: | + If applicable, add screenshots to help explain your problem. Provide links or attach images in the comments after submitting the issue. + - type: checkboxes + id: checklist + attributes: + label: Checklist + options: + - label: I checked for duplicate issues. + - label: I checked existing discussions. + - label: This issue is not included in the roadmap. + - label: This issue is present on both stable and development branches. + required: true diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index abae89e7..00000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve -title: '' -labels: 'bug' -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. - -## Additional context -Add any other context about the problem here. - -## Checklist -- [ ] I checked for duplicate issues. -- [ ] I checked already existing discussions. -- [ ] This issue is not included in the roadmap. -- [ ] This issue is present on both stable and development branches. diff --git a/.github/ISSUE_TEMPLATE/feature-reqests.yml b/.github/ISSUE_TEMPLATE/feature-reqests.yml new file mode 100644 index 00000000..5a92c0fa --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-reqests.yml @@ -0,0 +1,49 @@ +name: Feature Request +description: Suggest a new feature or improvement to help us enhance this project. +title: "[Feature Request]: " +labels: ["enhancement"] +assignees: [] +body: + - type: markdown + attributes: + value: | + Thank you for suggesting a feature or enhancement! Please provide as much detail as possible to help us understand your request. Note that submitting a feature request does not guarantee implementation. + - type: textarea + id: related-problem + attributes: + label: Is your feature request related to a problem? Please describe. + description: | + Provide a clear and concise description of the problem, if applicable. For example, "I'm always frustrated when [...]". + placeholder: Describe the problem or frustration you want to address. + - type: textarea + id: proposed-solution + attributes: + label: Describe the solution you'd like + description: | + Provide a clear and concise description of what you want to happen. + placeholder: Explain your proposed feature or enhancement in detail. + validations: + required: true + - type: textarea + id: alternatives + attributes: + label: Describe alternatives you've considered + description: | + Provide a clear and concise description of any alternative solutions or features you've considered. + placeholder: Explain any other approaches or solutions you've thought about. + - type: textarea + id: additional-context + attributes: + label: Additional context + description: | + Add any other context or screenshots about the feature request here. + placeholder: Provide additional information, screenshots, or references to explain your request further. + - type: checkboxes + id: checklist + attributes: + label: Checklist + options: + - label: I checked for duplicate issues. + - label: I checked already existing discussions. + - label: This feature is not included in the roadmap. + required: true diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index 84d9de8c..00000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -name: Feature request -about: Suggest an idea for this project -title: '' -labels: 'enhancement' -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. - -## Checklist -- [ ] I checked for duplicate issues. -- [ ] I checked already existing discussions. -- [ ] This feature is not included in the roadmap. From 2bce5ba302cf97d4be6fd9233b24fa27024fe9e2 Mon Sep 17 00:00:00 2001 From: Hari Chalise Date: Thu, 16 Jan 2025 21:42:20 +0545 Subject: [PATCH 04/18] Update bug-reports.yml --- .github/ISSUE_TEMPLATE/bug-reports.yml | 35 ++++++++++++++++++-------- 1 file changed, 25 insertions(+), 10 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug-reports.yml b/.github/ISSUE_TEMPLATE/bug-reports.yml index e2a7982d..1a36f274 100644 --- a/.github/ISSUE_TEMPLATE/bug-reports.yml +++ b/.github/ISSUE_TEMPLATE/bug-reports.yml @@ -17,19 +17,33 @@ body: placeholder: Describe the issue in detail. validations: required: true - - type: textarea - id: reproduce-steps + - type: markdown attributes: - label: Steps to reproduce - description: | - Steps to reproduce the behavior: - 1. Go to '...' - 2. Click on '...' - 3. Scroll down to '...' - 4. See error - placeholder: List the steps or actions needed to reproduce the issue. + value: | + ### Steps to Reproduce + Please provide a clear sequence of actions to reproduce the issue. + - type: textarea + id: step1 + attributes: + label: Step 1 + placeholder: E.g., Go to '...' + description: Describe the first action you took. validations: required: true + - type: textarea + id: step2 + attributes: + label: Step 2 + placeholder: E.g., Click on '...' + description: Describe the next action you took. + validations: + required: true + - type: textarea + id: step3 + attributes: + label: Step 3 (Optional) + placeholder: E.g., Scroll down to '...' + description: Describe any additional steps. - type: textarea id: expected-behavior attributes: @@ -62,3 +76,4 @@ body: - label: This issue is not included in the roadmap. - label: This issue is present on both stable and development branches. required: true + From 75a1bc4c4e068f7e325505b6dfe5b403df9e0a3d Mon Sep 17 00:00:00 2001 From: Hari Chalise Date: Thu, 16 Jan 2025 23:21:40 +0545 Subject: [PATCH 05/18] merge reproduce steps --- .github/ISSUE_TEMPLATE/bug-reports.yml | 32 ++++++++------------------ 1 file changed, 9 insertions(+), 23 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug-reports.yml b/.github/ISSUE_TEMPLATE/bug-reports.yml index 1a36f274..2bfe3bb8 100644 --- a/.github/ISSUE_TEMPLATE/bug-reports.yml +++ b/.github/ISSUE_TEMPLATE/bug-reports.yml @@ -17,33 +17,19 @@ body: placeholder: Describe the issue in detail. validations: required: true - - type: markdown - attributes: - value: | - ### Steps to Reproduce - Please provide a clear sequence of actions to reproduce the issue. - type: textarea - id: step1 + id: reproduce-steps attributes: - label: Step 1 - placeholder: E.g., Go to '...' - description: Describe the first action you took. + label: Steps to reproduce + description: | + Steps to reproduce the behavior: + 1. Go to '...' + 2. Click on '...' + 3. Scroll down to '...' + 4. See error + placeholder: List the steps or actions needed to reproduce the issue. validations: required: true - - type: textarea - id: step2 - attributes: - label: Step 2 - placeholder: E.g., Click on '...' - description: Describe the next action you took. - validations: - required: true - - type: textarea - id: step3 - attributes: - label: Step 3 (Optional) - placeholder: E.g., Scroll down to '...' - description: Describe any additional steps. - type: textarea id: expected-behavior attributes: From 33efb94b44933fee05d2965834a68938089b6c8b Mon Sep 17 00:00:00 2001 From: Hari Chalise Date: Thu, 16 Jan 2025 23:23:30 +0545 Subject: [PATCH 06/18] Create config.yml --- .github/ISSUE_TEMPLATE/config.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/config.yml diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 00000000..f4f9e9a2 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,5 @@ +blank_issues_enabled: false +contact_links: + - name: linutil documentation + url: https://chris-titus-docs.github.io/linutil-docs/ + about: check out the docs From 34b11888bc1db5983672ec0b44bd14d11412e871 Mon Sep 17 00:00:00 2001 From: Hari Chalise Date: Thu, 16 Jan 2025 23:43:56 +0545 Subject: [PATCH 07/18] Fixes --- .github/ISSUE_TEMPLATE/bug-reports.yml | 4 ++-- .github/ISSUE_TEMPLATE/config.yml | 2 +- .github/ISSUE_TEMPLATE/feature-reqests.yml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug-reports.yml b/.github/ISSUE_TEMPLATE/bug-reports.yml index 2bfe3bb8..a298bc4d 100644 --- a/.github/ISSUE_TEMPLATE/bug-reports.yml +++ b/.github/ISSUE_TEMPLATE/bug-reports.yml @@ -21,8 +21,8 @@ body: id: reproduce-steps attributes: label: Steps to reproduce - description: | - Steps to reproduce the behavior: + description: Steps to reproduce the behavior. + placeholder: | 1. Go to '...' 2. Click on '...' 3. Scroll down to '...' diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index f4f9e9a2..69b3e673 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,5 +1,5 @@ blank_issues_enabled: false contact_links: - - name: linutil documentation + - name: Linutil documentation url: https://chris-titus-docs.github.io/linutil-docs/ about: check out the docs diff --git a/.github/ISSUE_TEMPLATE/feature-reqests.yml b/.github/ISSUE_TEMPLATE/feature-reqests.yml index 5a92c0fa..899db48c 100644 --- a/.github/ISSUE_TEMPLATE/feature-reqests.yml +++ b/.github/ISSUE_TEMPLATE/feature-reqests.yml @@ -13,8 +13,8 @@ body: attributes: label: Is your feature request related to a problem? Please describe. description: | - Provide a clear and concise description of the problem, if applicable. For example, "I'm always frustrated when [...]". - placeholder: Describe the problem or frustration you want to address. + Provide a clear and concise description of the problem, if applicable. + placeholder: I'm always frustrated when ... - type: textarea id: proposed-solution attributes: From 140f8c8573733a3597505c0aaf6fda1967b3a9b5 Mon Sep 17 00:00:00 2001 From: Hari Chalise Date: Thu, 16 Jan 2025 23:45:08 +0545 Subject: [PATCH 08/18] Update bug-reports.yml --- .github/ISSUE_TEMPLATE/bug-reports.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug-reports.yml b/.github/ISSUE_TEMPLATE/bug-reports.yml index a298bc4d..28e616bf 100644 --- a/.github/ISSUE_TEMPLATE/bug-reports.yml +++ b/.github/ISSUE_TEMPLATE/bug-reports.yml @@ -27,7 +27,6 @@ body: 2. Click on '...' 3. Scroll down to '...' 4. See error - placeholder: List the steps or actions needed to reproduce the issue. validations: required: true - type: textarea From fff2f62ec19964bd6f3ce05e20752bd8c07eb127 Mon Sep 17 00:00:00 2001 From: Hari Chalise Date: Mon, 20 Jan 2025 20:51:44 +0545 Subject: [PATCH 09/18] Adding system info suggested by @jeevithakannan2 --- .github/ISSUE_TEMPLATE/bug-reports.yml | 62 ++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) diff --git a/.github/ISSUE_TEMPLATE/bug-reports.yml b/.github/ISSUE_TEMPLATE/bug-reports.yml index 28e616bf..13a069f1 100644 --- a/.github/ISSUE_TEMPLATE/bug-reports.yml +++ b/.github/ISSUE_TEMPLATE/bug-reports.yml @@ -8,6 +8,68 @@ body: attributes: value: | Thank you for helping us improve! Please provide as much detail as possible to ensure we can address the issue effectively. + - type: dropdown + id: distribution + attributes: + label: Distribution + description: Select the Linux distribution you are using. + options: + - Arch + - Ubuntu + - Fedora + - Debian + - Other + placeholder: Select your distribution + validations: + required: true + - type: dropdown + id: de-wm + attributes: + label: Desktop Environment / Window Manager + description: Select your desktop environment or window manager. + options: + - GNOME + - KDE Plasma + - XFCE + - Hyprland + - i3 + - Other + placeholder: Select your DE/WM + validations: + required: true + - type: dropdown + id: windowing-system + attributes: + label: Windowing System + description: Specify whether you are using X11 or Wayland. + options: + - X11 + - Wayland + - Other + placeholder: Select your windowing system + validations: + required: true + - type: input + id: linutil-version + attributes: + label: Linutil Version + description: Provide the version of Linutil (found at the top of the list in the application or by running `linutil --version`). + placeholder: e.g., 1.2.3 + validations: + required: true + - type: dropdown + id: branch + attributes: + label: Branch + description: Specify the branch of the project you are using. + options: + - stable + - prerelease + - master + - other + placeholder: Select your branch + validations: + required: true - type: textarea id: describe-bug attributes: From 527636a8daeeb52e9680a0c51cb8e841fb6af6db Mon Sep 17 00:00:00 2001 From: Hari Chalise Date: Mon, 20 Jan 2025 20:58:12 +0545 Subject: [PATCH 10/18] Fix Placeholder [NN] --- .github/ISSUE_TEMPLATE/bug-reports.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug-reports.yml b/.github/ISSUE_TEMPLATE/bug-reports.yml index 13a069f1..a8378353 100644 --- a/.github/ISSUE_TEMPLATE/bug-reports.yml +++ b/.github/ISSUE_TEMPLATE/bug-reports.yml @@ -19,7 +19,6 @@ body: - Fedora - Debian - Other - placeholder: Select your distribution validations: required: true - type: dropdown @@ -34,7 +33,6 @@ body: - Hyprland - i3 - Other - placeholder: Select your DE/WM validations: required: true - type: dropdown @@ -46,15 +44,13 @@ body: - X11 - Wayland - Other - placeholder: Select your windowing system validations: required: true - type: input id: linutil-version attributes: label: Linutil Version - description: Provide the version of Linutil (found at the top of the list in the application or by running `linutil --version`). - placeholder: e.g., 1.2.3 + description: Linutil version (found above the list within linutil):. validations: required: true - type: dropdown @@ -67,7 +63,6 @@ body: - prerelease - master - other - placeholder: Select your branch validations: required: true - type: textarea From 8cc0236613806754a961b3e676e090ec750f5192 Mon Sep 17 00:00:00 2001 From: Hari Chalise Date: Mon, 20 Jan 2025 20:59:58 +0545 Subject: [PATCH 11/18] Fix Autosuggest --- .github/ISSUE_TEMPLATE/bug-reports.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/ISSUE_TEMPLATE/bug-reports.yml b/.github/ISSUE_TEMPLATE/bug-reports.yml index a8378353..813e85e3 100644 --- a/.github/ISSUE_TEMPLATE/bug-reports.yml +++ b/.github/ISSUE_TEMPLATE/bug-reports.yml @@ -12,6 +12,7 @@ body: id: distribution attributes: label: Distribution + multiple: false description: Select the Linux distribution you are using. options: - Arch @@ -25,6 +26,7 @@ body: id: de-wm attributes: label: Desktop Environment / Window Manager + multiple: false description: Select your desktop environment or window manager. options: - GNOME @@ -39,6 +41,7 @@ body: id: windowing-system attributes: label: Windowing System + multiple: false description: Specify whether you are using X11 or Wayland. options: - X11 @@ -57,6 +60,7 @@ body: id: branch attributes: label: Branch + multiple: false description: Specify the branch of the project you are using. options: - stable From aaaf1e4b2b59afbaeea4035f4c164ad62d313c42 Mon Sep 17 00:00:00 2001 From: Hari Chalise Date: Mon, 20 Jan 2025 21:02:28 +0545 Subject: [PATCH 12/18] Update bug-reports.yml --- .github/ISSUE_TEMPLATE/bug-reports.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug-reports.yml b/.github/ISSUE_TEMPLATE/bug-reports.yml index 813e85e3..64f421fa 100644 --- a/.github/ISSUE_TEMPLATE/bug-reports.yml +++ b/.github/ISSUE_TEMPLATE/bug-reports.yml @@ -60,8 +60,8 @@ body: id: branch attributes: label: Branch - multiple: false description: Specify the branch of the project you are using. + multiple: false options: - stable - prerelease From c0efb03e892b30624b6a24d17ffb5165f07015b5 Mon Sep 17 00:00:00 2001 From: Hari Chalise Date: Mon, 20 Jan 2025 21:04:34 +0545 Subject: [PATCH 13/18] Update bug-reports.yml --- .github/ISSUE_TEMPLATE/bug-reports.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug-reports.yml b/.github/ISSUE_TEMPLATE/bug-reports.yml index 64f421fa..97bb018d 100644 --- a/.github/ISSUE_TEMPLATE/bug-reports.yml +++ b/.github/ISSUE_TEMPLATE/bug-reports.yml @@ -59,8 +59,7 @@ body: - type: dropdown id: branch attributes: - label: Branch - description: Specify the branch of the project you are using. + label: Specify the branch of the project you are using. multiple: false options: - stable From 0839d27d5ca8fd9ac61ee4d1ea187924f8addae6 Mon Sep 17 00:00:00 2001 From: Hari Chalise Date: Mon, 20 Jan 2025 21:06:44 +0545 Subject: [PATCH 14/18] Final fix --- .github/ISSUE_TEMPLATE/bug-reports.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug-reports.yml b/.github/ISSUE_TEMPLATE/bug-reports.yml index 97bb018d..813e85e3 100644 --- a/.github/ISSUE_TEMPLATE/bug-reports.yml +++ b/.github/ISSUE_TEMPLATE/bug-reports.yml @@ -59,8 +59,9 @@ body: - type: dropdown id: branch attributes: - label: Specify the branch of the project you are using. + label: Branch multiple: false + description: Specify the branch of the project you are using. options: - stable - prerelease From e156939b8df97757e7322e8e6ea9b225195c9046 Mon Sep 17 00:00:00 2001 From: Hari Chalise Date: Tue, 21 Jan 2025 20:27:54 +0545 Subject: [PATCH 15/18] Redone Testing --- .github/ISSUE_TEMPLATE/bug-reports.yml | 35 +++++++++++++++++++++++++- 1 file changed, 34 insertions(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug-reports.yml b/.github/ISSUE_TEMPLATE/bug-reports.yml index 813e85e3..8af4ff82 100644 --- a/.github/ISSUE_TEMPLATE/bug-reports.yml +++ b/.github/ISSUE_TEMPLATE/bug-reports.yml @@ -19,9 +19,18 @@ body: - Ubuntu - Fedora - Debian + - openSUSE - Other validations: required: true + - type: input + id: specify-distribution + attributes: + label: Specify Distribution + description: Specify the distribution if "Other" was selected above. + placeholder: Enter the name of your Linux distribution. + renderWhen: + distribution: "Other" - type: dropdown id: de-wm attributes: @@ -37,6 +46,14 @@ body: - Other validations: required: true + - type: input + id: specify-de-wm + attributes: + label: Specify Desktop Environment/Window Manager + description: Specify the desktop environment or window manager if "Other" was selected above. + placeholder: Enter the name of your DE/WM. + renderWhen: + de-wm: "Other" - type: dropdown id: windowing-system attributes: @@ -49,6 +66,14 @@ body: - Other validations: required: true + - type: input + id: specify-windowing-system + attributes: + label: Specify Windowing System + description: Specify the windowing system if "Other" was selected above. + placeholder: Enter your windowing system. + renderWhen: + windowing-system: "Other" - type: input id: linutil-version attributes: @@ -65,10 +90,18 @@ body: options: - stable - prerelease - - master + - main - other validations: required: true + - type: input + id: specify-branch + attributes: + label: Specify Branch + description: Specify the branch if "Other" was selected above. + placeholder: Enter the branch name. + renderWhen: + branch: "other" - type: textarea id: describe-bug attributes: From c1807a9c42691f547021b19367c2c280e7299535 Mon Sep 17 00:00:00 2001 From: Hari Chalise Date: Tue, 21 Jan 2025 20:29:39 +0545 Subject: [PATCH 16/18] Fix Some Stuffs --- .github/ISSUE_TEMPLATE/bug-reports.yml | 34 ++++++++++---------------- 1 file changed, 13 insertions(+), 21 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug-reports.yml b/.github/ISSUE_TEMPLATE/bug-reports.yml index 8af4ff82..99116351 100644 --- a/.github/ISSUE_TEMPLATE/bug-reports.yml +++ b/.github/ISSUE_TEMPLATE/bug-reports.yml @@ -26,11 +26,9 @@ body: - type: input id: specify-distribution attributes: - label: Specify Distribution - description: Specify the distribution if "Other" was selected above. - placeholder: Enter the name of your Linux distribution. - renderWhen: - distribution: "Other" + label: Specify Distribution (if "Other" selected) + description: Enter the name of your Linux distribution. + placeholder: e.g., Manjaro, Pop!_OS - type: dropdown id: de-wm attributes: @@ -49,11 +47,9 @@ body: - type: input id: specify-de-wm attributes: - label: Specify Desktop Environment/Window Manager - description: Specify the desktop environment or window manager if "Other" was selected above. - placeholder: Enter the name of your DE/WM. - renderWhen: - de-wm: "Other" + label: Specify Desktop Environment/Window Manager (if "Other" selected) + description: Enter the name of your desktop environment or window manager. + placeholder: e.g., LXQt, Openbox - type: dropdown id: windowing-system attributes: @@ -69,16 +65,14 @@ body: - type: input id: specify-windowing-system attributes: - label: Specify Windowing System - description: Specify the windowing system if "Other" was selected above. - placeholder: Enter your windowing system. - renderWhen: - windowing-system: "Other" + label: Specify Windowing System (if "Other" selected) + description: Enter your windowing system. + placeholder: e.g., Mir - type: input id: linutil-version attributes: label: Linutil Version - description: Linutil version (found above the list within linutil):. + description: Linutil version (found above the list within linutil). validations: required: true - type: dropdown @@ -97,11 +91,9 @@ body: - type: input id: specify-branch attributes: - label: Specify Branch - description: Specify the branch if "Other" was selected above. - placeholder: Enter the branch name. - renderWhen: - branch: "other" + label: Specify Branch (if "Other" selected) + description: Enter the branch name. + placeholder: e.g., feature/new-feature - type: textarea id: describe-bug attributes: From ec0f26a29ceb2cf5240bc03839a72cb01aa29dd3 Mon Sep 17 00:00:00 2001 From: Hari Chalise Date: Tue, 21 Jan 2025 20:30:53 +0545 Subject: [PATCH 17/18] Change positioning --- .github/ISSUE_TEMPLATE/bug-reports.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug-reports.yml b/.github/ISSUE_TEMPLATE/bug-reports.yml index 99116351..fdae5079 100644 --- a/.github/ISSUE_TEMPLATE/bug-reports.yml +++ b/.github/ISSUE_TEMPLATE/bug-reports.yml @@ -82,9 +82,9 @@ body: multiple: false description: Specify the branch of the project you are using. options: - - stable + - main - prerelease - - main + - stable - other validations: required: true From 0a03c977b4864f3777018940712155589e5643a8 Mon Sep 17 00:00:00 2001 From: Hari Chalise Date: Tue, 21 Jan 2025 20:38:13 +0545 Subject: [PATCH 18/18] Update bug-reports.yml --- .github/ISSUE_TEMPLATE/bug-reports.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug-reports.yml b/.github/ISSUE_TEMPLATE/bug-reports.yml index fdae5079..a29e2f12 100644 --- a/.github/ISSUE_TEMPLATE/bug-reports.yml +++ b/.github/ISSUE_TEMPLATE/bug-reports.yml @@ -59,15 +59,8 @@ body: options: - X11 - Wayland - - Other validations: required: true - - type: input - id: specify-windowing-system - attributes: - label: Specify Windowing System (if "Other" selected) - description: Enter your windowing system. - placeholder: e.g., Mir - type: input id: linutil-version attributes: