2023-02-19 16:17:49 +03:00
|
|
|
# Copyright 2019-2023 Tauri Programme within The Commons Conservancy
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
|
2021-12-23 04:33:08 +03:00
|
|
|
name: 🐞 Bug Report
|
|
|
|
title: '[bug] '
|
|
|
|
description: Report a bug
|
2022-07-04 16:28:34 +03:00
|
|
|
labels: ['type: bug', 'status: needs triage']
|
2021-12-23 04:33:08 +03:00
|
|
|
|
|
|
|
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
|
2023-05-04 14:28:22 +03:00
|
|
|
description: A link to a reproduction repo or steps to reproduce the behaviour.
|
2021-12-23 04:33:08 +03:00
|
|
|
placeholder: |
|
2023-05-04 14:28:22 +03:00
|
|
|
Please provide a minimal reproduction or steps to reproduce, see this guide https://stackoverflow.com/help/minimal-reproducible-example
|
|
|
|
Why reproduction is required? see this article https://antfu.me/posts/why-reproductions-are-required
|
2021-12-23 04:33:08 +03:00
|
|
|
|
|
|
|
- type: textarea
|
|
|
|
id: expected-behavior
|
|
|
|
attributes:
|
|
|
|
label: Expected behavior
|
|
|
|
description: A clear description of what you expected to happen.
|
|
|
|
|
|
|
|
- type: textarea
|
|
|
|
id: info
|
|
|
|
attributes:
|
2023-12-19 00:15:04 +03:00
|
|
|
label: Full `tauri info` output
|
2021-12-23 04:33:08 +03:00
|
|
|
description: "Output of `npm run tauri info` or `cargo tauri info`"
|
2023-03-06 16:37:27 +03:00
|
|
|
render: text
|
2021-12-23 04:33:08 +03:00
|
|
|
validations:
|
|
|
|
required: true
|
|
|
|
|
|
|
|
- type: textarea
|
|
|
|
id: logs
|
|
|
|
attributes:
|
|
|
|
label: Stack trace
|
2023-03-06 16:37:27 +03:00
|
|
|
render: text
|
|
|
|
|
2021-12-23 04:33:08 +03:00
|
|
|
- type: textarea
|
|
|
|
id: context
|
|
|
|
attributes:
|
|
|
|
label: Additional context
|
|
|
|
description: Add any other context about the problem here.
|