From acacb2955593ba055c4f9fe482043acaaabbb22e Mon Sep 17 00:00:00 2001 From: Joni Van Roost Date: Sat, 14 Aug 2021 19:57:39 +0200 Subject: [PATCH 01/23] docs: change bug_report.md to .yml format See: https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-issue-forms --- .github/ISSUE_TEMPLATE/bug_report.md | 44 ---------------- .github/ISSUE_TEMPLATE/bug_report.yml | 73 +++++++++++++++++++++++++++ 2 files changed, 73 insertions(+), 44 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index a511bc08..00000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,44 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve -title: '' -labels: 'Type: Bug' -assignees: '' ---- - -**Checklist** - - - - -- [ ] I have searched for existing issues -- [ ] I have looked through [the wiki](https://github.com/MonitorControl/MonitorControl/wiki) -- [ ] I have updated MonitorControl to the latest version - -**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. - -**Environment Information (please complete the following information):** - -- macOS version: -- Mac model: -- MonitorControl version: -- Monitor(s): -- Apple Silicon/M1 (yes or no): diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 00000000..69a12afc --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,73 @@ +name: Bug report +description: Create a report to help us improve +labels: ["Type: Bug"] +assignees: +body: + - type: checkboxes + id: checklist + attributes: + label: Before opening the issue, have you...? + description: This is to help us minimize the amount of duplicate issues, which allows us more time for actual development. + options: + - label: Searched for existing issues + required: true + - label: Looked through [the wiki](https://github.com/MonitorControl/MonitorControl/wiki) + required: true + - label: Updated MonitorControl to the latest version (if applicable) + required: true + - type: textarea + id: description + attributes: + label: Describe the bug + description: A clear and concise description of what the bug is. + validations: + required: true + placeholder: Example: When enabling the Show contrast slider in menu option, the application crashes when clicking on the menu icon. + - type: textarea + id: reproduction + attributes: + label: Steps to reproduce + description: Please provide some steps on how we can reproduce the problem. This helps us resolve it faster. + validations: + required: true + placeholder: | + 1. Go to '...' + 2. Click on '....' + 3. Scroll down to '....' + 4. See error + - type: textarea + id: expected + attributes: + label: Expected behavior + description: A clear and concise description of what you expected to happen. + validations: + required: true + placeholder: Example: The app shows a contrast slider when clicking the icon in the menu bar and does not crash. + - type: textarea + attributes: + label: Anything else? + description: | + Links? References? Anything that will give us more context about the issue you are encountering! + + Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in. + validations: + required: false + - type: textarea + attributes: + label: Environment Information (please complete the following information) + description: | + examples: + - **macOS version**: 11.4 Big Sur + - **Mac model**: MacBook Pro (16-inch, 2019) + - **MonitorControl version**: v2.1.0 + - **Monitor(s)**: LG 38GN950, LG 27UN83A + - **Apple Silicon/M1 (yes or no)**: no + value: | + - macOS version: + - Mac model: + - MonitorControl version: + - Monitor(s): + - Apple Silicon/M1 (yes or no): no + render: markdown + validations: + required: false From 3f2244179890f60a9b983b6af79e2db99a4cb043 Mon Sep 17 00:00:00 2001 From: Joni Van Roost Date: Sat, 14 Aug 2021 20:00:09 +0200 Subject: [PATCH 02/23] Update bug_report.yml --- .github/ISSUE_TEMPLATE/bug_report.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 69a12afc..e4721f13 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -22,7 +22,7 @@ body: description: A clear and concise description of what the bug is. validations: required: true - placeholder: Example: When enabling the Show contrast slider in menu option, the application crashes when clicking on the menu icon. + placeholder: "Example: When enabling the Show contrast slider in menu option, the application crashes when clicking on the menu icon." - type: textarea id: reproduction attributes: @@ -42,7 +42,7 @@ body: description: A clear and concise description of what you expected to happen. validations: required: true - placeholder: Example: The app shows a contrast slider when clicking the icon in the menu bar and does not crash. + placeholder: "Example: The app shows a contrast slider when clicking the icon in the menu bar and does not crash." - type: textarea attributes: label: Anything else? From 31e8287ab0e6d98407a3616045b060f531c9eb06 Mon Sep 17 00:00:00 2001 From: Joni Van Roost Date: Sat, 14 Aug 2021 20:00:30 +0200 Subject: [PATCH 03/23] Update bug_report.yml --- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index e4721f13..b10cef83 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -1,7 +1,7 @@ name: Bug report description: Create a report to help us improve labels: ["Type: Bug"] -assignees: +assignees: [] body: - type: checkboxes id: checklist From da1c8098bca4d87b8ee75c61ee4a80dab0c7594b Mon Sep 17 00:00:00 2001 From: Joni Van Roost Date: Sat, 14 Aug 2021 20:12:10 +0200 Subject: [PATCH 04/23] Update bug_report.yml --- .github/ISSUE_TEMPLATE/bug_report.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index b10cef83..f2646edf 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -17,19 +17,19 @@ body: required: true - type: textarea id: description + validations: + required: true attributes: label: Describe the bug description: A clear and concise description of what the bug is. - validations: - required: true placeholder: "Example: When enabling the Show contrast slider in menu option, the application crashes when clicking on the menu icon." - type: textarea id: reproduction + validations: + required: true attributes: label: Steps to reproduce description: Please provide some steps on how we can reproduce the problem. This helps us resolve it faster. - validations: - required: true placeholder: | 1. Go to '...' 2. Click on '....' @@ -37,22 +37,24 @@ body: 4. See error - type: textarea id: expected + validations: + required: true attributes: label: Expected behavior description: A clear and concise description of what you expected to happen. - validations: - required: true placeholder: "Example: The app shows a contrast slider when clicking the icon in the menu bar and does not crash." - type: textarea + validations: + required: false attributes: label: Anything else? description: | Links? References? Anything that will give us more context about the issue you are encountering! Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in. - validations: - required: false - type: textarea + validations: + required: false attributes: label: Environment Information (please complete the following information) description: | @@ -69,5 +71,3 @@ body: - Monitor(s): - Apple Silicon/M1 (yes or no): no render: markdown - validations: - required: false From a54d8fd92c44f3427c2475f9404e0acf2f9b4bfd Mon Sep 17 00:00:00 2001 From: Joni Van Roost Date: Sat, 14 Aug 2021 20:17:52 +0200 Subject: [PATCH 05/23] Update and rename discussion.md to discussion.yml --- .github/ISSUE_TEMPLATE/discussion.md | 14 ----------- .github/ISSUE_TEMPLATE/discussion.yml | 36 +++++++++++++++++++++++++++ 2 files changed, 36 insertions(+), 14 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/discussion.md create mode 100644 .github/ISSUE_TEMPLATE/discussion.yml diff --git a/.github/ISSUE_TEMPLATE/discussion.md b/.github/ISSUE_TEMPLATE/discussion.md deleted file mode 100644 index 9cb26fa8..00000000 --- a/.github/ISSUE_TEMPLATE/discussion.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -name: Discussion -about: I want to discuss something that is related to this project -title: '' -labels: 'Type: Other' -assignees: '' - ---- - -**Checklist** - -- [ ] I have searched for existing issues - -**Discussion** diff --git a/.github/ISSUE_TEMPLATE/discussion.yml b/.github/ISSUE_TEMPLATE/discussion.yml new file mode 100644 index 00000000..f2e06d3e --- /dev/null +++ b/.github/ISSUE_TEMPLATE/discussion.yml @@ -0,0 +1,36 @@ +--- +name: Discussion +about: I want to discuss something that is related to this project +title: '' +labels: 'Type: Other' +assignees: '' + +--- + +**Checklist** + +- [ ] I have searched for existing issues + +**Discussion** + + +name: Discussion +description: I want to discuss something that is related to this project +labels: ["Type: Other"] +assignees: [] +body: + - type: checkboxes + id: checklist + attributes: + label: Before opening the issue, have you...? + description: This is to help us minimize the amount of duplicate issues, which allows us more time for actual development. + options: + - label: Searched for existing issues + required: true + - type: textarea + id: discussion + validations: + required: true + attributes: + label: Discussion + description: Feel free to type anything you want to discuss related to the project. Do note that we have a seperate template for questions. From 86763d5a8a536a59da4d95161b2eb13222c57f96 Mon Sep 17 00:00:00 2001 From: Joni Van Roost Date: Sat, 14 Aug 2021 20:18:11 +0200 Subject: [PATCH 06/23] Update discussion.yml --- .github/ISSUE_TEMPLATE/discussion.yml | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/discussion.yml b/.github/ISSUE_TEMPLATE/discussion.yml index f2e06d3e..60a9c438 100644 --- a/.github/ISSUE_TEMPLATE/discussion.yml +++ b/.github/ISSUE_TEMPLATE/discussion.yml @@ -1,19 +1,3 @@ ---- -name: Discussion -about: I want to discuss something that is related to this project -title: '' -labels: 'Type: Other' -assignees: '' - ---- - -**Checklist** - -- [ ] I have searched for existing issues - -**Discussion** - - name: Discussion description: I want to discuss something that is related to this project labels: ["Type: Other"] From 7a00388e5b604b67daaf06b29b08bdfa3449ed79 Mon Sep 17 00:00:00 2001 From: Joni Van Roost Date: Sat, 14 Aug 2021 20:18:58 +0200 Subject: [PATCH 07/23] Update bug_report.yml --- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index f2646edf..55bce54f 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -54,7 +54,7 @@ body: Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in. - type: textarea validations: - required: false + required: true attributes: label: Environment Information (please complete the following information) description: | From bed7e8ef5bda6bad92ad2e77f0d7625f086b5739 Mon Sep 17 00:00:00 2001 From: Joni Van Roost Date: Sat, 14 Aug 2021 20:22:48 +0200 Subject: [PATCH 08/23] Update feature_request.md --- .github/ISSUE_TEMPLATE/feature_request.md | 59 ++++++++++++++--------- 1 file changed, 37 insertions(+), 22 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index f8dac51a..15539e28 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -1,24 +1,39 @@ ---- name: Feature request -about: Suggest an idea for this project -title: '' -labels: 'Type: Feature Request' -assignees: '' +description: Suggest an idea for this project +labels: ["Type: Feature Request"] +assignees: [] +body: + - type: checkboxes + attributes: + label: Before opening the issue, have you...? + description: This is to help us minimize the amount of duplicate issues, which allows us more time for actual development. + options: + - label: Searched for existing issues + required: true + - type: textarea + validations: + required: true + attributes: + label: Is your feature request related to a problem? Please describe + description: A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + - type: textarea + validations: + required: true + attributes: + label: Describe the solution you'd like + description: A clear and concise description of what you want to happen. + - type: textarea + validations: + required: true + attributes: + label: Describe alternatives you've considered + description: A clear and concise description of any alternative solutions or features you've considered. + - type: textarea + validations: + required: false + attributes: + label: Anything else? + description: | + Links? References? Anything that will give us more context about the issue you are encountering! ---- - -**Checklist** - -- [ ] I have searched for existing issues - -**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. + Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in. From e06433226dc52d2abe364445a2a7becc71be6884 Mon Sep 17 00:00:00 2001 From: Joni Van Roost Date: Sat, 14 Aug 2021 20:23:02 +0200 Subject: [PATCH 09/23] Rename feature_request.md to feature_request.yml --- .../ISSUE_TEMPLATE/{feature_request.md => feature_request.yml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/ISSUE_TEMPLATE/{feature_request.md => feature_request.yml} (100%) diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.yml similarity index 100% rename from .github/ISSUE_TEMPLATE/feature_request.md rename to .github/ISSUE_TEMPLATE/feature_request.yml From 06c81f148084f1d6d89c1be30298c5f985520f23 Mon Sep 17 00:00:00 2001 From: Joni Van Roost Date: Sat, 14 Aug 2021 20:23:33 +0200 Subject: [PATCH 10/23] Update feature_request.yml --- .github/ISSUE_TEMPLATE/feature_request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index 15539e28..b676eddf 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -34,6 +34,6 @@ body: attributes: label: Anything else? description: | - Links? References? Anything that will give us more context about the issue you are encountering! + Screenshots? Links? References? Anything that will give us more context about the issue you are encountering! Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in. From 89353f30513044b390fb3a05eed2e970f4f3e789 Mon Sep 17 00:00:00 2001 From: Joni Van Roost Date: Sat, 14 Aug 2021 20:23:49 +0200 Subject: [PATCH 11/23] Update bug_report.yml --- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 55bce54f..3e779b77 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -49,7 +49,7 @@ body: attributes: label: Anything else? description: | - Links? References? Anything that will give us more context about the issue you are encountering! + Screenshots? Links? References? Anything that will give us more context about the issue you are encountering! Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in. - type: textarea From 141b1cdf2119ffa2614d469aa7f8a388da363cbc Mon Sep 17 00:00:00 2001 From: Joni Van Roost Date: Sat, 14 Aug 2021 20:30:54 +0200 Subject: [PATCH 12/23] Update and rename monitor-issue.md to monitor-issue.yml --- .github/ISSUE_TEMPLATE/monitor-issue.md | 37 --------------- .github/ISSUE_TEMPLATE/monitor-issue.yml | 60 ++++++++++++++++++++++++ 2 files changed, 60 insertions(+), 37 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/monitor-issue.md create mode 100644 .github/ISSUE_TEMPLATE/monitor-issue.yml diff --git a/.github/ISSUE_TEMPLATE/monitor-issue.md b/.github/ISSUE_TEMPLATE/monitor-issue.md deleted file mode 100644 index 5af62910..00000000 --- a/.github/ISSUE_TEMPLATE/monitor-issue.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -name: Monitor Issue -about: MonitorControl is not working as expected on my Monitor -title: '' -labels: 'Type: Monitor Issue' -assignees: '' ---- - -**Checklist** - - - - -- [ ] I have searched for existing issues -- [ ] I have looked through [the Monitor Troubleshooting wiki](https://github.com/MonitorControl/MonitorControl/wiki/Monitor-Troubleshooting) -- [ ] I have updated MonitorControl to the latest version - -**Describe the issue** -A clear and concise description of the problem. - -**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. - -**Environment Information (please complete the following information):** - -- macOS version: -- MonitorControl version: -- Monitor(s): -- Mac model: -- Monitor Cable(s)/Connection(s): (e.g. DisplayPort) -- Apple Silicon/M1 (yes or no): diff --git a/.github/ISSUE_TEMPLATE/monitor-issue.yml b/.github/ISSUE_TEMPLATE/monitor-issue.yml new file mode 100644 index 00000000..3000f115 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/monitor-issue.yml @@ -0,0 +1,60 @@ +name: Monitor Issue +description: MonitorControl is not working as expected on my Monitor +labels: ["Type: Monitor Issue"] +assignees: [] +body: + - type: checkboxes + attributes: + label: Before opening the issue, have you...? + description: This is to help us minimize the amount of duplicate issues, which allows us more time for actual development. + options: + - label: Searched for existing issues + required: true + - label: Looked through [the wiki](https://github.com/MonitorControl/MonitorControl/wiki) + required: true + - label: Updated MonitorControl to the latest version (if applicable) + required: true + - type: textarea + validations: + required: true + attributes: + label: Describe the issue + description: A clear and concise description of the problem. + - type: textarea + validations: + required: true + attributes: + label: Expected behavior + description: A clear and concise description of what you expected to happen. + - type: textarea + validations: + required: false + attributes: + label: Anything else? + description: | + Screenshots? Links? References? Anything that will give us more context about the issue you are encountering! + + Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in. + - type: textarea + validations: + required: false + attributes: + label: Environment Information (please complete the following information) + description: | + examples: + - **macOS version**: 11.4 Big Sur + - **Mac model**: MacBook Pro (16-inch, 2019) + - **MonitorControl version**: v2.1.0 + - **Monitor(s)**: LG 38GN950, LG 27UN83A + - **Monitor Cable(s)/Connection(s)**: + - Mac Mini -> DisplayPort 2.1 -> LG 38GN950 + - Mac Mini -> Belkin Thunderbolt 3 Dock Core -> LG 27UN83A + - **Apple Silicon/M1 (yes or no)**: no + value: | + - macOS version: + - Mac model: + - MonitorControl version: + - Monitor(s): + - Monitor Cable(s)/Connection(s): + - Apple Silicon/M1 (yes or no): + render: markdown From 766f7aadaf74cd7c64c97bfda77c3dca773a6a46 Mon Sep 17 00:00:00 2001 From: Joni Van Roost Date: Sat, 14 Aug 2021 20:31:27 +0200 Subject: [PATCH 13/23] Update monitor-issue.yml --- .github/ISSUE_TEMPLATE/monitor-issue.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/monitor-issue.yml b/.github/ISSUE_TEMPLATE/monitor-issue.yml index 3000f115..63bb5213 100644 --- a/.github/ISSUE_TEMPLATE/monitor-issue.yml +++ b/.github/ISSUE_TEMPLATE/monitor-issue.yml @@ -47,8 +47,8 @@ body: - **MonitorControl version**: v2.1.0 - **Monitor(s)**: LG 38GN950, LG 27UN83A - **Monitor Cable(s)/Connection(s)**: - - Mac Mini -> DisplayPort 2.1 -> LG 38GN950 - - Mac Mini -> Belkin Thunderbolt 3 Dock Core -> LG 27UN83A + * Mac Mini -> DisplayPort 2.1 -> LG 38GN950 + * Mac Mini -> Belkin Thunderbolt 3 Dock Core -> LG 27UN83A - **Apple Silicon/M1 (yes or no)**: no value: | - macOS version: From 476492d1daa91c9381f45d3f6c826c4d209ee121 Mon Sep 17 00:00:00 2001 From: Joni Van Roost Date: Sat, 14 Aug 2021 20:31:54 +0200 Subject: [PATCH 14/23] Update monitor-issue.yml --- .github/ISSUE_TEMPLATE/monitor-issue.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/monitor-issue.yml b/.github/ISSUE_TEMPLATE/monitor-issue.yml index 63bb5213..18bb82cc 100644 --- a/.github/ISSUE_TEMPLATE/monitor-issue.yml +++ b/.github/ISSUE_TEMPLATE/monitor-issue.yml @@ -46,7 +46,7 @@ body: - **Mac model**: MacBook Pro (16-inch, 2019) - **MonitorControl version**: v2.1.0 - **Monitor(s)**: LG 38GN950, LG 27UN83A - - **Monitor Cable(s)/Connection(s)**: + - **Monitor Cable(s)/Connection(s)**: | * Mac Mini -> DisplayPort 2.1 -> LG 38GN950 * Mac Mini -> Belkin Thunderbolt 3 Dock Core -> LG 27UN83A - **Apple Silicon/M1 (yes or no)**: no From a868085bd0e2325eb51f52196d122c3982e5eef3 Mon Sep 17 00:00:00 2001 From: Joni Van Roost Date: Sat, 14 Aug 2021 20:32:20 +0200 Subject: [PATCH 15/23] Update monitor-issue.yml --- .github/ISSUE_TEMPLATE/monitor-issue.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/monitor-issue.yml b/.github/ISSUE_TEMPLATE/monitor-issue.yml index 18bb82cc..15f821ea 100644 --- a/.github/ISSUE_TEMPLATE/monitor-issue.yml +++ b/.github/ISSUE_TEMPLATE/monitor-issue.yml @@ -46,9 +46,9 @@ body: - **Mac model**: MacBook Pro (16-inch, 2019) - **MonitorControl version**: v2.1.0 - **Monitor(s)**: LG 38GN950, LG 27UN83A - - **Monitor Cable(s)/Connection(s)**: | - * Mac Mini -> DisplayPort 2.1 -> LG 38GN950 - * Mac Mini -> Belkin Thunderbolt 3 Dock Core -> LG 27UN83A + - **Monitor Cable(s)/Connection(s)**: + 1. Mac Mini -> DisplayPort 2.1 -> LG 38GN950 + 2. Mac Mini -> Belkin Thunderbolt 3 Dock Core -> LG 27UN83A - **Apple Silicon/M1 (yes or no)**: no value: | - macOS version: From 4a461803e71f8e45289bbfcb274e0e208d8d1e7e Mon Sep 17 00:00:00 2001 From: Joni Van Roost Date: Sat, 14 Aug 2021 20:32:52 +0200 Subject: [PATCH 16/23] Update monitor-issue.yml --- .github/ISSUE_TEMPLATE/monitor-issue.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/monitor-issue.yml b/.github/ISSUE_TEMPLATE/monitor-issue.yml index 15f821ea..bef9a25b 100644 --- a/.github/ISSUE_TEMPLATE/monitor-issue.yml +++ b/.github/ISSUE_TEMPLATE/monitor-issue.yml @@ -46,9 +46,9 @@ body: - **Mac model**: MacBook Pro (16-inch, 2019) - **MonitorControl version**: v2.1.0 - **Monitor(s)**: LG 38GN950, LG 27UN83A - - **Monitor Cable(s)/Connection(s)**: - 1. Mac Mini -> DisplayPort 2.1 -> LG 38GN950 - 2. Mac Mini -> Belkin Thunderbolt 3 Dock Core -> LG 27UN83A + - **Monitor Cable(s)/Connection(s)**: + • Mac Mini -> DisplayPort 2.1 -> LG 38GN950 + • Mac Mini -> Belkin Thunderbolt 3 Dock Core -> LG 27UN83A - **Apple Silicon/M1 (yes or no)**: no value: | - macOS version: From 28c0b314f48e53ffc62bd241d7a2f75962d6eae6 Mon Sep 17 00:00:00 2001 From: Joni Van Roost Date: Sat, 14 Aug 2021 20:33:35 +0200 Subject: [PATCH 17/23] Update monitor-issue.yml --- .github/ISSUE_TEMPLATE/monitor-issue.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/monitor-issue.yml b/.github/ISSUE_TEMPLATE/monitor-issue.yml index bef9a25b..a91b59a7 100644 --- a/.github/ISSUE_TEMPLATE/monitor-issue.yml +++ b/.github/ISSUE_TEMPLATE/monitor-issue.yml @@ -47,8 +47,8 @@ body: - **MonitorControl version**: v2.1.0 - **Monitor(s)**: LG 38GN950, LG 27UN83A - **Monitor Cable(s)/Connection(s)**: - • Mac Mini -> DisplayPort 2.1 -> LG 38GN950 - • Mac Mini -> Belkin Thunderbolt 3 Dock Core -> LG 27UN83A +   - Mac Mini -> DisplayPort 2.1 -> LG 38GN950 +   - Mac Mini -> Belkin Thunderbolt 3 Dock Core -> LG 27UN83A - **Apple Silicon/M1 (yes or no)**: no value: | - macOS version: From b15e46d49f6141fbc3aa769245239b99db32a7c7 Mon Sep 17 00:00:00 2001 From: Joni Van Roost Date: Sat, 14 Aug 2021 20:33:54 +0200 Subject: [PATCH 18/23] Update monitor-issue.yml --- .github/ISSUE_TEMPLATE/monitor-issue.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/monitor-issue.yml b/.github/ISSUE_TEMPLATE/monitor-issue.yml index a91b59a7..e7d767dd 100644 --- a/.github/ISSUE_TEMPLATE/monitor-issue.yml +++ b/.github/ISSUE_TEMPLATE/monitor-issue.yml @@ -47,8 +47,8 @@ body: - **MonitorControl version**: v2.1.0 - **Monitor(s)**: LG 38GN950, LG 27UN83A - **Monitor Cable(s)/Connection(s)**: -   - Mac Mini -> DisplayPort 2.1 -> LG 38GN950 -   - Mac Mini -> Belkin Thunderbolt 3 Dock Core -> LG 27UN83A +   - Mac Mini -> DisplayPort 2.1 -> LG 38GN950 +   - Mac Mini -> Belkin Thunderbolt 3 Dock Core -> LG 27UN83A - **Apple Silicon/M1 (yes or no)**: no value: | - macOS version: From c7fd40ac9c41e2ec7618654e08f137e26d210634 Mon Sep 17 00:00:00 2001 From: Joni Van Roost Date: Sat, 14 Aug 2021 20:35:39 +0200 Subject: [PATCH 19/23] Update monitor-issue.yml --- .github/ISSUE_TEMPLATE/monitor-issue.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/ISSUE_TEMPLATE/monitor-issue.yml b/.github/ISSUE_TEMPLATE/monitor-issue.yml index e7d767dd..f59c1eda 100644 --- a/.github/ISSUE_TEMPLATE/monitor-issue.yml +++ b/.github/ISSUE_TEMPLATE/monitor-issue.yml @@ -20,6 +20,7 @@ body: attributes: label: Describe the issue description: A clear and concise description of the problem. + placeholder: Volume & Brightness controls are not working on my LG 38GN950. - type: textarea validations: required: true From 111938653eebeb175e9e927c58c8cf655458d6a4 Mon Sep 17 00:00:00 2001 From: Joni Van Roost Date: Sat, 14 Aug 2021 20:37:38 +0200 Subject: [PATCH 20/23] Update question.md --- .github/ISSUE_TEMPLATE/question.md | 30 +++++++++++++++++------------- 1 file changed, 17 insertions(+), 13 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/question.md b/.github/ISSUE_TEMPLATE/question.md index 644a7980..f6457a7c 100644 --- a/.github/ISSUE_TEMPLATE/question.md +++ b/.github/ISSUE_TEMPLATE/question.md @@ -1,14 +1,18 @@ ---- name: Question -about: I have a question related to this project -title: '' -labels: 'Type: Question' -assignees: '' - ---- - -**Checklist** - -- [ ] I have searched for existing issues - -**Question** +description: I have a question related to this project +labels: ["Type: Question"] +assignees: [] +body: + - type: checkboxes + attributes: + label: Before opening the issue, have you...? + description: This is to help us minimize the amount of duplicate issues, which allows us more time for actual development. + options: + - label: Searched for existing issues + required: true + - type: textarea + validations: + required: true + attributes: + label: Question + description: Ask your question, be specific. The more info you provide, the easier it will be for someone to answer! From c550261e7bb3b65bbae1a45e05f64ddb020b4213 Mon Sep 17 00:00:00 2001 From: Joni Van Roost Date: Sat, 14 Aug 2021 20:37:46 +0200 Subject: [PATCH 21/23] Rename question.md to question.yml --- .github/ISSUE_TEMPLATE/{question.md => question.yml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/ISSUE_TEMPLATE/{question.md => question.yml} (100%) diff --git a/.github/ISSUE_TEMPLATE/question.md b/.github/ISSUE_TEMPLATE/question.yml similarity index 100% rename from .github/ISSUE_TEMPLATE/question.md rename to .github/ISSUE_TEMPLATE/question.yml From 4f9015713c6dfdf4452f3069646ec6affc70aee1 Mon Sep 17 00:00:00 2001 From: Joni Van Roost Date: Sat, 14 Aug 2021 20:38:06 +0200 Subject: [PATCH 22/23] Update question.yml --- .github/ISSUE_TEMPLATE/question.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/question.yml b/.github/ISSUE_TEMPLATE/question.yml index f6457a7c..deeca0c8 100644 --- a/.github/ISSUE_TEMPLATE/question.yml +++ b/.github/ISSUE_TEMPLATE/question.yml @@ -11,8 +11,8 @@ body: - label: Searched for existing issues required: true - type: textarea - validations: - required: true - attributes: - label: Question - description: Ask your question, be specific. The more info you provide, the easier it will be for someone to answer! + validations: + required: true + attributes: + label: Question + description: Ask your question, be specific. The more info you provide, the easier it will be for someone to answer! From cff43caa8d23e66251c1ff6e3f25c19cfbf786fb Mon Sep 17 00:00:00 2001 From: Joni Van Roost Date: Sat, 14 Aug 2021 20:40:31 +0200 Subject: [PATCH 23/23] Update monitor-issue.yml --- .github/ISSUE_TEMPLATE/monitor-issue.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/monitor-issue.yml b/.github/ISSUE_TEMPLATE/monitor-issue.yml index f59c1eda..f5619c5a 100644 --- a/.github/ISSUE_TEMPLATE/monitor-issue.yml +++ b/.github/ISSUE_TEMPLATE/monitor-issue.yml @@ -1,5 +1,5 @@ name: Monitor Issue -description: MonitorControl is not working as expected on my Monitor +description: MonitorControl is not working as expected on my monitor. labels: ["Type: Monitor Issue"] assignees: [] body: