Skip to content
This repository has been archived by the owner on Sep 28, 2023. It is now read-only.

Port to 1.19.4 #5

Open
wants to merge 14 commits into
base: 1.19.4/arch
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
79 changes: 79 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
name: Bug Report
description: Something doesn't seem correct and it might be a bug
labels: []
body:
- type: textarea
id: description
attributes:
label: Bug description
description: |
A clear and concise description of what the bug is.
Is it a game crash, an unexpected behavior, or has something gone wrong?
If applicable, add screenshots to help explain the bug.
placeholder: Tell us what you see!
validations:
required: true
- type: textarea
id: to-reproduce
attributes:
label: Steps to reproduce
description: Steps to reproduce the bug
placeholder: |
1. Create a world
2. Wait until midnight
3. Hug a creeper
validations:
required: true
- type: textarea
id: expected-behavior
attributes:
label: Expected behavior
description: What did you expect to happen?
placeholder: The creeper explodes
- type: textarea
id: actual-behavior
attributes:
label: Actual behavior
description: What actually happened?
placeholder: The creeper launches itself into the sky
- type: textarea
id: logs
attributes:
label: Relevant logs
description: |-
If it's a crash, send the corresponding Minecraft log in the `logs` folder, or crash report in the `crash-reports` folder, here.
Please upload the log file as an attachment, or upload the log to [pastebin](https://pastebin.com/) / [mclo.gs](https://mclo.gs/) and paste the url here.
Please refrain from pasting the entire log file directly.
Leave empty if there is none.
placeholder: https://pastebin.com/J6b7lKxR
- type: input
id: minecraft-version
attributes:
label: Minecraft version
description: The Minecraft version(s) where this bug occurs in.
placeholder: 1.15.2
validations:
required: true
- type: input
id: mod-version
attributes:
label: TemplateMod version
description: The TemplateMod version(s) where this bug occurs in.
placeholder: 1.2.3
validations:
required: true
- type: textarea
id: other-information
attributes:
label: Other information
description: Other useful information to this bug report, e.g. other related mod version(s). Leave empty if there is none.
placeholder: The issue only occurs if the player is in survival mode
- type: checkboxes
id: check-list
attributes:
label: Check list
options:
- label: I have verified that the issue persists in the latest version of the mod.
required: true
- label: I have searched the existing issues and confirmed that this is not a duplicate.
required: true
25 changes: 25 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Feature Request
description: Suggest an idea for this project
labels: []
body:
- type: textarea
id: motivation
attributes:
label: Motivation
description: Why do you want this feature? What problem do you want to solve? How can the suggested feature help with that?
placeholder: Tell us what you want!
validations:
required: true
- type: textarea
id: description
attributes:
label: Description
description: Describe the feature you want, as detailed as possible
placeholder: I want to see a fancy starry sky when I look up at midnight.
validations:
required: true
- type: textarea
id: other-information
attributes:
label: Other information
description: Other useful information to this feature request. Leave empty if there is none.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: Merged Artifacts
path: build/Merged/
path: build/libs/Merged/

- name: Publish to Github
uses: softprops/action-gh-release@v1
Expand Down
Loading