ce21e6e34e
- Simplify Operating System dropdown to only Windows, macOS, and Linux - Add new required Architecture field (x86_64, arm64) - Add new required Package Type field (exe, msi, dmg, deb, rpm, flatpak, snap, appimage) - Make Reproduction Steps field required - Remove trailing whitespace from placeholder text
90 lines
3.0 KiB
YAML
90 lines
3.0 KiB
YAML
name: "Bug report"
|
|
description: "Use this template if you're running into issues with Windows, macOS, or Linux (native package) version."
|
|
body:
|
|
- type: checkboxes
|
|
id: unique
|
|
attributes:
|
|
label: "This issue is unique."
|
|
options:
|
|
- label: "I have used the [search tool](https://github.com/ONLYOFFICE/DesktopEditors/issues?q=) and did not find an issue describing my bug."
|
|
required: true
|
|
- type: dropdown
|
|
id: os
|
|
attributes:
|
|
label: Operating System
|
|
description: "If you know this bug occurs on multiple operating systems, select all you have tested."
|
|
multiple: true
|
|
options:
|
|
- Windows
|
|
- macOS
|
|
- Linux
|
|
validations:
|
|
required: true
|
|
- type: dropdown
|
|
id: architecture
|
|
attributes:
|
|
label: Architecture
|
|
description: "Select the architecture of the package you are using."
|
|
options:
|
|
- x86_64
|
|
- arm64
|
|
validations:
|
|
required: true
|
|
- type: dropdown
|
|
id: package-type
|
|
attributes:
|
|
label: Package Type
|
|
description: "Select the package type you are using."
|
|
options:
|
|
- exe
|
|
- msi
|
|
- dmg
|
|
- deb
|
|
- rpm
|
|
- flatpak
|
|
- snap
|
|
- appimage
|
|
validations:
|
|
required: true
|
|
- type: input
|
|
id: version
|
|
attributes:
|
|
label: "Version information"
|
|
description: "Please provide the exact version of the app you are using. If you don't know it, look at the 'About' tab in the ONLYOFFICE Desktop Editors. Before submitting an issue, ensure you are using the [latest version of the app](https://www.onlyoffice.com/en/download-desktop.aspx)."
|
|
placeholder: "Example: 6.3.1.56"
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: expected
|
|
attributes:
|
|
label: "Expected Behavior"
|
|
description: "What did you expect to happen? Did this work in previous versions of DesktopEditors?"
|
|
placeholder: "Example: When the text color is set to white it should be white, regardless of the font size."
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: actual
|
|
attributes:
|
|
label: "Actual Behavior"
|
|
description: "What did actually happen?"
|
|
placeholder: "Example: When the text size is 16 and the font color is set to white then the text is gray."
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: repro-steps
|
|
attributes:
|
|
label: "Reproduction Steps"
|
|
description: "Provide information on how to reproduce this bug. Make sure your instructions are clear."
|
|
placeholder: |
|
|
Example:
|
|
1. Change font size to 16
|
|
2. Set font color to white
|
|
3. Observe as the text is not white
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: additional
|
|
attributes:
|
|
label: "Additional information"
|
|
description: "If you have any screenshots, videos, or other information that you feel is necessary to explain the issue, feel free to attach them here."
|
|
placeholder: "Example: My screen resolution is 1920x1080p" |