Replacing .md with the cool and improved .yaml
This commit is contained in:
parent
e95ddf7fb6
commit
47a106c011
|
@ -1,55 +0,0 @@
|
|||
---
|
||||
name: Bug report
|
||||
about: Report a reproducible bug or regression in Hydrus.
|
||||
title: ''
|
||||
labels: bug
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
<!--
|
||||
Please provide a clear and concise description of what the bug is (in the section _Steps to reproduce_).
|
||||
Include screenshots if needed.
|
||||
Please test using the latest Hydrus release to make sure your issue has not already been fixed. When you open an issue for older versions than the current one you might get told to update to the latest version first.
|
||||
If you are having issues with lag, please check this article first before opening an issue: https://hydrusnetwork.github.io/hydrus/help/reducing_lag.html
|
||||
-->
|
||||
|
||||
## Environment
|
||||
|
||||
Hydrus version:
|
||||
Platform:
|
||||
OS specifics:
|
||||
|
||||
<!--
|
||||
Hydrus version: please also state if you are running Hydrus via executable or from source. If you don't know what that means, you are very likely running via executable. If you are running from source, please include details on how (e.g., installed dependencies via pip, installed the AUR version etc.)
|
||||
Platform can be one of: Windows, Linux, macOS (or a combination)
|
||||
OS specifics: e.g. OS version, Linux distribution...
|
||||
-->
|
||||
|
||||
## What happens
|
||||
|
||||
<!--
|
||||
Describe the issue in a few sentences.
|
||||
-->
|
||||
|
||||
## Steps to reproduce
|
||||
|
||||
1.
|
||||
2.
|
||||
3.
|
||||
|
||||
<!--
|
||||
Issues without reproduction steps are likely to stall.
|
||||
-->
|
||||
|
||||
## Desired outcome
|
||||
|
||||
<!--
|
||||
Describe what you would actually expect to happen.
|
||||
-->
|
||||
|
||||
## Error message / Log file / Screenshots
|
||||
|
||||
<!--
|
||||
Please paste the error message or attach a log file if there's anything in there that seems relevant.
|
||||
-->
|
|
@ -0,0 +1,78 @@
|
|||
name: Bug report
|
||||
description: File a bug report
|
||||
title: "[Bug]: "
|
||||
labels: [bug]
|
||||
|
||||
body:
|
||||
- type: markdown
|
||||
attributes:
|
||||
value: |
|
||||
# Bug report
|
||||
Thanks for taking the time to file a bug report. Provide as much information as possible to help dev identify and solve the problem.
|
||||
|
||||
- type: input
|
||||
id: hydrus_version
|
||||
attributes:
|
||||
label: Hydrus version
|
||||
description: Your version of Hydrus. Kindly update to the latest version before filing a report.
|
||||
placeholder: v447 or just 447 are both acceptable.
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: dropdown
|
||||
id: install_method
|
||||
attributes:
|
||||
label: Install method
|
||||
description: Which install method did you use?
|
||||
options:
|
||||
- Linux executable
|
||||
- MacOS app
|
||||
- Windows extract
|
||||
- Windows installer
|
||||
- Running from source
|
||||
- Third party (AUR, Docker, Chocolatey, etc. Specify in comments)
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: dropdown
|
||||
id: os
|
||||
attributes:
|
||||
label: Operating system
|
||||
description: What operating system do you use?
|
||||
options:
|
||||
- Windows 10
|
||||
- Windows 11
|
||||
- Windows, older. (Specify in comments)
|
||||
- MacOS 11 "Big Sur" x86
|
||||
- MacOS 11 "Big Sur" ARM
|
||||
- MacOS 10.15 "Catalina"
|
||||
- MacOS, older (Specify in comments)
|
||||
- Linux (Specify distro and version in comments)
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
id: os_install
|
||||
attributes:
|
||||
label: Install and OS comments
|
||||
description: Optional comments about OS and installation method
|
||||
|
||||
- type: textarea
|
||||
id: bug_description
|
||||
attributes:
|
||||
label: Bug description and reproduction
|
||||
description: Describe your issue in as much detail as you can. When did it happen? How did it happen? Does it keep happening? You can also post relevant text files or images here.
|
||||
placeholder: |
|
||||
1.
|
||||
2.
|
||||
3.
|
||||
...
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
id: logs
|
||||
attributes:
|
||||
label: Log output
|
||||
description: Either copypaste relevant log sections here or upload the file in the bug description above.
|
||||
render: shell
|
Loading…
Reference in New Issue