Skip to content

Commit f816b85

Browse files
1.21.5 Port
1 parent 78a09cd commit f816b85

File tree

45 files changed

+77
-659
lines changed

Some content is hidden

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

45 files changed

+77
-659
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,5 @@ run
2424
logs
2525

2626
Thumbs.db
27-
*.psd
27+
*.psd
28+
/src/main/generated/.cache/

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ BedrockIfy is a fabric Minecraft Mod that implements some useful Minecraft Bedro
33

44
## Features
55
- Bedrock-like loading screens with helpful tips.
6-
- Sheared Sheep Colors
76
- Third person eating animations.
87
- Position and "paper doll" overlay.
98
- Dynamic Inactive Hud Opacity.
@@ -18,7 +17,7 @@ BedrockIfy is a fabric Minecraft Mod that implements some useful Minecraft Bedro
1817
- Held item descriptions (enchantments, books and potions).
1918
- Reach-around block placement.
2019
- Quick armor swap.
21-
- Dying and Fallen Trees!
20+
- Dying Trees!
2221
- Bedrock Light block shading.
2322
- Disable flying momentum (Drift) in creative mode.
2423
- Stop elytra flying by pressing space on air.
@@ -58,7 +57,6 @@ You can find the built JARs inside BedrockIfy/build/libs
5857

5958
Here is a list of other Fabric Mods that can improve your BedrockLike Experience: (Note: some of these might not be updated to the latest version.)
6059
- [MidnightControls](https://github.com/TeamMidnightDust/MidnightControls) - Enables Controller support and other useful tweaks.
61-
- [Sheep Consistency](https://github.com/IMS212/sheepconsistency) Let's you see the color of sheared sheep.
6260
- [BedrockWaters](https://github.com/2Retr0/BedrockWaters) - Ports all Bedrock Edition biome specific water color.
6361
- [Snowy Leaves](https://github.com/Ashley1227/snowy-leaves) - Leaves will turn white while snowing.
6462
- [Fade In Chunks](https://github.com/johni0702/fade-in-chunks) Adds a Bedrock Edition style fading in animation for newly loaded chunks.

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id 'fabric-loom' version '1.9-SNAPSHOT'
2+
id 'fabric-loom' version '1.10-SNAPSHOT'
33
id 'maven-publish'
44
}
55

@@ -67,7 +67,7 @@ dependencies {
6767
modCompileOnly ("squeek.appleskin:appleskin-fabric:${project.apple_skin}") {
6868
transitive = false
6969
}
70-
modImplementation "maven.modrinth:detail-armor-bar:${project.dab_version}"
70+
modCompileOnly "maven.modrinth:detail-armor-bar:${project.dab_version}"
7171

7272
testImplementation 'org.junit.jupiter:junit-jupiter:5.8.1'
7373
modTestImplementation "maven.modrinth:iris:${project.iris_version}"

gradle.properties

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
org.gradle.jvmargs=-Xmx2048m
22
# Fabric Properties
33
# check these on https://fabricmc.net/develop/
4-
minecraft_version=1.21.4
5-
yarn_mappings=1.21.4+build.8
4+
minecraft_version=1.21.5
5+
yarn_mappings=1.21.5+build.1
66
loader_version=0.16.10
77

88
# Mod Properties
9-
mod_version = 1.10.2
9+
mod_version = 1.10.3
1010
maven_group = me.juancarloscp52
1111
archives_base_name = bedrockify
1212

1313
# Dependencies
14-
fabric_version=0.118.0+1.21.4
15-
modmenu_version=13.0.2
16-
cloth_config_version=17.0.144
14+
fabric_version=0.119.5+1.21.5
15+
modmenu_version=14.0.0-rc.2
16+
cloth_config_version=18.0.145
1717
apple_skin=mc1.21.3-3.0.6
1818
dab_version=2.6.3+1.21.3-fabric
1919
iris_version=1.7.1+1.21

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

src/main/generated/data/bedrockify/worldgen/configured_feature/fallen_birch_tree_c.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

src/main/generated/data/bedrockify/worldgen/configured_feature/fallen_oak_tree_c.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

src/main/generated/data/bedrockify/worldgen/configured_feature/fallen_spruce_tree_c.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

src/main/generated/data/bedrockify/worldgen/placed_feature/fallen_birch_tree_placed.json

Lines changed: 0 additions & 47 deletions
This file was deleted.

src/main/generated/data/bedrockify/worldgen/placed_feature/fallen_oak_tree_placed.json

Lines changed: 0 additions & 47 deletions
This file was deleted.

0 commit comments

Comments
 (0)