Skip to content

Commit 69fda88

Browse files
committed
Update to Minecraft 1.21.5
1 parent 168994d commit 69fda88

File tree

5 files changed

+19
-21
lines changed

5 files changed

+19
-21
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
![Code license (MIT)](https://img.shields.io/github/license/devs-immortal/bind-cmd)
44
![GitHub release (latest by date)](https://img.shields.io/github/v/release/devs-immortal/bind-cmd)
5-
![Minecraft 1.21.4](https://img.shields.io/badge/Minecraft-1.21.4-yellowgreen)
5+
![Minecraft 1.21.5](https://img.shields.io/badge/Minecraft-1.21.5-yellowgreen)
66

7-
The BindCommands mod allows players to bind Minecraft commands to specific keys on their keyboard, making it easier and faster to execute commands in the game. The mod is built using the [Fabric](https://fabricmc.net/) mod loader and is compatible with Minecraft versions from 1.16.5 up to 1.21.4.
7+
The BindCommands mod allows players to bind Minecraft commands to specific keys on their keyboard, making it easier and faster to execute commands in the game. The mod is built using the [Fabric](https://fabricmc.net/) mod loader and is compatible with Minecraft versions from 1.16.5 up to 1.21.5.
88

99
## Features
1010

@@ -14,7 +14,7 @@ The BindCommands mod allows players to bind Minecraft commands to specific keys
1414

1515
## Installation
1616

17-
1. Download and install [Fabric](https://fabricmc.net/use/installer/) for Minecraft 1.21.4.
17+
1. Download and install [Fabric](https://fabricmc.net/use/installer/) for Minecraft 1.21.5.
1818
2. Download BindCommands, [Mod Menu](https://github.com/TerraformersMC/ModMenu), and [Fabric Language Kotlin](https://github.com/FabricMC/fabric-language-kotlin) mods.
1919
3. Place the downloaded mod files in the "mods" folder located in your Minecraft game directory.
2020
4. Launch Minecraft with the Fabric mod loader and enjoy the mod!

build.gradle

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ plugins {
44
id 'org.jetbrains.kotlin.jvm'
55
}
66

7-
sourceCompatibility = JavaVersion.VERSION_17
8-
targetCompatibility = JavaVersion.VERSION_17
7+
sourceCompatibility = JavaVersion.VERSION_21
8+
targetCompatibility = JavaVersion.VERSION_21
99

1010
archivesBaseName = project.archives_base_name
1111
version = project.mod_version
@@ -44,19 +44,17 @@ processResources {
4444
// see http://yodaconditions.net/blog/fix-for-java-file-encoding-problems-with-gradle.html
4545
tasks.withType(JavaCompile) {
4646
it.options.encoding = "UTF-8"
47-
48-
// Minecraft 1.18.1 upwards uses Java 17.
49-
it.options.release = 17
47+
it.options.release = 21
5048
}
5149

5250
java {
5351
withSourcesJar()
5452
}
5553

5654
jar {
57-
from ("LICENSE.md") {
58-
rename { "${it}_${project.archivesBaseName}"}
55+
from("LICENSE.md") {
56+
rename { "${it}_${project.archivesBaseName}" }
5957
}
6058
}
6159

62-
compileKotlin.kotlinOptions.jvmTarget = "17"
60+
compileKotlin.kotlinOptions.jvmTarget = "21"

gradle.properties

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,20 @@ org.gradle.jvmargs=-Xmx4G
33

44
# Fabric Properties
55
# Check these on https://fabricmc.net/develop/
6-
minecraft_version=1.21.4
7-
yarn_mappings=1.21.4+build.8
6+
minecraft_version=1.21.5
7+
yarn_mappings=1.21.5-rc2+build.1
88
loader_version=0.16.10
99

1010
# Fabric API
11-
fabric_version=0.117.0+1.21.4
12-
loom_version=1.9-SNAPSHOT
11+
fabric_version=0.119.5+1.21.5
12+
loom_version=1.10-SNAPSHOT
1313

1414
# Mod Properties
15-
mod_version=1.5.5
15+
mod_version=1.6.0
1616
maven_group=net.immortaldevs
1717
archives_base_name=fabric-bind-cmd
1818

1919
# Kotlin
20-
kotlin_version=2.1.0
21-
fabric_kotlin_version=1.13.1+kotlin.2.1.10
22-
modmenu_version=13.0.2
20+
kotlin_version=2.1.20
21+
fabric_kotlin_version=1.13.2+kotlin.2.1.20
22+
modmenu_version=14.0.0-rc.2
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Mon Feb 17 20:11:00 UTC 2025
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12.1-bin.zip
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

src/main/resources/fabric.mod.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"fabric-api": "*",
3838
"fabric-language-kotlin": "*",
3939
"fabricloader": ">=0.15.0",
40-
"minecraft": ">=1.21.4 <1.22",
40+
"minecraft": ">=1.21.5 <1.22",
4141
"modmenu": "*"
4242
}
4343
}

0 commit comments

Comments
 (0)