diff options
| author | Piplup <100526773+piplup55@users.noreply.github.com> | 2023-01-27 18:23:55 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-27 18:23:55 +0000 |
| commit | c7f9962ddee502030e790a0bfc0f949eaf5910c7 (patch) | |
| tree | f55102eb78659a20d5b35b5e8acaa0f3fb735aad /.github/ISSUE_TEMPLATE/bug_report.yml | |
| parent | 296c4a3d012b1203b1b7e58cdc34c334159e1599 (diff) | |
converts the templates into forms (#4068)
* Create bug_report.yml
* Update bug_report.yml
* Update bug_report.yml
* Create feature_request.yml
* Update feature_request.yml
* Update feature_request.yml
* Update feature_request.yml
* Update feature_request.yml
* a
* Update missing_cpu_instruction.yml
* Update missing_cpu_instruction.yml
* Update missing_cpu_instruction.yml
* Update missing_cpu_instruction.yml
* b
* addressed some of the feedback
* forget the label
* added missing text inputs
* formatting changes
* dropdown menu
added dropdown menu for os, idk if we will keep this
* addressed feedback
addressed the long overdue feedback, sorry about that
* added markdowns
everything should be addressed now i hope
* game version optional
made game version optional after further feedback
* feature request checkbox
Diffstat (limited to '.github/ISSUE_TEMPLATE/bug_report.yml')
| -rw-r--r-- | .github/ISSUE_TEMPLATE/bug_report.yml | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 00000000..a7560fc6 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,75 @@ +name: Bug Report +description: File a bug report +body: + - type: checkboxes + attributes: + label: Is there an existing issue for this? + description: Please search to see if an issue already exists for the bug you encountered. + options: + - label: I have searched the existing issues + required: true + - type: textarea + id: issue + attributes: + label: Description of Issue + description: What's the issue you encountered? + validations: + required: true + - type: textarea + id: repro + attributes: + label: Reproduction Steps + description: How can the issue be reproduced? + validations: + required: true + - type: textarea + id: log + attributes: + label: Log File + description: A log file will help our developers to better diagnose and fix the issue. + placeholder: Logs files can be found under "Logs" folder in Ryujinx program folder. You can drag and drop the log on to the text area + validations: + required: true + - type: input + id: os + attributes: + label: OS + placeholder: "Example: Windows 10" + validations: + required: true + - type: input + id: ryujinx-version + attributes: + label: Ryujinx version + placeholder: | + - *(e.g. 1.0.470)* + validations: + required: true + - type: input + id: game-version + attributes: + label: Game version + placeholder: | + - *(e.g. 1.1.1)* + validations: + required: false + - type: textarea + id: environment + attributes: + label: Environment? + value: | + - ##### CPU: *(e.g. i7-6700)* + - ##### GPU: *(e.g. NVIDIA RTX 2070)* + - ##### RAM: *(e.g. 16GB)* + - Applied Mods: [ Yes (Which ones) / No ] + validations: + required: true + - type: textarea + id: additional-context + attributes: + label: Additional context? + description: | + - Additional info about your environment: + - Any other information relevant to your issue. + validations: + required: false
\ No newline at end of file |
