From 467bf712e7c48023d4195ec8130e536f58ec9a4c Mon Sep 17 00:00:00 2001 From: lunatic <56441863+lunaticwhat@users.noreply.github.com> Date: Tue, 17 May 2022 06:42:00 -0700 Subject: [PATCH] Issue template updated no more headache (#965) --- .github/ISSUE_TEMPLATE/a_bug_report.md | 32 +++++++++++++++++++ .github/ISSUE_TEMPLATE/a_issue_report.md | 27 ---------------- .github/ISSUE_TEMPLATE/b_bug_report.md | 21 ------------ ...eature_request.md => b_feature_request.md} | 0 .github/ISSUE_TEMPLATE/config.yml | 2 +- .github/ISSUE_TEMPLATE/custom.md | 10 ------ .../java/emu/grasscutter/BuildConfig.java | 7 ++++ 7 files changed, 40 insertions(+), 59 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/a_bug_report.md delete mode 100644 .github/ISSUE_TEMPLATE/a_issue_report.md delete mode 100644 .github/ISSUE_TEMPLATE/b_bug_report.md rename .github/ISSUE_TEMPLATE/{c_feature_request.md => b_feature_request.md} (100%) delete mode 100644 .github/ISSUE_TEMPLATE/custom.md create mode 100644 src/main/java/emu/grasscutter/BuildConfig.java diff --git a/.github/ISSUE_TEMPLATE/a_bug_report.md b/.github/ISSUE_TEMPLATE/a_bug_report.md new file mode 100644 index 000000000..273c04034 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/a_bug_report.md @@ -0,0 +1,32 @@ +--- +name: Bug report +about: Create a bug report to help us improve Grasscutter +title: '[Bug] ' +labels: 'bug' +assignees: '' + +--- + + + + + + +**Did you look for other closed issues that have the same problem?** + + +**Describe the bug** + + +**Which branch did you use?** + + + +**Screenshots** + + +**Additional context** + diff --git a/.github/ISSUE_TEMPLATE/a_issue_report.md b/.github/ISSUE_TEMPLATE/a_issue_report.md deleted file mode 100644 index f91283bdc..000000000 --- a/.github/ISSUE_TEMPLATE/a_issue_report.md +++ /dev/null @@ -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?** - - -**Describe the issue** - - -**Which version did you use?** - - - -**Screenshots** - - -**Additional context** - - diff --git a/.github/ISSUE_TEMPLATE/b_bug_report.md b/.github/ISSUE_TEMPLATE/b_bug_report.md deleted file mode 100644 index 8805c4ba4..000000000 --- a/.github/ISSUE_TEMPLATE/b_bug_report.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -name: Bug report -about: Create a bug report to help us improve Grasscutter -title: '[Bug] ' -labels: 'bug' -assignees: '' - ---- - - -**Describe the bug** - - -**Which branch did you use?** - - -**Screenshots** - - -**Additional context** - diff --git a/.github/ISSUE_TEMPLATE/c_feature_request.md b/.github/ISSUE_TEMPLATE/b_feature_request.md similarity index 100% rename from .github/ISSUE_TEMPLATE/c_feature_request.md rename to .github/ISSUE_TEMPLATE/b_feature_request.md diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 0c1065290..f117cab00 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -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. \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/custom.md b/.github/ISSUE_TEMPLATE/custom.md deleted file mode 100644 index 48d5f81fa..000000000 --- a/.github/ISSUE_TEMPLATE/custom.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -name: Custom issue template -about: Describe this issue template's purpose here. -title: '' -labels: '' -assignees: '' - ---- - - diff --git a/src/main/java/emu/grasscutter/BuildConfig.java b/src/main/java/emu/grasscutter/BuildConfig.java new file mode 100644 index 000000000..9ba41e55f --- /dev/null +++ b/src/main/java/emu/grasscutter/BuildConfig.java @@ -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"; + } + \ No newline at end of file