4 changed files with 107 additions and 66 deletions
@ -1,39 +0,0 @@ |
|||
--- |
|||
name: Bug Report |
|||
about: Report broken or incorrect behaviour |
|||
labels: bug |
|||
--- |
|||
|
|||
## Summary |
|||
|
|||
<!-- A summary of your bug report --> |
|||
|
|||
## Reproduction Steps |
|||
|
|||
<!-- What you did to make it happen. Ideally there should be a short code snippet in this section to help reproduce the bug. --> |
|||
|
|||
## Expected Results |
|||
|
|||
<!-- What you expected to happen --> |
|||
|
|||
## Actual Results |
|||
|
|||
<!-- What actually happened. If there is a traceback, please show the entire thing. --> |
|||
|
|||
## Intents |
|||
|
|||
<!-- What intents are you using for your bot? This is the `discord.Intents` class you pass to the client --> |
|||
|
|||
## Checklist |
|||
|
|||
<!-- Put an x inside [ ] to check it, like so: [x] --> |
|||
|
|||
- [ ] I have searched the open issues for duplicates. |
|||
- [ ] I have shown the entire traceback, if possible. |
|||
- [ ] I have removed my token from display, if visible. |
|||
- [ ] I have provided the intents that my bot is using. |
|||
|
|||
## System Information |
|||
|
|||
<!-- Run `python -m discord -v` and paste this information below. --> |
|||
<!-- This command is available in v1.1.0 or higher. If you are unable to run this command, paste basic info (ie. Python version, library version, and your operating system --> |
@ -0,0 +1,67 @@ |
|||
name: Bug Report |
|||
about: Report broken or incorrect behaviour |
|||
labels: bug |
|||
issue_body: true |
|||
inputs: |
|||
- type: description |
|||
attributes: |
|||
value: > |
|||
Thanks for taking the time to fill out a bug. |
|||
If you want real-time support, consider joining our Discord instead at https://discord.gg/r3sSKJJ instead. |
|||
|
|||
Please note that this form is for bugs only! |
|||
- type: input |
|||
attributes: |
|||
label: Summary |
|||
description: A simple summary of your bug report |
|||
required: true |
|||
- type: textarea |
|||
attributes: |
|||
label: Reproduction Steps |
|||
required: true |
|||
description: > |
|||
What you did to make it happen. |
|||
Ideally there should be a short code snippet in this section to help reproduce the bug. |
|||
- type: textarea |
|||
attributes: |
|||
label: Expected Results |
|||
required: true |
|||
description: > |
|||
What did you expect to happen? |
|||
- type: textarea |
|||
attributes: |
|||
label: Actual Results |
|||
required: true |
|||
description: > |
|||
What actually happened? |
|||
- type: input |
|||
attributes: |
|||
label: Intents |
|||
required: true |
|||
description: > |
|||
What intents are you using for your bot? |
|||
This is the `discord.Intents` class you pass to the client. |
|||
- type: textarea |
|||
attributes: |
|||
label: System Information |
|||
required: true |
|||
description: > |
|||
Run `python -m discord -v` and paste this information below. |
|||
|
|||
This command required v1.1.0 or higher of the library. If this errors out then show some basic |
|||
information involving your system such as operating system and Python version. |
|||
- type: checkboxes |
|||
attributes: |
|||
label: Checklist |
|||
required: true |
|||
description: > |
|||
Let's make sure you've properly done due dilligence when reporting this issue! |
|||
choices: |
|||
- label: I have searched the open issues for duplicates. |
|||
required: true |
|||
- label: I have shown the entire traceback, if possible. |
|||
required: true |
|||
- label: I have removed my token from display, if visible. |
|||
required: true |
|||
- label: I have provided the intents that my bot is using. |
|||
required: true |
@ -1,27 +0,0 @@ |
|||
--- |
|||
name: Feature Request |
|||
about: Suggest a feature for this library |
|||
labels: feature request |
|||
--- |
|||
|
|||
## The Problem |
|||
|
|||
<!-- |
|||
What problem is your feature trying to solve? What becomes easier or possible when this feature is implemented? |
|||
--> |
|||
|
|||
## The Ideal Solution |
|||
|
|||
<!-- |
|||
What is your ideal solution to the problem? What would you like this feature to do? |
|||
--> |
|||
|
|||
## The Current Solution |
|||
|
|||
<!-- |
|||
What is the current solution to the problem, if any? |
|||
--> |
|||
|
|||
## Summary |
|||
|
|||
<!-- A short summary of your feature request. --> |
@ -0,0 +1,40 @@ |
|||
name: Feature Request |
|||
about: Suggest a feature for this library |
|||
labels: feature request |
|||
issue_body: true |
|||
inputs: |
|||
- type: input |
|||
attributes: |
|||
label: Summary |
|||
description: > |
|||
A short summary of what your feature request is. |
|||
required: true |
|||
- type: dropdown |
|||
attributes: |
|||
label: What is the feature request for? |
|||
required: true |
|||
choices: |
|||
- The core library |
|||
- discord.ext.commands |
|||
- discord.ext.tasks |
|||
- The documentation |
|||
- type: textarea |
|||
attributes: |
|||
label: The Problem |
|||
description: > |
|||
What problem is your feature trying to solve? |
|||
What becomes easier or possible when this feature is implemented? |
|||
required: true |
|||
- type: textarea |
|||
attributes: |
|||
label: The Ideal Solution |
|||
description: > |
|||
What is your ideal solution to the problem? |
|||
What would you like this feature to do? |
|||
required: true |
|||
- type: textarea |
|||
attributes: |
|||
label: The Current Solution |
|||
description: > |
|||
What is the current solution to the problem, if any? |
|||
required: false |
Loading…
Reference in new issue