From 19bbd1e9bb16bac7ed3790f5fca9968c4a8b5c22 Mon Sep 17 00:00:00 2001 From: Chris Date: Sun, 10 May 2026 17:41:31 +0200 Subject: [PATCH 1/2] doc: Add bug report template for Issues --- .github/ISSUE_TEMPLATE/bug_report.md | 29 ++++++++++++++++++++++++++++ 1 file changed, 29 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..9864e13 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,29 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: '' +assignees: '' + +--- + +**1. System/Environment:** +* Are you running on QEMU, VirtualBox, VMware, or Bare Metal? +* What OS are you compiling from? (e.g., Ubuntu 22.04, Windows/WSL2) +* Which branch/commit of BoredOS are you on? + +**2. Describe the Bug:** +A clear and concise description of what the bug is. What did you expect to happen, and what actually happened? + +**3. Steps to Reproduce:** +1. Boot the OS using 'make run' +2. Open application 'X' +3. Click on 'Y' +4. See error... + +**4. Logs and Screenshots:** +* Please attach screenshots of the kernel panic, GUI glitch, or terminal output. +* If you have serial logs, attach them as a `.txt` file or use a code block. Do NOT paste 500 lines of logs directly into the chat! + +**5. Additional Context:** +Add any other context about the problem here (e.g., "This only happens when my mouse is moving"). From 8bbcea7d3e9b49c3046a239a828e95b3eccbde9c Mon Sep 17 00:00:00 2001 From: Chris Date: Sun, 10 May 2026 17:44:04 +0200 Subject: [PATCH 2/2] doc: Add feature request template for Issues --- .github/ISSUE_TEMPLATE/feature_request.md | 23 +++++++++++++++++++++++ 1 file changed, 23 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..39e9279 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,23 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: '' +labels: '' +assignees: '' + +--- + +**1. Is your feature request related to a problem?** +A clear and concise description of what the problem is. (e.g., "I'm always frustrated when I can't save files persistently across reboots...") + +**2. Describe the Solution you'd like:** +A clear and concise description of what you want to happen. Are you proposing a new syscall, a new userspace app, or a kernel change? + +**3. Describe alternatives you've considered:** +A clear and concise description of any alternative solutions or features you've considered. (e.g., "Instead of ext2, we could just implement FAT32 first.") + +**4. Can you help build it?** +Let us know if this is just an idea you'd like to see, or if you plan on submitting a Pull Request for it yourself! + +**5. Additional Context:** +Add any other context, mockup screenshots, or links to technical documentation (e.g., OSDev Wiki links) here.