-
Notifications
You must be signed in to change notification settings - Fork 409
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
116 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
name: Bug Report | ||
description: Create a report to help us improve | ||
labels: [bug] | ||
assignees: [] | ||
body: | ||
- type: dropdown | ||
id: os | ||
attributes: | ||
label: What Operating System(s) are you running Yazi on? | ||
multiple: true | ||
options: | ||
- Linux X11 | ||
- Linux Wayland | ||
- macOS | ||
- Windows | ||
validations: | ||
required: true | ||
- type: input | ||
id: version | ||
attributes: | ||
label: Yazi version | ||
description: Please do a `yazi -V` and paste the output here. | ||
placeholder: "ex: yazi 0.1.5" | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: tried_main | ||
attributes: | ||
label: Did you try the latest main branch to see if the problem has already been fixed? | ||
options: | ||
- Yes, and the problem is still present | ||
- No, and I'll explain why below | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Describe the bug | ||
description: A clear and concise description of what the bug is | ||
placeholder: Tell us what happened | ||
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: to_repro | ||
attributes: | ||
label: To Reproduce | ||
description: Steps to reproduce the behavior | ||
placeholder: | | ||
Please include as much information as possible that can help to reproduce and understand the issue. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: config | ||
attributes: | ||
label: Configuration | ||
description: | | ||
Please include the relevant section(s) of your `yazi.toml`, `keymap.toml`, or `theme.toml` configuration file. | ||
You can enter "no config" if the issue happens without you having made a config file. | ||
- type: textarea | ||
id: other | ||
attributes: | ||
label: Anything else? | ||
description: | | ||
Add any other context about the problem here. You can attach screenshots by clicking | ||
this area to highlight it and then drag the files in. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Discord server / Telegram group | ||
url: https://github.com/sxyazi/yazi#discussion | ||
about: If you'd prefer more realtime conversation with the community | ||
- name: GitHub Discussions | ||
url: https://github.com/sxyazi/yazi/discussions | ||
about: When you have questions that are not bug reports or feature requests |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: Feature Request | ||
description: Suggest an idea for this project | ||
labels: [enhancement] | ||
assignees: [] | ||
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. Ex. I'm always frustrated when [...] | ||
validations: | ||
required: true | ||
- type: checkboxes | ||
id: contribute | ||
attributes: | ||
label: Will you be willing to contribute this feature? | ||
description: The feature has a much higher chance of completion if you are willing to get involved! | ||
options: | ||
- label: Yes, I will try to implement it | ||
- 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. | ||
- type: textarea | ||
id: context | ||
attributes: | ||
label: Additional context | ||
description: Add any other context or screenshots about the feature request here. |