Skip to content

Commit f310f5f

Browse files
authored
Merge branch 'mc1.20.1/dev' into mc1.20.1/mmc-5
2 parents 6c53f2c + 54046fc commit f310f5f

File tree

173 files changed

+10560
-3380
lines changed

Some content is hidden

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

173 files changed

+10560
-3380
lines changed

.github/workflows/build.yml

-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ jobs:
2121

2222
- name: Setup Gradle
2323
uses: gradle/actions/setup-gradle@v4
24-
with:
25-
gradle-home-cache-cleanup: true
2624

2725
- name: Validate Gradle Wrapper Integrity
2826
uses: gradle/actions/wrapper-validation@v3

build.gradle

+8-5
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ apply from: "gradle/property_loader.gradle"
1616

1717
boolean dev = System.getenv('RELEASE') == null || System.getenv('RELEASE').equals('false')
1818
ext.buildNumber = System.getenv('BUILD_NUMBER')
19-
String gitHash = "\"${calculateGitHash() + (hasUnstaged() ? "-modified" : "")}\""
19+
String gitHash = "${calculateGitHash() + (hasUnstaged() ? "-modified" : "")}"
2020

2121
base {
2222
archivesName = "create-${artifact_minecraft_version}"
@@ -34,8 +34,9 @@ if (ponderInWorkspace) {
3434
project.logger.lifecycle("MultiModWorkspace ${inMultiModWorkspace ? 'enabled' : 'disabled'} for project ${project.name}.")
3535
project.logger.lifecycle("Dependencies included in Workspace: [Ponder: ${ponderInWorkspace}]")
3636

37+
def refmap
3738
mixin {
38-
add sourceSets.main, 'create.refmap.json'
39+
refmap = add sourceSets.main, 'create.refmap.json'
3940
config 'create.mixins.json'
4041
}
4142

@@ -158,7 +159,7 @@ dependencies {
158159
modRuntimeOnly(jarJar("dev.engine-room.flywheel:flywheel-forge-${flywheel_minecraft_version}:${flywheel_version}") {
159160
version {
160161
strictly "[1.0,2.0)"
161-
prefer "1.0.1"
162+
prefer flywheel_version
162163
}
163164
})
164165
modRuntimeOnly("dev.engine-room.vanillin:vanillin-forge-${flywheel_minecraft_version}:${vanillin_version}")
@@ -302,9 +303,11 @@ tasks.named("sourcesJar") {
302303

303304
final slimJar = tasks.register("slimJar", Jar) {
304305
archiveClassifier = "slim"
305-
from sourceSets.main.output
306+
from(sourceSets.main.output)
307+
from(refmap)
306308
manifest.attributes([
307-
"Git-Hash": gitHash
309+
"MixinConfigs": "create.mixins.json",
310+
"Git-Hash" : gitHash
308311
])
309312
}
310313
obfuscation.reobfuscate(slimJar, sourceSets.main)

changelog.md

+42-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,48 @@ Create 6.0.2
44

55
#### Bug Fixes
66

7-
- Fix warning getting logged when cc: tweaked isn't installed
7+
- Fix warning getting logged when CC: Tweaked isn't installed
8+
- Fix crash when using LecternDisplayTarget #7579 #7600
9+
- Fix crash with fluids on contraptions
10+
- Fixed Shopping lists disappearing when clicking a different table cloth #7548
11+
- Fix mixin conflict with immersive portals
12+
- Fix factory gauge display sources causing crashes #7645
13+
- Fix Schematics sometimes rendering block entity elements when it shouldn't #7639
14+
- Fix Chiseled Bookshelves having wrong the blockstates when placed with a schematic cannon #7642
15+
- Fix horizontal crushing wheels not working properly #7445
16+
- Fix rotating shader not correctly handling color
17+
- Fix StockKeeperCategoryScreen filter buttons being clickable outside the window bounds #7668
18+
- Fix diving armor being trimmable (1.21.1)
19+
- Fix diving helmets not having aqua affinity #7433 (1.21.1)
20+
- Fix crash when using deployers wielding weapons #7704 (1.21.1)
21+
- Fix threshold switch UI causing a crash if opened too quickly after breaking the storage block it was looking at #7676
22+
- Fix rotated steam engines still working #7616
23+
- Fix button of contraption controls not rendering on contraptions #7701
24+
- Fix error/crash with CurrentFloorDisplaySource #7700
25+
- Fix the ability to redeem shopping lists at other shop networks #7657
26+
- Add bowls, mushroom stew and suspicious stew to the upright on belt tag
27+
- Fix shopping lists not working on servers
28+
- Fix rotation keybind not supporting mouse buttons
29+
- Fixed deployers not being able to harvest honeycomb with modded shears #4570
30+
- Safety check for schedule pointer exceeding the total count #7492
31+
- Fixed packager unpacking leading to item multiplication in special modded inventories #7426
32+
- Fixed redstone links not updating neighbours when toggling from receiver to transmitter #7715
33+
- Fix KineticStressDisplaySource not working properly #7659
34+
- Fix sequenced assembly not correctly handling errors (1.21.1)
35+
- The JEI search bar is now synchronised to the stock keeper search bar (configurable)
36+
- Fixed JEI plugin modifying ingredient fluid amounts for visual purposes
37+
- Fixed belts moving a sneaking player even when not wearing the full cardboard set #7691
38+
- Packagers can now read multiple lines on signs for package addressing
39+
- Factory Gauge request interval is now configurable
40+
- Fixed train map integration crashing when there are derailed trains or trains in another dimension (1.21.1)
41+
- Fixed cardboard armor rendering not respecting custom player scaling
42+
43+
#### API Changes
44+
45+
- Implement custom unpacking API
46+
- Implement InventoryIdentifier API
47+
- Lock Create's registrate instance behind a caller check, prevent other mods and addons from using it
48+
- Implement CreateRegistrateRegistrationCallback
849

950
------------------------------------------------------
1051
Create 6.0.1

gradle.properties

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ org.gradle.caching = true
77

88
# mod version info
99
# build_info_mod_version is the version that gets filled into CreateBuildInfo.java
10-
mod_version = 6.0.1
11-
build_info_mod_version = 6.0.1
10+
mod_version = 6.0.2
11+
build_info_mod_version = 6.0.2
1212
artifact_minecraft_version = 1.20.1
1313

1414
minecraft_version = 1.20.1
@@ -23,10 +23,10 @@ flywheel_minecraft_version = 1.20.1
2323
flywheel_version = 1.0.1
2424
vanillin_version = 1.0.0-beta-217
2525
jei_minecraft_version = 1.20.1
26-
jei_version = 15.19.0.85
26+
jei_version = 15.19.5.99
2727
curios_minecraft_version = 1.20.1
2828
curios_version = 5.3.1
29-
ponder_version = 1.0.39
29+
ponder_version = 1.0.51
3030
mixin_extras_version = 0.4.1
3131

3232
cc_tweaked_enable = true

0 commit comments

Comments
 (0)