mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2025-03-14 20:20:04 +03:00
chore: Add issue templates (#1431)
This commit is contained in:
parent
7a1e6e88a6
commit
4c356fc57b
3 changed files with 120 additions and 0 deletions
85
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
Normal file
85
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
Normal file
|
@ -0,0 +1,85 @@
|
|||
name: Bug report
|
||||
description: File a bug report to help us improve
|
||||
title: '[Bug]: '
|
||||
labels:
|
||||
- Bug
|
||||
- triage
|
||||
body:
|
||||
- type: markdown
|
||||
attributes:
|
||||
value: Thanks for taking the time to fill out this bug report!
|
||||
- type: textarea
|
||||
id: bug-description
|
||||
attributes:
|
||||
label: Bug description
|
||||
description: Actual Behavior
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: expectations
|
||||
attributes:
|
||||
label: Expectations
|
||||
description: Expected behavior
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: logs
|
||||
attributes:
|
||||
label: Relevant debug informations
|
||||
description: Can be a curl command, a log extract, ...
|
||||
render: shell
|
||||
- type: dropdown
|
||||
id: download-source
|
||||
attributes:
|
||||
label: How did you install VueTorrent?
|
||||
options:
|
||||
- Downloaded from GitHub releases
|
||||
- Fetched from latest-release branch
|
||||
- Fetched from nightly-release branch
|
||||
- Built from source
|
||||
- Using a third-party docker image (hotio or others)
|
||||
- Other (specify in env description)
|
||||
default: 0
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: environment
|
||||
attributes:
|
||||
label: Environment description
|
||||
value: |-
|
||||
Device type and name:
|
||||
OS:
|
||||
|
||||
PWA: Yes / No
|
||||
Running inside a container: Yes / No
|
||||
render: plain text
|
||||
validations:
|
||||
required: true
|
||||
- type: input
|
||||
id: qbit-version
|
||||
attributes:
|
||||
label: qBittorrent version
|
||||
description: Can be found at the bottom of the settings view
|
||||
placeholder: x.x.x
|
||||
validations:
|
||||
required: true
|
||||
- type: input
|
||||
id: vuetorrent-version
|
||||
attributes:
|
||||
label: VueTorrent version
|
||||
description: Can be found at the bottom of the settings view
|
||||
placeholder: x.x.x
|
||||
validations:
|
||||
required: true
|
||||
- type: checkboxes
|
||||
id: agreements
|
||||
attributes:
|
||||
label: Agreements
|
||||
description: 'Before creating a new issue, I already checked the following:'
|
||||
options:
|
||||
- label: The bug still occurs on the nightly build
|
||||
required: true
|
||||
- label: The bug still occurs on the latest version of qBittorrent
|
||||
required: true
|
||||
- label: A similar issue doesn't already exist
|
||||
required: true
|
5
.github/ISSUE_TEMPLATE/config.yml
vendored
Normal file
5
.github/ISSUE_TEMPLATE/config.yml
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
blank_issues_enabled: true
|
||||
contact_links:
|
||||
- name: Discord
|
||||
url: https://discord.gg/KDQP7fR467
|
||||
about: "Join the discord server to contact us directly"
|
30
.github/ISSUE_TEMPLATE/feature_request.yml
vendored
Normal file
30
.github/ISSUE_TEMPLATE/feature_request.yml
vendored
Normal file
|
@ -0,0 +1,30 @@
|
|||
name: Feature Request
|
||||
description: Suggest a new feature for this project
|
||||
title: '[Feature Request]: '
|
||||
labels:
|
||||
- triage
|
||||
- Feature
|
||||
body:
|
||||
- type: textarea
|
||||
id: description
|
||||
attributes:
|
||||
label: Description
|
||||
description: A clear and concise description of the problem or missing capability
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: proposition
|
||||
attributes:
|
||||
label: Describe the solution you'd like
|
||||
description: If you have a solution in mind, please describe it.
|
||||
- type: textarea
|
||||
id: alternatives
|
||||
attributes:
|
||||
label: Describe alternatives you've considered
|
||||
description: Have you considered any alternative solutions or workarounds?
|
||||
- type: checkboxes
|
||||
attributes:
|
||||
label: Complementary informations
|
||||
options:
|
||||
- label: Is this feature already implemented in the default WebUI?
|
||||
required: false
|
Loading…
Add table
Reference in a new issue