Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
51 changes: 43 additions & 8 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,42 @@ body:
value: |
Thanks for taking the time to file a bug report! Please fill out the sections below so we can reproduce and address the issue quickly.

- type: input
id: app_version
attributes:
label: App version
description: The version of Jottre where you observed the bug.
placeholder: e.g. 2.6.8
validations:
required: true

- type: dropdown
id: platform
attributes:
label: Platform
description: The platform where the bug occurred.
options:
- iOS
- iPadOS
- macOS
validations:
required: true

- type: input
id: platform_version
attributes:
label: Platform version
description: The version of the platform where the bug occurred.
placeholder: e.g. 17.4
validations:
required: true

- type: textarea
id: given
attributes:
label: Given
description: What is the precondition for this bug to occur? Include app version, platform (iOS, iPadOS, macOS), and platform version.
placeholder: |
- App version: 2.6.8
- Platform: iPadOS
- Platform version: 17.4
- Additional context: ...
description: What is the precondition for this bug to occur? Include any additional context not covered by the fields above.
placeholder: Describe the state of the app and any relevant setup before the bug occurs.
validations:
required: true

Expand Down Expand Up @@ -60,14 +86,23 @@ body:
validations:
required: true

- type: textarea
id: media
attributes:
label: Logs, screenshots, or video
description: Attach any logs, screenshots, or screen recordings that help illustrate the bug.
placeholder: Drag and drop files here, or paste logs as text.
validations:
required: false

- type: checkboxes
id: acknowledgements
attributes:
label: Acknowledgements
options:
- label: I have read and accept the code of conduct
- label: I have read and accept the [code of conduct](../../CODE_OF_CONDUCT.md)
required: true
- label: I have read and accept the contribution guidelines
- label: I have read and accept the [contribution guidelines](../../CONTRIBUTING.md)
required: true
- label: I have already looked at existing issues related to this bug
required: true
25 changes: 23 additions & 2 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,15 @@ body:
validations:
required: true

- type: textarea
id: alternatives
attributes:
label: Alternatives considered
description: What other approaches did you consider, and why is the proposed solution preferred?
placeholder: Describe any workarounds or alternative designs you have thought about.
validations:
required: false

- type: textarea
id: value
attributes:
Expand All @@ -35,14 +44,26 @@ body:
validations:
required: true

- type: checkboxes
id: platforms
attributes:
label: Platforms
description: Which platforms should this feature target?
options:
- label: iOS
- label: iPadOS
- label: macOS
validations:
required: true

- type: checkboxes
id: acknowledgements
attributes:
label: Acknowledgements
options:
- label: I have read and accept the code of conduct
- label: I have read and accept the [code of conduct](../../CODE_OF_CONDUCT.md)
required: true
- label: I have read and accept the contribution guidelines
- label: I have read and accept the [contribution guidelines](../../CONTRIBUTING.md)
required: true
- label: I have already looked at existing issues related to this feature
required: true
Loading