diff --git a/.github/ISSUE_TEMPLATE/Question.yaml b/.github/ISSUE_TEMPLATE/Question.yaml new file mode 100644 index 0000000..cd5a340 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/Question.yaml @@ -0,0 +1,42 @@ +name: Question +description: Ask a question about html5-qrcode library to the authors +title: "" +labels: [Stackoverflow-Question] + +body: +- type: textarea + attributes: + label: Describe the Question. + description: A clear and concise description of what the question is. + validations: + required: true +- type: textarea + attributes: + label: Link to stackoverflow. + description: Please raise this question in [stackoverflow.com](https://stackoverflow.com/questions/ask) for faster answer and add the link here. + validations: + required: false +- type: textarea + attributes: + label: Context about your web application. + description: Where are you using this and how. It'd be helpful if you provide your usage code example. + validations: + required: false +- type: textarea + attributes: + label: Put your code here. + description: Code example here + validations: + required: false +- type: textarea + attributes: + label: Environment (please complete the following information). + description: Device [e.g. iPhone6], OS [e.g. iOS], Browser [e.g. chrome, safari], Version [e.g. 22] + validations: + required: true +- type: textarea + attributes: + label: Description + description: Add any other context about the problem here. + validations: + required: false \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index dd84ea7..0000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -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. diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml new file mode 100644 index 0000000..a248e8d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -0,0 +1,47 @@ +name: Bug Report +description: Create a report to help us improve. +title: "" +labels: [] +body: +- type: textarea + attributes: + label: Describe the bug + description: A clear and concise description of what the bug is. + validations: + required: true +- type: textarea + attributes: + label: To Reproduce. + description: Steps to reproduce the behavior. Go to '...' --> Click on '....' --> Scroll down to '....' --> See error. + validations: + required: false +- type: textarea + attributes: + label: Expected behavior + description: A clear and concise description of what you expected to happen. + validations: + required: false +- type: textarea + attributes: + label: Screenshots. + description: If applicable, add screenshots to help explain your problem. + validations: + required: false +- type: textarea + attributes: + label: Environment (please complete the following information about Desktop). + description: OS [e.g. iOS] --> Browser [e.g. chrome, safari] --> Version [e.g. 22] + validations: + required: false +- type: textarea + attributes: + label: Environment (please complete the following information about Smartphone). + description: Device [e.g. iPhone6] --> OS [e.g. iOS8.1] --> Browser [e.g. stock browser, safari] --> Version [e.g. 22]. + validations: + required: false +- type: textarea + attributes: + label: Additional context. + description: Add any other context about the problem here. + validations: + required: false diff --git a/.github/ISSUE_TEMPLATE/compatibility-issue.md b/.github/ISSUE_TEMPLATE/compatibility-issue.md deleted file mode 100644 index 9709caa..0000000 --- a/.github/ISSUE_TEMPLATE/compatibility-issue.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -name: Compatibility Issue -about: Report compatibility issue for a certain browser -title: Compatibility - [OS] [Browser] - [What is not working] -labels: compatibility -assignees: '' - ---- - -**Describe the bug** -A clear and concise description of what the bug is. - - What is not working and what is expected. - -**Describe the browser:** - - OS: [e.g. iOS, Android, MacOs or Windows] - - Browser [e.g. chrome, safari, edge, firefox] - - Version [e.g. 22] - -**Screenshots** -If applicable, add screenshots to help explain your problem. - -**Additional context** -Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/compatibility_issue.yaml b/.github/ISSUE_TEMPLATE/compatibility_issue.yaml new file mode 100644 index 0000000..c00363f --- /dev/null +++ b/.github/ISSUE_TEMPLATE/compatibility_issue.yaml @@ -0,0 +1,29 @@ +name: Compatibility Issue +description: Report compatibility issue for a certain browser. +title: "" +labels: [compatibility] +body: +- type: textarea + attributes: + label: Describe the bug + description: A clear and concise description of what the bug is( What is not working and what is expected). + validations: + required: true +- type: textarea + attributes: + label: Environment (Describe the browser). + description: OS [e.g. iOS, Android, MacOs or Windows] --> Browser [e.g. chrome, safari, edge, firefox] --> Version [e.g. 22] + validations: + required: true +- type: textarea + attributes: + label: Screenshots. + description: If applicable, add screenshots to help explain your problem. + validations: + required: false +- type: textarea + attributes: + label: Additional context. + description: Add any other context about the problem here. + validations: + required: false \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index a80dded..0000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -name: Feature request -about: Suggest an idea for this project -title: "[Feature Request] One liner for the request" -labels: enhancement, ferature-request -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. diff --git a/.github/ISSUE_TEMPLATE/feature_request.yaml b/.github/ISSUE_TEMPLATE/feature_request.yaml new file mode 100644 index 0000000..b598365 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yaml @@ -0,0 +1,29 @@ +name: Feature request +description: Suggest an idea for this project. +title: "<[Feature Request] One liner for the request>" +labels: [Enhancement, ferature-request] +body: +- type: textarea + 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 [...] + validations: + required: true +- type: textarea + attributes: + label: Describe the solution you'd like. + description: A clear and concise description of what you want to happen. + validations: + required: false +- type: textarea + attributes: + label: Describe alternatives you've considered + description: A clear and concise description of any alternative solutions or features you've considered. + validations: + required: false +- type: textarea + attributes: + label: Additional context. + description: Add any other context or screenshots about the feature request here. + validations: + required: false \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/question.md b/.github/ISSUE_TEMPLATE/question.md deleted file mode 100644 index 1a1a4ce..0000000 --- a/.github/ISSUE_TEMPLATE/question.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -name: Question -about: Ask a question about html5-qrcode library to the authors -title: '[Question]' -labels: 'stackoverflow-question' -assignees: '' - ---- - -**Describe the Question** -A clear and concise description of what the question is. - -**Link to stackoverflow** -Please raise this question in [stackoverflow.com](https://stackoverflow.com/questions/ask) for faster answer and add the link here. - -**Context about your web application** -Where are you using this and how. It'd be helpful if you provide your usage code example - -```js -// Code example here. -``` - -**Optional, Environment (please complete the following information):** - - Device: [e.g. iPhone6] - - OS: [e.g. iOS] - - Browser [e.g. chrome, safari] - - Version [e.g. 22] - -**Additional context** -Add any other context about the problem here.