Skip to content

Commit 8191709

Browse files
authored
Merge branch 'GregTechCEu:1.20.1' into 1.20.1
2 parents 5a1fda3 + f00e45c commit 8191709

File tree

229 files changed

+5027
-1419
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

229 files changed

+5027
-1419
lines changed

.github/ISSUE_TEMPLATE/000-bug-report.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@ name: Bug Report
22
description: Report a bug where something is not working as expected.
33
labels: [ "bug" ]
44
body:
5+
- type: checkboxes
6+
id: existing-issue
7+
attributes:
8+
label: Checked for existing issues
9+
description: You have checked for existing reports of this issue, open or closed.
10+
options:
11+
- label: "I have checked for existing issues, and have found none."
12+
required: true
13+
- type: checkboxes
14+
id: tried-latest
15+
attributes:
16+
label: Tested latest version
17+
description: You have checked that this issue occurs on the latest version of GTCEu.
18+
options:
19+
- label: "I have checked that this occurs on the latest version."
20+
required: true
521
- type: input
622
id: version
723
attributes:
@@ -41,6 +57,14 @@ body:
4157
- "Unsure"
4258
validations:
4359
required: true
60+
- type: textarea
61+
id: other-mods
62+
attributes:
63+
label: Other Installed Mods
64+
description: List all mods you have installed here, or the name of the modpack you're playing.
65+
placeholder: "Example: ATM9, Embeddium, NuclearCraft Neoteric, AE2..."
66+
validations:
67+
required: true
4468
- type: textarea
4569
id: expected
4670
attributes:

.github/pull_request_template.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
## What
2+
_This section describes what this PR is about. It should be a clear and concise description concerning what this PR is for, why this PR is needed, and why it should be accepted._
3+
_Linking an issue can be used alternatively to writing a description._
4+
5+
## Implementation Details
6+
_Any implementations in this PR that should be carefully looked over, or that could/should have alternate solutions proposed._
7+
8+
## Outcome
9+
_A short description of what this PR added/fixed/changed/removed._
10+
_For correct linking of issues please use any of the Closes/Fixes/Resolves keywords. Example: When a PR is fixing a bug use "Fixes: #number-of-bug"_
11+
12+
## Additional Information
13+
_This section is for screenshots to demonstrate any GUI or rendering changes, or any other additional information that reviewers should be aware of._
14+
15+
## Potential Compatibility Issues
16+
_This section is for defining possible compatibility issues. It must be used when there are API changes, item/block/material/machine changes, or recipe changes._
17+
18+
**Please fill in as much useful information as possible. Also, please remove all unused sections, including this and the other explanations.**

CHANGELOG.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
# ChangeLog
22

3-
Version: 1.1.2.a
3+
Version: 1.1.3.a
4+
5+
### ADDITIONS:
6+
- added Creative Chest, Creative Tank
47

58
### FIXES:
6-
- fixed crash when opening a GUI with many slots
9+
- fixed crashes related to KubeJS recipe loading
10+
- fixed ore block maceration not working
11+
- fixed high tier tools (duranium, neutronium) not working
12+
- fixed electric furnace / multismelter recipes not working
13+
- fixed transformers always having 1A storage
14+
15+
### CHANGES:
16+
- replaced Tungstensteel coils with RTM-Alloy coils
17+
- updated Russian translation

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ org.gradle.jvmargs = -Xmx6G
33
# Mod Info
44
mod_id = gtceu
55
mod_name = GregTech
6-
mod_version = 1.1.2.a
6+
mod_version = 1.1.3.a
77
mod_description = GregTech CE Unofficial, ported from 1.12.2
88
mod_license = LGPL-3.0 license
99
mod_url = https://github.com/GregTechCEu/GregTech-Modern/

gradle/scripts/dependencies.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ dependencies {
3131
modApi(include("com.tterrag.registrate:Registrate:${forge.versions.registrate.get()}"))
3232

3333
// Create and its dependencies
34-
modImplementation("com.simibubi.create:create-${libs.versions.minecraft.get()}:${forge.versions.createForge.get()}:all") { transitive = false }
35-
modImplementation forge.flywheel
34+
modCompileOnly("com.simibubi.create:create-${libs.versions.minecraft.get()}:${forge.versions.createForge.get()}:all") { transitive = false }
35+
modCompileOnly forge.flywheel
3636

3737
// JEI
3838
modCompileOnly(forge.jei.common.api) { transitive = false }

src/generated/resources/assets/gtceu/compass/nodes/blocks/coil_block.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"gtceu:cupronickel_coil_block",
88
"gtceu:kanthal_coil_block",
99
"gtceu:nichrome_coil_block",
10-
"gtceu:tungstensteel_coil_block",
10+
"gtceu:rtm_alloy_coil_block",
1111
"gtceu:hssg_coil_block",
1212
"gtceu:naquadah_coil_block",
1313
"gtceu:trinium_coil_block",

src/generated/resources/assets/gtceu/compass/nodes/generation/basalt.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117
],
118118
"page": "gtceu:generation/basalt",
119119
"position": [
120-
-150,
120+
-50,
121121
50
122122
],
123123
"pre_nodes": [

src/generated/resources/assets/gtceu/compass/nodes/generation/deepslate.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,8 @@
117117
],
118118
"page": "gtceu:generation/deepslate",
119119
"position": [
120-
-100,
121-
50
120+
-150,
121+
100
122122
],
123123
"pre_nodes": [
124124
"gtceu:generation/ore"

src/generated/resources/assets/gtceu/compass/nodes/generation/diorite.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117
],
118118
"page": "gtceu:generation/diorite",
119119
"position": [
120-
-150,
120+
-200,
121121
150
122122
],
123123
"pre_nodes": [

src/generated/resources/assets/gtceu/compass/nodes/generation/endstone.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@
118118
"page": "gtceu:generation/endstone",
119119
"position": [
120120
-200,
121-
150
121+
100
122122
],
123123
"pre_nodes": [
124124
"gtceu:generation/ore"

0 commit comments

Comments
 (0)