From d854646c8176c7ae9c1925366afd664cb9b4f298 Mon Sep 17 00:00:00 2001 From: Nikita Serba Date: Tue, 18 Aug 2026 19:25:58 +0200 Subject: [PATCH 1/3] Create feature_request.md template Add a feature request template for GitHub issues. --- .github/ISSUE_TEMPLATE/feature_request.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..98c039a --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,20 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: '' +labels: enhancement +assignees: sandsbit + +--- + +**Is your feature request related to a problem? Please describe.**
+A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +**Describe the solution you'd like**
+A clear and concise description of what you want to happen. + +**Describe alternatives you've considered**
+A clear and concise description of any alternative solutions or features you've considered. + +**Additional context**
+Add any other context or screenshots about the feature request here. From af9d7c23b9dbb3e73c275a1622b56b67d14c62cf Mon Sep 17 00:00:00 2001 From: Nikita Serba Date: Tue, 18 Aug 2026 19:26:22 +0200 Subject: [PATCH 2/3] Add bug report issue template --- .github/ISSUE_TEMPLATE/bug_report.md | 31 ++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..3cf5bff --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,31 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: bug +assignees: sandsbit + +--- + +**Describe the bug**
+A clear and concise description of what the bug is. + +**Steps to reproduce**
+Steps to reproduce the behavior: +1. Go to '...' +2. Click on '....' +3. Scroll down to '....' +4. See error + +**Expected behavior**
+A clear and concise description of what you expected to happen. + +**Screenshots**
+If applicable, add screenshots to help explain your problem. + +**Desktop (please complete the following information):**
+ - Platform: [e.g. macOS] + - Version [e.g. 1.0] + +**Additional context**
+Add any other context about the problem here. From 9f0a5211e69e21f0548851b9b5c10604818992ae Mon Sep 17 00:00:00 2001 From: Nikita Serba Date: Tue, 18 Aug 2026 19:28:17 +0200 Subject: [PATCH 3/3] Create pull request template Add a pull request template for contributors to follow. --- .github/pull_request_template.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/pull_request_template.md diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..b14fa68 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,27 @@ + + +## Description + + +## Motivation and Context + + + +## How Has This Been Tested? + + + + +## Screenshots (if appropriate): + +## Types of changes + +- [ ] Bug fix (non-breaking change which fixes an issue) +- [ ] New feature (non-breaking change which adds functionality) +- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) + +## Checklist: + + +- [ ] My code follows the code style of this project. +- [ ] My change requires a change to the documentation.