initial commit

This commit is contained in:
2025-09-03 12:25:06 +00:00
parent f67abb34c7
commit 0dab520d45
17 changed files with 3834 additions and 0 deletions

50
.github/ISSUE_TEMPLATE/bug_report.yml vendored Normal file
View File

@@ -0,0 +1,50 @@
---
name: Bug Report
description: The following form provides context for your submitted issue.
title: '[Bug]: '
labels:
- review
- bug
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out the below report.
- type: input
id: version
attributes:
label: Version, or commit number if you are using a branch and stipulate your fork if one exists
description: "If you are running on a branch using git execute this command in order to fetch the latest commit ID: `git log -1`. Please also stipulate if you are using a forked version and include a link to the fork source code."
placeholder: "0.1"
validations:
required: true
- type: textarea
id: what-happened
attributes:
label: What happened?
description: Also tell us, what did you expect to happen?
placeholder: A clear and concise description of what the bug is. Please include screenshots where relevant.
validations:
required: true
- type: textarea
id: reproduce
attributes:
label: How To Reproduce
description: How can we reproduce this issue? (as minimally and as precisely as possible)
placeholder: A clear and concise description of how to reproduce the issue.
validations:
required: true
- type: textarea
id: logs
attributes:
label: Relevant log output
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
render: shell
- type: checkboxes
id: terms
attributes:
label: Code of Conduct
description: By submitting this issue, you agree to follow our Code of Conduct as defined in `/CODE_OF_CONDUCT.md`.
options:
- label: I agree to follow this project's Code of Conduct
required: true

2
.github/ISSUE_TEMPLATE/config.yml vendored Normal file
View File

@@ -0,0 +1,2 @@
blank_issues_enabled: false

View File

@@ -0,0 +1,53 @@
name: Feature Request
description: The following form provides context for your requested feature.
title: '[Enhancement]: '
labels:
- review
- enhancement
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out the below report.
- type: input
id: version
attributes:
label: Version, or commit number if you are using a branch and stipulate your fork if one exists
description: "If you are running on a branch using git execute this command in order to fetch the latest commit ID: `git log -1`. Please also stipulate if you are using a forked version and include a link to the fork source code."
placeholder: "0.1"
validations:
required: true
- type: textarea
id: problem
attributes:
label: Is your feature request related to a problem?
placeholder: A clear and concise description of what the problem is. Ex. I'm always frustrated when
validations:
required: true
- type: textarea
id: solution
attributes:
label: Describe the solution you'd like
placeholder: 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
placeholder: A clear and concise description of any alternative solutions or features you've considered.
validations:
required: true
- type: textarea
id: context
attributes:
label: Additional context
placeholder: Add any other context or screenshots about the feature request here.
- type: checkboxes
id: terms
attributes:
label: Code of Conduct
description: By submitting this issue, you agree to follow our Code of Conduct as defined in `/CODE_OF_CONDUCT.md`.
options:
- label: I agree to follow this project's Code of Conduct
required: true