From ca8ac6e7b667e76f34c6d3d90d6a17be61380fc0 Mon Sep 17 00:00:00 2001 From: OLEGSHA Date: Wed, 12 Jan 2022 17:23:46 +0300 Subject: [PATCH] Added issue forms for GitHub --- .github/ISSUE_TEMPLATE/bug_report.yml | 49 ++++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/crashreport.yml | 41 +++++++++++++++++++++ 2 files changed, 90 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yml create mode 100644 .github/ISSUE_TEMPLATE/crashreport.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 0000000..c5bf5ad --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,49 @@ +name: Bug Report +description: Let us know about a problem +labels: [bug] +body: +- type: markdown + attributes: + value: | + Use this template to report identified problems. If the game suddenly crashed, and you need help identifying the cause of a crashreport, please use the Investigate Crashreport template instead. + + **Do not forget to give your issue a descriptive title.** +- type: textarea + attributes: + label: Steps to reproduce + description: | + What did you do just before the problem appeared, or where can it be observed? + + If the issue occurs unreliably, please estimate the probability of the crash. + placeholder: | + 1. Look at a cow + 2. Wait for the cow to look back + 3. The cow turns away after a minute + + The issue occurs approximately once every 10 attempts. + + Player inventory must be empty. Does not occur in multiplayer. Occurred inside a virtual machine. + validations: + required: true +- type: textarea + attributes: + label: Expected behaviour + description: | + What should happen? + placeholder: | + The cow should stare back indefinitely, because obviously it should, and because comedy. + validations: + required: true +- type: textarea + attributes: + label: Other information + description: What else can you tell us about this bug? + validations: + required: false +- type: textarea + attributes: + label: Crashreport + description: If you have a relevant crashreport, paste the contents of the crashreport file here + validations: + required: false + render: text diff --git a/.github/ISSUE_TEMPLATE/crashreport.yml b/.github/ISSUE_TEMPLATE/crashreport.yml new file mode 100644 index 0000000..16b4c57 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/crashreport.yml @@ -0,0 +1,41 @@ +name: Investigate Crashreport +description: Submit a crashreport to determine the problem +labels: [bug, crashreport] +body: +- type: markdown + attributes: + value: | + Use this template to submit crashreports for initial analisys. If you don't have a crashreport, or you have a good understanding of the underlying cause, please use the Bug Report template instead. + + Crashreports can be found in `/crashreports` (take notice of the timestamp). `` is `C:\Users\\AppData\Roaming\Progressia` on Windows when using the installer. + + **Do not forget to give your issue a descriptive title.** +- type: textarea + attributes: + label: Steps to reproduce + description: | + What did you do just before the crash? How could someone else reproduce it? What other context might be relevant? + + If the issue occurs unreliably, please estimate the probability of the crash. + placeholder: | + 1. Enter a new world + 2. Turn around + 3. Wait 5 minutes + 4. Game crashes half of the time + + Player inventory must be empty. Does not crash in multiplayer. Occurred inside a virtual machine. + validations: + required: true +- type: textarea + attributes: + label: Other information + description: What else can you tell us about this crashreport? + validations: + required: false +- type: textarea + attributes: + label: Crashreport + description: Paste the contents of the crashreport file here + validations: + required: true + render: text