From 8145b20798e2ab19c452104e5099c5a02773af56 Mon Sep 17 00:00:00 2001 From: Jack Boswell Date: Thu, 31 Oct 2024 22:03:12 +1100 Subject: [PATCH 1/7] Create config.yml --- .github/ISSUE_TEMPLATE/config.yml | 65 +++++++++++++++++++++++++++++++ 1 file changed, 65 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 0000000..4d83024 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,65 @@ +blank_issues_enabled: true +contact_links: + - name: cosmic-applets + url: https://github.com/pop-os/cosmic-applets/issues + about: Concern all the applets living in the dock or the panel. + + - name: cosmic-comp + url: https://github.com/pop-os/cosmic-comp/issues + about: Responsible for composing your windows on the screen. If you see issues with the tilling features or your multiple displays, this is likely the place to go. + + - name: cosmic-edit + url: https://github.com/pop-os/cosmic-edit/issues + about: This is the issue tracker for COSMIC Text Editor. If you see issues with the text editor, report them here. + + - name: cosmic-files + url: https://github.com/pop-os/cosmic-files/issues + about: This is the issue tracker for COSMIC Files. If you see issues while navigating files, this is the place to go. + + - name: cosmic-settings + url: https://github.com/pop-os/cosmic-settings/issues + about: This is the issue tracker for COSMIC Settings. If you see issues while changing settings, this is the place to go. + + - name: cosmic-store + url: https://github.com/pop-os/cosmic-store/issues + about: This is the issue tracker for COSMIC Store. If you see issues with the app store, report them here. + + - name: cosmic-term + url: https://github.com/pop-os/cosmic-term/issues + about: This is the issue tracker for COSMIC Terminal. If you see issues with the terminal, report them here. + + - name: cosmic-panel + url: https://github.com/pop-os/cosmic-panel/issues + about: Contains the code to manage the dock and panel applets. You can see it as the compositor of applets. It is also responsible to draw the panel and dock at the right place (bottom, left, ect..). + + - name: cosmic-screenshot + url: https://github.com/pop-os/cosmic-screenshot/issues + about: This is the tool that help you take screenshots. + + - name: cosmic-workspaces-epoch + url: https://github.com/pop-os/cosmic-workspaces-epoch/issues + about: Responsible for the workspace overview. If you have an issue with workspaces, this is the place to go. + + - name: cosmic-greeter + url: https://github.com/pop-os/cosmic-greeter/issues + about: When your session is locked, or not opened yet, this is the window that will be shown. Basically the login screen. + + - name: cosmic-osd + url: https://github.com/pop-os/cosmic-osd/issues + about: Cosmic on screen display. This is for example, the audio notification when you change the volume, or the brightness one. + + - name: cosmic-applibrary + url: https://github.com/pop-os/cosmic-applibrary/issues + about: It is the application launched with super-a, that let you see what app are in your system, and launch them. + + - name: cosmic-store + url: https://github.com/pop-os/cosmic-store/issues + about: This is the issue tracker for COSMIC Store. If you see issues with the app store, report them here. + + - name: pop-launcher + url: https://github.com/pop-os/launcher/issues + about: Launched with the super key. It lets you search in your application, and display the result in a list. + + - name: cosmic-bg + url: https://github.com/pop-os/cosmic-bg/issues + about: If you notice issues with the wallpaper, this is the place to go. From 2e7a373ff241618a449e7a1900591fb1705b4b69 Mon Sep 17 00:00:00 2001 From: Jack Boswell Date: Thu, 31 Oct 2024 22:04:15 +1100 Subject: [PATCH 2/7] Update issue templates --- .github/ISSUE_TEMPLATE/bug_report.md | 38 ++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..dd84ea7 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,38 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: '' +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. + +**Desktop (please complete the following information):** + - OS: [e.g. iOS] + - Browser [e.g. chrome, safari] + - Version [e.g. 22] + +**Smartphone (please complete the following information):** + - Device: [e.g. iPhone6] + - OS: [e.g. iOS8.1] + - Browser [e.g. stock browser, safari] + - Version [e.g. 22] + +**Additional context** +Add any other context about the problem here. From 5c4fa4287e5d009bf23d034994357f6151a4a63f Mon Sep 17 00:00:00 2001 From: Jack Boswell Date: Thu, 31 Oct 2024 22:06:55 +1100 Subject: [PATCH 3/7] Update issue templates --- .github/ISSUE_TEMPLATE/bug_report.md | 10 +--------- .github/ISSUE_TEMPLATE/feature_request.md | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+), 9 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index dd84ea7..cd83d85 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -2,7 +2,7 @@ name: Bug report about: Create a report to help us improve title: '' -labels: '' +labels: bug assignees: '' --- @@ -25,14 +25,6 @@ If applicable, add screenshots to help explain your problem. **Desktop (please complete the following information):** - OS: [e.g. iOS] - - Browser [e.g. chrome, safari] - - Version [e.g. 22] - -**Smartphone (please complete the following information):** - - Device: [e.g. iPhone6] - - OS: [e.g. iOS8.1] - - Browser [e.g. stock browser, safari] - - Version [e.g. 22] **Additional context** Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..11fc491 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,20 @@ +--- +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. From 85a48f0f532658ce70859635f9ad01fb449734cd Mon Sep 17 00:00:00 2001 From: Jack Boswell Date: Thu, 31 Oct 2024 22:07:29 +1100 Subject: [PATCH 4/7] Update config.yml --- .github/ISSUE_TEMPLATE/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 4d83024..a162a11 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,4 +1,4 @@ -blank_issues_enabled: true +blank_issues_enabled: false contact_links: - name: cosmic-applets url: https://github.com/pop-os/cosmic-applets/issues From f8a0f29675f28baeb05212879f87df06423b25bd Mon Sep 17 00:00:00 2001 From: Jack Boswell Date: Thu, 31 Oct 2024 22:12:02 +1100 Subject: [PATCH 5/7] Update bug_report.md --- .github/ISSUE_TEMPLATE/bug_report.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index cd83d85..4900198 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -24,7 +24,7 @@ A clear and concise description of what you expected to happen. If applicable, add screenshots to help explain your problem. **Desktop (please complete the following information):** - - OS: [e.g. iOS] + - OS: [e.g. Pop!_OS 24.04] **Additional context** Add any other context about the problem here. From ba96994e7da2947510076477aca5ef20fa7b8629 Mon Sep 17 00:00:00 2001 From: Jack Boswell Date: Thu, 31 Oct 2024 23:10:24 +1100 Subject: [PATCH 6/7] Update config.yml --- .github/ISSUE_TEMPLATE/config.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index a162a11..9b7ab31 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -51,11 +51,7 @@ contact_links: - name: cosmic-applibrary url: https://github.com/pop-os/cosmic-applibrary/issues about: It is the application launched with super-a, that let you see what app are in your system, and launch them. - - - name: cosmic-store - url: https://github.com/pop-os/cosmic-store/issues - about: This is the issue tracker for COSMIC Store. If you see issues with the app store, report them here. - + - name: pop-launcher url: https://github.com/pop-os/launcher/issues about: Launched with the super key. It lets you search in your application, and display the result in a list. From be97a211e1017a884aa89fa9b150697addb07118 Mon Sep 17 00:00:00 2001 From: Jack Boswell Date: Mon, 4 Nov 2024 09:32:21 +1100 Subject: [PATCH 7/7] Update config.yml --- .github/ISSUE_TEMPLATE/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 9b7ab31..660d084 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -52,8 +52,8 @@ contact_links: url: https://github.com/pop-os/cosmic-applibrary/issues about: It is the application launched with super-a, that let you see what app are in your system, and launch them. - - name: pop-launcher - url: https://github.com/pop-os/launcher/issues + - name: cosmic-launcher + url: https://github.com/pop-os/cosmic-launcher/issues about: Launched with the super key. It lets you search in your application, and display the result in a list. - name: cosmic-bg