Issue template updated no more headache (#965)

This commit is contained in:
lunatic 2022-05-17 06:42:00 -07:00 committed by GitHub
parent 51a68ba70c
commit 467bf712e7
7 changed files with 40 additions and 59 deletions

32
.github/ISSUE_TEMPLATE/a_bug_report.md vendored Normal file
View File

@ -0,0 +1,32 @@
---
name: Bug report
about: Create a bug report to help us improve Grasscutter
title: '[Bug] '
labels: 'bug'
assignees: ''
---
<!--- PLEASE ONLY USE this form for bug reporting -->
<!--- If you are looking for help or having problems while setting up Grasscutter, please visit the Discord server instead -->
<!--- 如果你在搭建 GrassCutter 时遇到问题需要寻求他人帮助,请加入 Discord 服务器询问。-->
<!--- Grasscutter Discord: https://discord.gg/grasscutter -->
<!--- Non bug related issues will be closed immediately to keep the workspace organized. -->
**Did you look for other closed issues that have the same problem?**
<!--- It will be easier for us to solve the bug if there is less duplication of this problem. -->
**Describe the bug**
<!--- A clear and concise description of what the bug is. -->
**Which branch did you use?**
<!--- Use `java -jar grasscutter.jar -version` to grab the version information -->
<!--- Example:
Grasscutter version: 1.1.1-dev
Git Hash: d80f313
-->
**Screenshots**
<!--- If applicable, add screenshots to help explain your problem. -->
**Additional context**
<!--- Add any other context about the problem here. -->

View File

@ -1,27 +0,0 @@
---
name: Issues
about: Create an issue if you need any help
title: '[Issue] '
labels: 'help wanted, question'
assignees: ''
---
**Did you look for other closed issues that have the same problem?**
<!--- It will be easier for us to solve your problem if there is less duplication of problems -->
**Describe the issue**
<!--- A clear and concise description of what the issue is. -->
**Which version did you use?**
<!--- Use `java -jar grasscutter.jar -version` to grab the version information -->
<!--- Example:
Grasscutter version: 1.1.1-dev
Git Hash: d80f313
-->
**Screenshots**
<!--- If applicable, add screenshots to help explain your problem. -->
**Additional context**
<!--- Add any other context about the problem here. -->

View File

@ -1,21 +0,0 @@
---
name: Bug report
about: Create a bug report to help us improve Grasscutter
title: '[Bug] '
labels: 'bug'
assignees: ''
---
<!--- ONLY USE this form for bug reporting. If you need help or support, please USE issue report form instead. -->
**Describe the bug**
<!--- A clear and concise description of what the bug is. -->
**Which branch did you use?**
<!--- Stable branch / Development branch -->
**Screenshots**
<!--- If applicable, add screenshots to help explain your problem. -->
**Additional context**
<!--- Add any other context about the problem here. -->

View File

@ -2,5 +2,5 @@ blank_issues_enabled: false
contact_links:
- name: Grasscutter Discord
url: https://discord.gg/T5vZU6UyeG
about: For support, discuss and and other things with Grasscutter.
about: If you are looking for help while using Grasscutter, please visit the Discord server.

View File

@ -1,10 +0,0 @@
---
name: Custom issue template
about: Describe this issue template's purpose here.
title: ''
labels: ''
assignees: ''
---

View File

@ -0,0 +1,7 @@
package emu.grasscutter;
public class BuildConfig {
public static final String VERSION = "1.1.2-dev";
public static final String GIT_HASH = "b0aa294";
}