Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Issue Template #957

Merged
merged 6 commits into from
Dec 20, 2024
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
87 changes: 87 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
name: "Bug Report [NEW]"
oddstr13 marked this conversation as resolved.
Show resolved Hide resolved
description: "Report an issue with the software."
title: "[Bug]: "
labels: ["bug"]
body:
- type: textarea
id: summary
attributes:
label: "Summary"
description: "Provide a short description of the issue."
placeholder: "e.g., App crashes when opening a file"
BotBlake marked this conversation as resolved.
Show resolved Hide resolved
validations:
required: true

- type: textarea
id: steps_to_reproduce
attributes:
label: "Steps to Reproduce"
description: "Provide detailed steps to reproduce the issue."
placeholder: |
e.g.,
1. Open the app.
2. Click on the file.
3. The app crashes.
validations:
required: true

- type: input
id: os
attributes:
label: "Operating System"
description: "Specify the operating system you are using."
placeholder: "e.g., Ubuntu 24.04"

- type: input
id: jellyfin_server
BotBlake marked this conversation as resolved.
Show resolved Hide resolved
attributes:
label: "Jellyfin Server Version"
description: "Specify the version of the Jellyfin server you're using. If you're using an unstable build, please include the commit hash."
placeholder: "e.g., 10.9 or 10.10"

- type: input
id: kodi_version
attributes:
label: "Kodi Version"
description: "Specify the Kodi version you're using."
placeholder: "e.g., 20.0"

- type: dropdown
id: addon_mode
attributes:
label: "Addon Mode"
description: "Select how you're using the addon."
options:
oddstr13 marked this conversation as resolved.
Show resolved Hide resolved
- "Addon-mode"
- "Direct-path mode ('native')"
validations:
required: true

- type: textarea
id: logs
attributes:
label: "Logs"
description: "Please provide the logs."
placeholder: "Paste your logs here..."
BotBlake marked this conversation as resolved.
Show resolved Hide resolved
render: "bash"
BotBlake marked this conversation as resolved.
Show resolved Hide resolved
validations:
required: true

- type: textarea
id: server_logs
attributes:
label: "Server Logs"
description: "Please provide the server logs."
BotBlake marked this conversation as resolved.
Show resolved Hide resolved
placeholder: "Paste your server logs here..."
render: "bash"
BotBlake marked this conversation as resolved.
Show resolved Hide resolved
validations:
required: false

- type: textarea
id: additional_info
attributes:
label: "Additional Information"
description: "Provide any other relevant information."
placeholder: "e.g., Additional context or setup details"
BotBlake marked this conversation as resolved.
Show resolved Hide resolved
validations:
required: false
BotBlake marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
---
name: Bug report
oddstr13 marked this conversation as resolved.
Show resolved Hide resolved
about: Create a report to help us improve
title: ''
labels: bug
assignees: ''

---

**Describe the bug**
<!-- A clear and concise description of what the bug is. -->

Expand All @@ -18,6 +27,7 @@
<!-- If applicable, add screenshots to help explain your problem. -->

**System (please complete the following information):**

- OS: [e.g. Android, Debian, Windows]
- Jellyfin Version: [e.g. 10.0.1]
- Kodi Version: [e.g. 18.3]
Expand Down
Loading