Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add issues templates. #179

Merged
merged 2 commits into from
Feb 21, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
84 changes: 84 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
name: Bug report
description: File a bug report
title: "[Bug]: "
labels: bug
assignees: []
body:

- type: markdown
attributes:
value: |

- Please be aware that some devices are not compatible. Snapdragon chipsets tend to be more compatible than most.
(Examples: Exynos, Tensor, or other chipsets with a Mali GPU).

- Games with DRM are currently unsupported and the issue may be closed.

- If the bug was due to a hard crash, please attatch logs if possible.

- If a game shows a soft error about `Failed to initialize graphics...` or anything inside the emulation environment, try editing the container settings.
Note: Forums and subreddits will provide great help to configure certain games.

- type: textarea
id: describe-the-bug
attributes:
label: Describe the bug
placeholder: Describe what the bug is.
validations:
required: true

- type: textarea
id: what-actually-happened
attributes:
label: Steps to reproduce
placeholder: What are some steps to reliably reproduce the bug?
validations:
required: true

- type: textarea
id: expected-behavior
attributes:
label: Expected behavior
placeholder: What should have happened?
validations:
required: true

- type: input
id: pluvia-version
attributes:
label: Pluvia Version
description: "What version of Pluvia are you using? (ie: 1.3.0)"
validations:
required: true

- type: input
id: device-model
attributes:
label: Device Model
description: "What device did this happen with? (ie: Retroid Pocket 5)"
validations:
required: true

- type: input
id: device-android-version
attributes:
label: Android Version
description: "What android version did this occur on? (ie: Android 15)"
validations:
required: true

- type: textarea
id: additional-info
attributes:
label: Additional Information
description: "Is there any additional info to be added? (ie: logs)"
validations:
required: false
- type: checkboxes
id: issue-already-searched
attributes:
label: New Issue
description: Is the issue not already posted as an [Issue](https://github.com/oxters168/Pluvia/issues?q=is%3Aissue%20state%3Aopen%20label%3Abug) or in the [Project Board](https://github.com/users/oxters168/projects/1)
options:
- label: I have searched and did not find a similar issue to mine already listed.
required: true
27 changes: 27 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Feature Request
description: Something you'd like to see in Pluvia
title: "[Request]: "
labels: enhancement
assignees: []
body:
- type: markdown
attributes:
value: |
This template should only be used for feature requests you would like to see implemented in Pluvia.

- type: textarea
id: describe-the-request
attributes:
label: Feature Request
placeholder: It would be cool if...
validations:
required: true

- type: checkboxes
id: request-already-searched
attributes:
label: New Feature
description: Is the request not already posted as an [Issue](https://github.com/oxters168/Pluvia/issues?q=is%3Aissue%20state%3Aopen%20label%3Aenhancement) or in the [Project Board](https://github.com/users/oxters168/projects/1)
options:
- label: I have searched and did not find my request already listed.
required: true
1 change: 1 addition & 0 deletions .github/workflows/app-release-signed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
- '.gitignore'
- 'keyvalues/**'
- 'media/**'
- '.github/ISSUE_TEMPLATE/**'

jobs:
build:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/pluvia-pr-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
- '.gitignore'
- 'keyvalues/**'
- 'media/**'
- '.github/ISSUE_TEMPLATE/**'

jobs:
build:
Expand Down
Loading