Skip to content

Commit 549fc11

Browse files
committed
Merge branch '1.20.1' of https://github.com/iouter/GregTech-Modern into 1.20.1
2 parents 8191709 + ea9fbac commit 549fc11

File tree

79 files changed

+2332
-315
lines changed

Some content is hidden

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

79 files changed

+2332
-315
lines changed
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: build-on-push
2+
3+
on:
4+
pull_request:
5+
paths: ['src/**', '**.gradle', 'gradle.properties', 'gradlew**', 'gradle/**']
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
env:
11+
GITHUB_ACTION_NUMBER: ${{ vars.GITHUB_RUN_NUMBER }}
12+
GITHUB_RUN_NUMBER: ${{ vars.GITHUB_RUN_NUMBER }}
13+
steps:
14+
- uses: actions/checkout@v3
15+
with:
16+
submodules: true
17+
18+
- uses: actions/setup-java@v3
19+
with:
20+
java-version: '17'
21+
distribution: 'adopt'
22+
23+
- name: Validate Gradle wrapper
24+
uses: gradle/wrapper-validation-action@v1
25+
26+
- name: Grant execute permission for gradlew
27+
run: chmod +x gradlew
28+
29+
- name: Build
30+
uses: gradle/[email protected]
31+
with:
32+
arguments: build
33+
34+
- name: Upload Artifact
35+
uses: actions/[email protected]
36+
with:
37+
name: build output
38+
path: build/libs/*
39+
retention-days: 30

CHANGELOG.md

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

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

85
### FIXES:
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
6+
- fixed processing array being unable to form

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.3.a
6+
mod_version = 1.1.3.b
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/

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

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

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

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

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-
-150,
121-
100
120+
-200,
121+
150
122122
],
123123
"pre_nodes": [
124124
"gtceu:generation/ore"

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

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

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

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

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

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

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

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

0 commit comments

Comments
 (0)