From 2605d2a9bc02c3f310fd152e5315ac5859fc88f0 Mon Sep 17 00:00:00 2001 From: Daniel Date: Thu, 4 Mar 2021 16:05:37 +0100 Subject: [PATCH 1/5] Update issue templates for new docs site --- .github/ISSUE_TEMPLATE/bug-report.md | 53 ------------------- .github/ISSUE_TEMPLATE/config.yml | 25 +++++++-- .github/ISSUE_TEMPLATE/feature.md | 15 ------ .github/ISSUE_TEMPLATE/report-bug.md | 42 +++++++++++++++ .../report-linux-distro-incompat.md | 35 ++++++++++++ .../report-software-incompat.md | 37 +++++++++++++ .github/ISSUE_TEMPLATE/report-vpn-incompat.md | 33 ++++++++++++ .github/ISSUE_TEMPLATE/request-feature.md | 11 ++++ 8 files changed, 180 insertions(+), 71 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug-report.md delete mode 100644 .github/ISSUE_TEMPLATE/feature.md create mode 100644 .github/ISSUE_TEMPLATE/report-bug.md create mode 100644 .github/ISSUE_TEMPLATE/report-linux-distro-incompat.md create mode 100644 .github/ISSUE_TEMPLATE/report-software-incompat.md create mode 100644 .github/ISSUE_TEMPLATE/report-vpn-incompat.md create mode 100644 .github/ISSUE_TEMPLATE/request-feature.md diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md deleted file mode 100644 index 504467f2..00000000 --- a/.github/ISSUE_TEMPLATE/bug-report.md +++ /dev/null @@ -1,53 +0,0 @@ ---- -name: Bug Report -about: Report a bug encountered while using the Portmaster -labels: bug - ---- - - - -**Checklist**: - -- [ ] I'm using the official portmaster release (i.e no custom builds) -- [ ] I searched for similar/existing issues first. -- [ ] My issue is not mentioned in the Known Issues section of my [OS](https://github.com/safing/portmaster/wiki) - -**What happened**: - -**What you expected to happen**: - -**How to reproduce it (as minimally and precisely as possible)**: - -**Anything else we need to know?**: - -**Environment**: - -Portmaster Version: - -
- Versions from the `About` page in Portmaster's UI - -
- -Operating System: -- [ ] Windows 7 -- [ ] Windows 8/8.1 -- [ ] Windows 10 -- [ ] Linux - - Please provide the output of `cat /etc/os-release` - -If applicable you can provide related sections from the log files and ensure to **remove sensitive or otherwise private information**. - - Linux: `/var/lib/portmaster/logs` - - Windows: `%PROGRAMDATA%\Safing\Portmaster\logs` diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 4ab1dc2b..cdad0fc0 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -2,12 +2,31 @@ # Ref: https://help.github.com/en/github/building-a-strong-community/configuring-issue-templates-for-your-repository#configuring-the-template-chooser blank_issues_enabled: true # default: true contact_links: -- name: User Interface Issues ๐Ÿ’ป + +- name: ":bug: Known Windows Issues" + url: https://docs.safing.io/portmaster/install/windows#known-issues + +- name: ":bug:/:penguin: Known Linux/Distro/DE Issues" + url: https://docs.safing.io/portmaster/install/linux#compatibility + +- name: ":computer: Software Compatibility" + url: https://docs.safing.io/portmaster/install/status/software-compatibility + +- name: ":satellite: VPN Compatibility" + url: https://docs.safing.io/portmaster/install/status/vpn-compatibility + +- name: User Interface Issues url: https://github.com/safing/portmaster-ui/issues/new/choose about: Report any issues or feature requests for the Portmaster UI here -- name: Support Requests & Community ๐Ÿคท + +- name: ":beginner::point_up: How to Contribute" + url: https://docs.safing.io/portmaster/guides/contribute + about: Your contributions will have the highest impact when aligned with Safingโ€™s current goals and focus. + +- name: "๐Ÿคท Support Requests & Community" url: https://www.reddit.com/r/safing about: Ask for support and any questions you might have on reddit. -- name: Code of Conduct ๐Ÿ“ + +- name: "๐Ÿ“ Code of Conduct" url: https://github.com/safing/portmaster/blob/develop/CODE_OF_CONDUCT.md about: Be nice to other community members โค diff --git a/.github/ISSUE_TEMPLATE/feature.md b/.github/ISSUE_TEMPLATE/feature.md deleted file mode 100644 index 87f04413..00000000 --- a/.github/ISSUE_TEMPLATE/feature.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -name: Feature Request -about: Suggest an enhancement or feature to the Portmaster -labels: feature - ---- - - -**What would you like to be added**: - -**Why is this needed**: diff --git a/.github/ISSUE_TEMPLATE/report-bug.md b/.github/ISSUE_TEMPLATE/report-bug.md new file mode 100644 index 00000000..f147703e --- /dev/null +++ b/.github/ISSUE_TEMPLATE/report-bug.md @@ -0,0 +1,42 @@ +--- +name: ":bug: Report Bug" +about: Report a bug encountered while using the Portmaster +labels: bug +--- + + + +**Pre-Submit Checklist**: + +- Check known issues: + - [Windows](https://docs.safing.io/portmaster/install/windows#known-issues) + - [Linux](https://docs.safing.io/portmaster/install/linux#compatibility) +- Search for similar/existing issues on Github. + +**What happened**: + + + +**What did you expect to happen?**: + + + +**How did you reproduce it?**: + + + +**Debug Information**: + + diff --git a/.github/ISSUE_TEMPLATE/report-linux-distro-incompat.md b/.github/ISSUE_TEMPLATE/report-linux-distro-incompat.md new file mode 100644 index 00000000..00bf93a6 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/report-linux-distro-incompat.md @@ -0,0 +1,35 @@ +--- +name: ":penguin: Report Linux Distro In/Compatibility" +about: Report if your Linux Distro is compatibe with the Portmaster - or not. +labels: incompatibility, linux-distro +--- + +**Pre-Submit Checklist**: + +- Check [known in/compatibilities](https://docs.safing.io/portmaster/install/linux#compatibility) +- Search for similar/existing issues on Github. + +**Which Linux Distro & DE are you using?**: + + + + +**Does it work? If not, what happened?** + + + +**Debug Information**: + + diff --git a/.github/ISSUE_TEMPLATE/report-software-incompat.md b/.github/ISSUE_TEMPLATE/report-software-incompat.md new file mode 100644 index 00000000..866edb4e --- /dev/null +++ b/.github/ISSUE_TEMPLATE/report-software-incompat.md @@ -0,0 +1,37 @@ +--- +name: ":computer: Report App/Software Incompatibility" +about: Report problems with using a piece Software alongside of the Portmaster. +labels: incompatibility, software +--- + +**Pre-Submit Checklist**: + +- Check [known incompatibilities](https://docs.safing.io/portmaster/install/linux#compatibility) +- Search for similar/existing issues on Github. + +**Which Software is affected?**: + + + +**What happened**: + + + +**What did you expect to happen?**: + + + +**Debug Information**: + + diff --git a/.github/ISSUE_TEMPLATE/report-vpn-incompat.md b/.github/ISSUE_TEMPLATE/report-vpn-incompat.md new file mode 100644 index 00000000..257b6d14 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/report-vpn-incompat.md @@ -0,0 +1,33 @@ +--- +name: ":satellite: Report VPN In/Compatibility" +about: Report if your VPN is compatibe with the Portmaster - or not. +labels: incompatibility, vpn +--- + +**Pre-Submit Checklist**: + +- Check [known incompatibilities](https://docs.safing.io/portmaster/install/status/vpn-compatibility) +- Search for similar/existing issues on Github. + +**Which VPN are you using?**: + + + +**Does it work? If not, what happened?** + + + +**Debug Information**: + + diff --git a/.github/ISSUE_TEMPLATE/request-feature.md b/.github/ISSUE_TEMPLATE/request-feature.md new file mode 100644 index 00000000..ee01559b --- /dev/null +++ b/.github/ISSUE_TEMPLATE/request-feature.md @@ -0,0 +1,11 @@ +--- +name: Request a Feature +about: Suggest an enhancement or feature to the Portmaster +labels: feature +--- + +**What would you like to add or change?**: + + + +**Why do you and others need this?**: From 34ec4cee0b71060c5b0a11719b1c974183cc9815 Mon Sep 17 00:00:00 2001 From: Daniel Date: Wed, 31 Mar 2021 16:28:53 +0200 Subject: [PATCH 2/5] Implement review suggestions --- .github/ISSUE_TEMPLATE/config.yml | 36 ++++++++---------- .github/ISSUE_TEMPLATE/report-bug.md | 2 +- .../ISSUE_TEMPLATE/report-compatibility.md | 35 ++++++++++++++++++ .../report-linux-distro-incompat.md | 35 ------------------ .../report-software-incompat.md | 37 ------------------- .github/ISSUE_TEMPLATE/report-vpn-incompat.md | 33 ----------------- .github/ISSUE_TEMPLATE/request-feature.md | 11 ------ .github/ISSUE_TEMPLATE/suggest-feature.md | 11 ++++++ 8 files changed, 63 insertions(+), 137 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/report-compatibility.md delete mode 100644 .github/ISSUE_TEMPLATE/report-linux-distro-incompat.md delete mode 100644 .github/ISSUE_TEMPLATE/report-software-incompat.md delete mode 100644 .github/ISSUE_TEMPLATE/report-vpn-incompat.md delete mode 100644 .github/ISSUE_TEMPLATE/request-feature.md create mode 100644 .github/ISSUE_TEMPLATE/suggest-feature.md diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index cdad0fc0..7c4c783d 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -3,30 +3,26 @@ blank_issues_enabled: true # default: true contact_links: -- name: ":bug: Known Windows Issues" - url: https://docs.safing.io/portmaster/install/windows#known-issues +# - name: "๐Ÿ›  Create Issue for Portmaster" +# url: https://github.com/safing/portmaster/issues/new/choose +# about: "Create issue related to the main application" -- name: ":bug:/:penguin: Known Linux/Distro/DE Issues" - url: https://docs.safing.io/portmaster/install/linux#compatibility - -- name: ":computer: Software Compatibility" - url: https://docs.safing.io/portmaster/install/status/software-compatibility - -- name: ":satellite: VPN Compatibility" - url: https://docs.safing.io/portmaster/install/status/vpn-compatibility - -- name: User Interface Issues +- name: "๐ŸŽจ Create Issue for User Interface" url: https://github.com/safing/portmaster-ui/issues/new/choose - about: Report any issues or feature requests for the Portmaster UI here + about: "Create issue for everything connected to the Portmaster's User Interface" -- name: ":beginner::point_up: How to Contribute" - url: https://docs.safing.io/portmaster/guides/contribute - about: Your contributions will have the highest impact when aligned with Safingโ€™s current goals and focus. +- name: "๐Ÿ“ฆ Create Issue for Packaging & Installers" + url: https://github.com/safing/portmaster-packaging/issues/new/choose + about: "Create issue for things related to Portmaster's installers, packaging and distribution" -- name: "๐Ÿคท Support Requests & Community" +- name: "Contribution Guideline" + url: https://docs.safing.io/portmaster/guides/contribute + about: Learn how to best contribute and make sure your work is aligned with Safingโ€™s current goals and focus + +- name: "Support Requests & Community" url: https://www.reddit.com/r/safing - about: Ask for support and any questions you might have on reddit. + about: Ask for support and any questions you might have on reddit -- name: "๐Ÿ“ Code of Conduct" +- name: "Code of Conduct" url: https://github.com/safing/portmaster/blob/develop/CODE_OF_CONDUCT.md - about: Be nice to other community members โค + about: Be nice to other community members diff --git a/.github/ISSUE_TEMPLATE/report-bug.md b/.github/ISSUE_TEMPLATE/report-bug.md index f147703e..feb873eb 100644 --- a/.github/ISSUE_TEMPLATE/report-bug.md +++ b/.github/ISSUE_TEMPLATE/report-bug.md @@ -1,5 +1,5 @@ --- -name: ":bug: Report Bug" +name: "๐Ÿž Report a Bug" about: Report a bug encountered while using the Portmaster labels: bug --- diff --git a/.github/ISSUE_TEMPLATE/report-compatibility.md b/.github/ISSUE_TEMPLATE/report-compatibility.md new file mode 100644 index 00000000..1a273906 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/report-compatibility.md @@ -0,0 +1,35 @@ +--- +name: "๐Ÿ“ Make a Compatibility Report" +about: Report Portmaster in/compatibility with Linux Distros, VPN Clients or general Software +labels: compatibility +--- + +**Pre-Submit Checklist**: + +- Check applicable sources for existing issues + - [Linux Compatibility](https://docs.safing.io/portmaster/install/linux#compatibility) + - [VPN Compatibility](https://docs.safing.io/portmaster/install/status/vpn-compatibility) + - [Github Issues (all our repos)](https://github.com/issues?q=user%3Asafing) + +**Which Linux Distro, VPN Client or General Software is this about?**: + + + + +**Does it work? If not, what happened?** + + + +**Debug Information**: + + diff --git a/.github/ISSUE_TEMPLATE/report-linux-distro-incompat.md b/.github/ISSUE_TEMPLATE/report-linux-distro-incompat.md deleted file mode 100644 index 00bf93a6..00000000 --- a/.github/ISSUE_TEMPLATE/report-linux-distro-incompat.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -name: ":penguin: Report Linux Distro In/Compatibility" -about: Report if your Linux Distro is compatibe with the Portmaster - or not. -labels: incompatibility, linux-distro ---- - -**Pre-Submit Checklist**: - -- Check [known in/compatibilities](https://docs.safing.io/portmaster/install/linux#compatibility) -- Search for similar/existing issues on Github. - -**Which Linux Distro & DE are you using?**: - - - - -**Does it work? If not, what happened?** - - - -**Debug Information**: - - diff --git a/.github/ISSUE_TEMPLATE/report-software-incompat.md b/.github/ISSUE_TEMPLATE/report-software-incompat.md deleted file mode 100644 index 866edb4e..00000000 --- a/.github/ISSUE_TEMPLATE/report-software-incompat.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -name: ":computer: Report App/Software Incompatibility" -about: Report problems with using a piece Software alongside of the Portmaster. -labels: incompatibility, software ---- - -**Pre-Submit Checklist**: - -- Check [known incompatibilities](https://docs.safing.io/portmaster/install/linux#compatibility) -- Search for similar/existing issues on Github. - -**Which Software is affected?**: - - - -**What happened**: - - - -**What did you expect to happen?**: - - - -**Debug Information**: - - diff --git a/.github/ISSUE_TEMPLATE/report-vpn-incompat.md b/.github/ISSUE_TEMPLATE/report-vpn-incompat.md deleted file mode 100644 index 257b6d14..00000000 --- a/.github/ISSUE_TEMPLATE/report-vpn-incompat.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -name: ":satellite: Report VPN In/Compatibility" -about: Report if your VPN is compatibe with the Portmaster - or not. -labels: incompatibility, vpn ---- - -**Pre-Submit Checklist**: - -- Check [known incompatibilities](https://docs.safing.io/portmaster/install/status/vpn-compatibility) -- Search for similar/existing issues on Github. - -**Which VPN are you using?**: - - - -**Does it work? If not, what happened?** - - - -**Debug Information**: - - diff --git a/.github/ISSUE_TEMPLATE/request-feature.md b/.github/ISSUE_TEMPLATE/request-feature.md deleted file mode 100644 index ee01559b..00000000 --- a/.github/ISSUE_TEMPLATE/request-feature.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -name: Request a Feature -about: Suggest an enhancement or feature to the Portmaster -labels: feature ---- - -**What would you like to add or change?**: - - - -**Why do you and others need this?**: diff --git a/.github/ISSUE_TEMPLATE/suggest-feature.md b/.github/ISSUE_TEMPLATE/suggest-feature.md new file mode 100644 index 00000000..cd19abb2 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/suggest-feature.md @@ -0,0 +1,11 @@ +--- +name: "๐Ÿ’ก Suggest an Improvement or Feature" +about: Suggest an enhancement or a new feature for the Portmaster +labels: feature +--- + +**What would you like to add or change?**: + + + +**Why do you and others need this?**: From 49f1c596260f95bb1145404cc339aeb63b5c47b5 Mon Sep 17 00:00:00 2001 From: Daniel Date: Thu, 1 Apr 2021 12:07:51 +0200 Subject: [PATCH 3/5] Implement review suggestions --- .github/ISSUE_TEMPLATE/config.yml | 2 +- .github/ISSUE_TEMPLATE/report-bug.md | 11 ++++++----- .github/ISSUE_TEMPLATE/report-compatibility.md | 14 +++++++------- .github/ISSUE_TEMPLATE/suggest-feature.md | 2 ++ 4 files changed, 16 insertions(+), 13 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 7c4c783d..12377170 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -24,5 +24,5 @@ contact_links: about: Ask for support and any questions you might have on reddit - name: "Code of Conduct" - url: https://github.com/safing/portmaster/blob/develop/CODE_OF_CONDUCT.md + url: https://docs.safing.io/community/code-of-conduct about: Be nice to other community members diff --git a/.github/ISSUE_TEMPLATE/report-bug.md b/.github/ISSUE_TEMPLATE/report-bug.md index feb873eb..0c7e0252 100644 --- a/.github/ISSUE_TEMPLATE/report-bug.md +++ b/.github/ISSUE_TEMPLATE/report-bug.md @@ -10,10 +10,10 @@ Please disclose security related issues privately to support@safing.io. **Pre-Submit Checklist**: -- Check known issues: - - [Windows](https://docs.safing.io/portmaster/install/windows#known-issues) - - [Linux](https://docs.safing.io/portmaster/install/linux#compatibility) -- Search for similar/existing issues on Github. +- Check applicable sources for existing issues: + - [Windows Known Issues](https://docs.safing.io/portmaster/install/windows#known-issues) + - [Linux Known Issues](https://docs.safing.io/portmaster/install/linux#compatibility) + - [Github Issues](../issues?q=is%3Aissue+label%3Abug) **What happened**: @@ -34,7 +34,8 @@ Paste debug information below: - General issue: Click on "Copy Debug Information" on the Settings page. - App related issue: Click on "Copy Debug Information" in the dropdown menu of an app in the Monitor view. -โš  Please check the "Unexpected Logs" and "Network Connections" sections in the preview mode for sensitive or otherwise private information and remove them! +โš  Please remove sensitive/private information from the "Unexpected Logs" and "Network Connections" sections. +This is easiest to do in the preview mode. Additional logs can be found here: - Linux: `/var/lib/portmaster/logs` diff --git a/.github/ISSUE_TEMPLATE/report-compatibility.md b/.github/ISSUE_TEMPLATE/report-compatibility.md index 1a273906..630fbf1c 100644 --- a/.github/ISSUE_TEMPLATE/report-compatibility.md +++ b/.github/ISSUE_TEMPLATE/report-compatibility.md @@ -6,17 +6,16 @@ labels: compatibility **Pre-Submit Checklist**: -- Check applicable sources for existing issues +- Check applicable sources for existing issues: - [Linux Compatibility](https://docs.safing.io/portmaster/install/linux#compatibility) - [VPN Compatibility](https://docs.safing.io/portmaster/install/status/vpn-compatibility) - - [Github Issues (all our repos)](https://github.com/issues?q=user%3Asafing) + - [Github Issues](../issues?q=is%3Aissue+label%3Ain%2Fcompatibility) -**Which Linux Distro, VPN Client or General Software is this about?**: - - +**What worked?** -**Does it work? If not, what happened?** + +**What did not work?** @@ -27,7 +26,8 @@ Paste debug information below if reporting a problem: - General issue: Click on "Copy Debug Information" on the Settings page. - App related issue: Click on "Copy Debug Information" in the dropdown menu of an app in the Monitor view. -โš  Please check the "Unexpected Logs" and "Network Connections" sections in the preview mode for sensitive or otherwise private information and remove them! +โš  Please remove sensitive/private information from the "Unexpected Logs" and "Network Connections" sections. +This is easiest to do in the preview mode. If needed, additional logs can be found here: - Linux: `/var/lib/portmaster/logs` diff --git a/.github/ISSUE_TEMPLATE/suggest-feature.md b/.github/ISSUE_TEMPLATE/suggest-feature.md index cd19abb2..81556352 100644 --- a/.github/ISSUE_TEMPLATE/suggest-feature.md +++ b/.github/ISSUE_TEMPLATE/suggest-feature.md @@ -9,3 +9,5 @@ labels: feature **Why do you and others need this?**: + + From 8e2de2029c675d1a7e958311eb5fb779f21d283b Mon Sep 17 00:00:00 2001 From: Daniel Date: Thu, 1 Apr 2021 16:25:14 +0200 Subject: [PATCH 4/5] Switch to absolute URLs --- .github/ISSUE_TEMPLATE/report-bug.md | 2 +- .github/ISSUE_TEMPLATE/report-compatibility.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/report-bug.md b/.github/ISSUE_TEMPLATE/report-bug.md index 0c7e0252..fe211908 100644 --- a/.github/ISSUE_TEMPLATE/report-bug.md +++ b/.github/ISSUE_TEMPLATE/report-bug.md @@ -13,7 +13,7 @@ Please disclose security related issues privately to support@safing.io. - Check applicable sources for existing issues: - [Windows Known Issues](https://docs.safing.io/portmaster/install/windows#known-issues) - [Linux Known Issues](https://docs.safing.io/portmaster/install/linux#compatibility) - - [Github Issues](../issues?q=is%3Aissue+label%3Abug) + - [Github Issues](https://github.com/safing/portmaster/issues?q=is%3Aissue+label%3Abug) **What happened**: diff --git a/.github/ISSUE_TEMPLATE/report-compatibility.md b/.github/ISSUE_TEMPLATE/report-compatibility.md index 630fbf1c..0a4e4509 100644 --- a/.github/ISSUE_TEMPLATE/report-compatibility.md +++ b/.github/ISSUE_TEMPLATE/report-compatibility.md @@ -9,7 +9,7 @@ labels: compatibility - Check applicable sources for existing issues: - [Linux Compatibility](https://docs.safing.io/portmaster/install/linux#compatibility) - [VPN Compatibility](https://docs.safing.io/portmaster/install/status/vpn-compatibility) - - [Github Issues](../issues?q=is%3Aissue+label%3Ain%2Fcompatibility) + - [Github Issues](https://github.com/safing/portmaster/issues?q=is%3Aissue+label%3Ain%2Fcompatibility) **What worked?** From 5f4693a1d301e7ed38076fc069b1ad1b8d9d5453 Mon Sep 17 00:00:00 2001 From: Daniel Date: Thu, 1 Apr 2021 17:13:15 +0200 Subject: [PATCH 5/5] Fix compatibility issue label name --- .github/ISSUE_TEMPLATE/report-compatibility.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/report-compatibility.md b/.github/ISSUE_TEMPLATE/report-compatibility.md index 0a4e4509..d6a9a6e6 100644 --- a/.github/ISSUE_TEMPLATE/report-compatibility.md +++ b/.github/ISSUE_TEMPLATE/report-compatibility.md @@ -1,7 +1,7 @@ --- name: "๐Ÿ“ Make a Compatibility Report" about: Report Portmaster in/compatibility with Linux Distros, VPN Clients or general Software -labels: compatibility +labels: "in/compatibility" --- **Pre-Submit Checklist**: