Skip to content

Commit

Permalink
Add Issue Template
Browse files Browse the repository at this point in the history
  • Loading branch information
smashedr committed Jul 3, 2024
1 parent 9a47552 commit 2c3d58c
Show file tree
Hide file tree
Showing 4 changed files with 61 additions and 2 deletions.
39 changes: 39 additions & 0 deletions .github/ISSUE_TEMPLATE/0-bug.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: "⚠️ Report an Issue"
description: "Something Not Working Right? Please let us know..."
title: "[Bug] "
labels: ["bug"]
assignees:
- smashedr

body:
- type: markdown
attributes:
value: |
All bugs that we can verify will be fixed. Thank you for taking the time to make this report!
- type: input
id: website
validations:
required: false
attributes:
label: Site Link
description: Please provide a link to the site you are having issues on if possible.
placeholder: https://example.com/

- type: textarea
id: description
validations:
required: true
attributes:
label: Details
description: Please Describe the Issue you are Experiencing.
placeholder: Provide as many details as you can...

- type: textarea
id: logs
validations:
required: true
attributes:
label: Paste Support Information
description: Open the Extension Options, Scroll to the Bottom, Click Copy Support Information and Paste Below.
render: shell
21 changes: 21 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
blank_issues_enabled: true
contact_links:
- name: Request a Feature
about: Request a New Feature or Enhancement in the Discussions.
url: https://github.com/cssnr/link-extractor/discussions/new?category=feature-requests

- name: Ask a Question
about: Ask a General Question or start a Discussions.
url: https://github.com/cssnr/link-extractor/discussions/new?category=q-a

- name: Join the Discord Server
about: Chat with us about Issues, Features, Questions and More...
url: https://discord.gg/wXy6m2X8wY

- name: Submit Feedback
about: Send General Feedback Anonymously.
url: https://cssnr.github.io/feedback

- name: View More Apps
about: View Additional Apps we have Created.
url: https://cssnr.github.io/
2 changes: 0 additions & 2 deletions src/js/options.js
Original file line number Diff line number Diff line change
Expand Up @@ -483,14 +483,12 @@ async function copySupport(event) {
const permissions = await chrome.permissions.getAll()
const local = window.localStorage
const result = [
'```',
`${manifest.name} - ${manifest.version}`,
navigator.userAgent,
`permissions.origins: ${JSON.stringify(permissions.origins)}`,
`options: ${JSON.stringify(options)}`,
`links-table: ${local['DataTables_links-table_/html/links.html']}`,
`domains-table: ${local['DataTables_domains-table_/html/links.html']}`,
'```',
]
await navigator.clipboard.writeText(result.join('\n'))
showToast('Support Information Copied.')
Expand Down
1 change: 1 addition & 0 deletions tests/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ async function scrollPage() {
await screenshot('popup')

await page.locator('#linksNoWrap').click()
await new Promise((resolve) => setTimeout(resolve, 500))
await screenshot('popup')

// await page.locator('[href="../html/options.html"]').click()
Expand Down

0 comments on commit 2c3d58c

Please sign in to comment.