From 50d57a4464b747cc32bc4fbd46099ed6797894d8 Mon Sep 17 00:00:00 2001 From: Lorenzo Yario Date: Sun, 2 Feb 2025 23:01:48 -0600 Subject: [PATCH] Update bug_report.md --- .github/ISSUE_TEMPLATE/bug_report.md | 91 +++++++++++++++++++--------- 1 file changed, 63 insertions(+), 28 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index ef9e03ab..27719854 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -1,34 +1,69 @@ ---- -name: Bug report -about: File a bug report for vichan -title: '' -labels: bug -assignees: '' +name: Bug Report +description: File a bug report for Vichan +title: "[BUG] " +labels: ["bug"] +assignees: [] ---- +body: + - type: markdown + attributes: + value: | + **Thank you for reporting a bug! Please provide as much detail as possible.** + + Before submitting, check the [Vichan Wiki](https://vichan.info) to see if there's already a solution to your problem. -**Describe the bug** -A clear and concise description of what the bug is. + - type: input + id: bug_description + attributes: + label: "Describe the bug" + description: "A clear and concise description of what the bug is." + placeholder: "Posting doesn't go through and displays a collation error. The exact error message given is the text below and I've attached a screenshot..." + validations: + required: true -**To Reproduce** -Steps to reproduce the behavior. Be as detailed as you can: -1. Go to '...' -2. Click on '....' -3. Scroll down to '....' -4. See error + - type: textarea + id: steps_to_reproduce + attributes: + label: "Steps to Reproduce" + description: "Provide step-by-step instructions to reproduce the issue." + placeholder: | + 1. Go to '...' + 2. Click on '....' + 3. Scroll down to '....' + 4. See error + render: markdown + validations: + required: true -**Expected behavior** -A clear and concise description of what you expected to happen. + - type: textarea + id: expected_behavior + attributes: + label: "Expected Behavior" + description: "What did you expect to happen?" + placeholder: "Expected behavior here..." + render: markdown + validations: + required: true -**Screenshots** -If applicable, add screenshots to help explain your problem. + - type: textarea + id: server_specs + attributes: + label: "Server Specifications" + description: "Provide details about your server environment. If you're unsure about any of this, you might be using shared hosting (Hostinger, HostGator, Serv00, etc). If so, put the name of your hosting provider here." + placeholder: | + - OS: (Ubuntu, CentOS, Windows Server 2025, etc.) + - PHP Version: (e.g., 7.4, 8.0, 8.1) + - Web Server: (Apache, NGINX, etc.) + - Database: (MySQL, MariaDB, etc.) + - Vichan Version: (5.2.0, 5.3.0 (dev branch), etc) + render: markdown + validations: + required: true -**Server Specs** -- OS used (Ubuntu, CentOS, Windows Server 2025, etc) -- PHP version -- Web server (Apache, NGINX, etc) -- MySQL or MariaDB? -- Vichan version -If you are unsure of your server specs, you might be using shared hosting (Hostinger, HostGator, Serv00, etc). If so, just list which service you are using. -**Additional context** -Add any other context about the problem here. + - type: textarea + id: additional_context + attributes: + label: "Additional Context" + description: "Any other details we should know?" + placeholder: "Add any additional context here..." + render: markdown