-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
MrBunnyDc
committed
Sep 25, 2024
1 parent
23cb3c7
commit cb92c02
Showing
9 changed files
with
178 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
name: Bug Report | ||
description: Create a report to help us improve | ||
title: "[Bug]: " | ||
labels: | ||
- "bug" | ||
- "unconfirmed" | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! | ||
- type: dropdown | ||
id: minecraft-version | ||
attributes: | ||
label: Minecraft Version | ||
options: | ||
- 1.20.2 | ||
- 1.20.4 | ||
- 1.20.5 | ||
- 1.20.6 | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: mod-loader | ||
attributes: | ||
label: Mod Loader | ||
options: | ||
- NeoForge | ||
- Forge | ||
- Fabric | ||
validations: | ||
required: true | ||
- type: input | ||
id: mod-version | ||
attributes: | ||
label: WuidebookAPI Version | ||
validations: | ||
required: true | ||
- type: input | ||
id: loader-version | ||
attributes: | ||
label: ModLoader Version | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: What happened ? | ||
description: Please describe what happened or what you expected instead | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Reproduce Steps | ||
description: Please describe how to reproduce your issue | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Relevant log output | ||
description: Please copy and paste any relevant log output. If your game crashes, this must be a crash-report | ||
render: shell |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Feature Request | ||
description: Suggest an idea for thi smod | ||
title: "[Feature]: " | ||
labels: | ||
- "discussion" | ||
- "enhancement" | ||
- "feature" | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Please describe your suggestion ass specific as possible. This increases the chance this will be considered. | ||
- type: textarea | ||
id: what | ||
attributes: | ||
label: What ? | ||
description: What would you like to have changed or added to WuidebookAPI | ||
placeholder: Tell us what you want to see! | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: help | ||
attributes: | ||
label: Contributions | ||
description: Can you provide additional resources ? |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
name: Mod Incompatibility | ||
description: Use this if there is a bug/problem with another mod | ||
title: "[ModCompat]: " | ||
labels: | ||
- "bug" | ||
- "modcompat" | ||
- "unconfirmed" | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! | ||
Please make sure to add all required information. | ||
- type: dropdown | ||
id: minecraft-version | ||
attributes: | ||
label: Minecraft Version | ||
options: | ||
- 1.20.2 | ||
- 1.20.4 | ||
- 1.20.5 | ||
- 1.20.6 | ||
validations: | ||
required: true | ||
- type: input | ||
id: incompatibility-mod | ||
attributes: | ||
label: Incompatibility Mod | ||
description: Mod ID and version. | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: mod-loader | ||
attributes: | ||
label: Mod Loader | ||
options: | ||
- NeoForge | ||
- Forge | ||
- Fabric | ||
validations: | ||
required: true | ||
- type: input | ||
id: mod-version | ||
attributes: | ||
label: WuidebookAPI Version | ||
validations: | ||
required: true | ||
- type: input | ||
id: loader-version | ||
attributes: | ||
label: ModLoader Version | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Reproduce Steps | ||
description: Please describe how to reproduce your issue | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Relevant log output | ||
description: Please copy and paste any relevant log output. If your game crashes, this must be a crash-report | ||
render: shell |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
daysUntilClose: 21 | ||
responseRequiredLabel: NeedsInfo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: Gradle Build | ||
on: [push, pull_request] | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Setup Java JDK | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: '21' | ||
distribution: 'microsoft' | ||
cache: 'gradle' | ||
|
||
- name: Setup Gradle | ||
run: ./gradlew | ||
|
||
- name: Build | ||
run: ./gradlew build |
25 changes: 0 additions & 25 deletions
25
XPlat/src/main/java/de/wonejo/wuidebook/api/book/RegistrableBookInfo.java
This file was deleted.
Oops, something went wrong.