diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index bbecaa1b5..000000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,56 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve -title: "[BUG]" -labels: bug -assignees: '' - ---- - -**Describe the bug** - - -**Steps to Reproduce** - -1. Go to '...' -2. Click on '....' -3. Scroll down to '....' -4. See error - -**Expected behavior** - - -**Screenshots** - - -**System information** - -- Operating system: [e.g. Manjaro/Windows 10] -- Version: [e.g. 1.6.2] -- Installation method: [e.g. pip/msi/AppImage] -- Python version: (if installed through `pip` or your package manager) - -**Additional context** - - -**Error message** - -| OS | Path | -|---------|----------------------------------------------------------| -| Windows | `C:\Users\\AppData\Local\Rare\Rare\cache\logs` | -| Linux | `/home//.cache/Rare/Rare/logs` | -| masOS | `/Users//Library/Caches/Rare/Rare/logs` | diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 000000000..ee9a061b6 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,104 @@ +name: Bug report +description: Create a report to help us improve +title: "[BUG] " +labels: [bug] +body: + - type: textarea + id: description + attributes: + label: Describe the bug + description: A clear and concise description of what the bug is. + validations: + required: true + + - type: textarea + id: steps + attributes: + label: Steps to Reproduce + description: Steps to reproduce the behavior. + placeholder: | + 1. Go to '...' + 2. Click on '....' + 3. Scroll down to '....' + 4. See error + validations: + required: true + + - type: textarea + id: expected + attributes: + label: Expected behavior + description: A clear and concise description of what you expected to happen. + validations: + required: true + + - type: textarea + id: screenshots + attributes: + label: Screenshots + description: If applicable, add screenshots to help explain your problem. + validations: + required: false + + - type: dropdown + id: os + attributes: + label: Operating system + options: + - Linux + - Windows + - macOS + validations: + required: true + + - type: input + id: version + attributes: + label: Version + placeholder: e.g. 1.6.2 + validations: + required: true + + - type: dropdown + id: install_method + attributes: + label: Installation method + options: + - pip + - AppImage + - MSI + - DMG + - Package manager + - Other + validations: + required: true + + - type: input + id: python_version + attributes: + label: Python version + description: If installed through `pip` or your package manager. + placeholder: e.g. 3.11.0 + validations: + required: false + + - type: textarea + id: logs + attributes: + label: Error message + description: | + Paste the relevant log output here. Logs can be found at: + - **Windows**: `C:\Users\\AppData\Local\Rare\Rare\cache\logs` + - **Linux**: `/home//.cache/Rare/Rare/logs` + - **macOS**: `/Users//Library/Caches/Rare/Rare/logs` + render: shell + validations: + required: false + + - type: textarea + id: additional + attributes: + label: Additional context + description: Add any other context about the problem here. + validations: + required: false diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index 829134c56..000000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -name: Feature request -about: Suggest an idea for this project -title: "[Feature Request]" -labels: feature-request -assignees: '' - ---- - -**Is your feature request related to a problem? Please describe.** - - -**Describe the solution you'd like** - - -**Describe alternatives you've considered** - - -**Additional context** - diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 000000000..55be4f9f5 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,37 @@ +name: Feature request +description: Suggest an idea for this project +title: "[Feature Request] " +labels: [feature-request] +body: + - type: textarea + id: problem + attributes: + label: Is your feature request related to a problem? Please describe. + description: A clear and concise description of what the problem is. + placeholder: "I'm always frustrated when [...]" + validations: + required: false + + - type: textarea + id: solution + attributes: + label: Describe the solution you'd like + description: A clear and concise description of what you want to happen. + validations: + required: true + + - type: textarea + id: alternatives + 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 + id: additional + attributes: + label: Additional context + description: Add any other context or screenshots about the feature request here. + validations: + required: false