mirror of
https://github.com/tauri-apps/tauri.git
synced 2026-04-03 10:11:15 +02:00
* Issue template change rendering of 'platform and version' The previously used 'shell' is for shellscript, not for console output with commands. 'console' does render much more nicely text output and commands. * remove `tauri info` render Co-authored-by: Lucas Nogueira <lucas@tauri.studio>
60 lines
1.6 KiB
YAML
60 lines
1.6 KiB
YAML
name: 🐞 Bug Report
|
|
title: '[bug] '
|
|
description: Report a bug
|
|
labels: ['type: bug', 'status: needs triage']
|
|
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
## First of all
|
|
1. Please search for [existing issues](https://github.com/tauri-apps/tauri/issues?q=is%3Aissue) about this problem first.
|
|
2. Make sure `rustc` and all relevant Tauri packages are up to date.
|
|
3. Make sure it's an issue with Tauri and not something else you are using.
|
|
4. Remember to follow our community guidelines and be friendly.
|
|
|
|
- type: textarea
|
|
id: description
|
|
attributes:
|
|
label: Describe the bug
|
|
description: A clear description of what the bug is. Include screenshots if applicable.
|
|
placeholder: Bug description
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: reproduction
|
|
attributes:
|
|
label: Reproduction
|
|
description: Steps to reproduce the behavior.
|
|
placeholder: |
|
|
1. Go to ...
|
|
2. Click on ...
|
|
3. See error
|
|
|
|
- type: textarea
|
|
id: expected-behavior
|
|
attributes:
|
|
label: Expected behavior
|
|
description: A clear description of what you expected to happen.
|
|
|
|
- type: textarea
|
|
id: info
|
|
attributes:
|
|
label: Platform and versions
|
|
description: "Output of `npm run tauri info` or `cargo tauri info`"
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: logs
|
|
attributes:
|
|
label: Stack trace
|
|
render: shell
|
|
|
|
- type: textarea
|
|
id: context
|
|
attributes:
|
|
label: Additional context
|
|
description: Add any other context about the problem here.
|