From 6fa91cc5b5f52c7544e0dc6f1b95d052b1a1557c Mon Sep 17 00:00:00 2001 From: GalvinPython Date: Mon, 8 Jun 2026 13:08:03 +0100 Subject: [PATCH 1/2] chore: update to 26.1.1 --- build.gradle | 13 +++++++++++++ gradle.properties | 10 +++++----- gradle/wrapper/gradle-wrapper.properties | 2 +- src/main/resources/fabric.mod.json | 2 +- 4 files changed, 20 insertions(+), 7 deletions(-) diff --git a/build.gradle b/build.gradle index 253bd8a..9ef9dbc 100644 --- a/build.gradle +++ b/build.gradle @@ -16,6 +16,17 @@ repositories { // Loom adds the essential maven repositories to download Minecraft and libraries from automatically. // See https://docs.gradle.org/current/userguide/declaring_repositories.html // for more information about repositories. + exclusiveContent { + forRepository { + maven { + name = "Modrinth" + url = "https://api.modrinth.com/maven" + } + } + filter { + includeGroup "maven.modrinth" + } + } } dependencies { @@ -26,6 +37,8 @@ dependencies { // Fabric API. This is technically optional, but you probably want it anyway. implementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_api_version}" + // Add the no chat restrictions plugin so my British self can actually use commands - they're blocked on LAN worlds (why?) + implementation "maven.modrinth:no-chat-restrictions:UfoLVpJV" } processResources { diff --git a/gradle.properties b/gradle.properties index 349c259..a8c1b27 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,14 +4,14 @@ org.gradle.parallel=true # Fabric Properties # check these on https://fabricmc.net/develop -minecraft_version=26.1 -loader_version=0.18.4 -loom_version=1.15-SNAPSHOT +minecraft_version=26.1.1 +loader_version=0.19.3 +loom_version=1.16-SNAPSHOT # Mod Properties -mod_version=1.0.5+26.1 +mod_version=1.0.5+26.1.1 maven_group=me.imgalvin.playerfinder archives_base_name=player-finder # Dependencies -fabric_api_version=0.144.0+26.1 +fabric_api_version=0.145.4+26.1.1 diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 23449a2..dbc3ce4 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-9.2.1-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.0-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 9047a34..47eecec 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -21,7 +21,7 @@ }, "depends": { "fabricloader": ">=0.17.3", - "minecraft": "26.1", + "minecraft": "26.1.1", "java": ">=25", "fabric-api": ">=0.139.5" } From e2d6e62209baafd4a6abe1f8a3ee5dc9bcb5f30a Mon Sep 17 00:00:00 2001 From: GalvinPython Date: Mon, 8 Jun 2026 13:15:09 +0100 Subject: [PATCH 2/2] chore: update to 26.1.2 --- README.md | 4 ++++ gradle.properties | 6 +++--- src/main/resources/fabric.mod.json | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index feaca21..686866e 100644 --- a/README.md +++ b/README.md @@ -29,6 +29,10 @@ Also: This mod requires the **Fabric API** and Fabric Loader **0.16.0 or higher PS: *You cannot use this mod on servers that don't use this mod. The commands are created server-side* # Changelog +## 1.0.5 (26.1) +* For 26.1 compatibility +* Updated dependencies + ## 1.0.4 (1.21.11) * For 1.21.11 compatibility * Updated dependencies diff --git a/gradle.properties b/gradle.properties index a8c1b27..5e2a03c 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,14 +4,14 @@ org.gradle.parallel=true # Fabric Properties # check these on https://fabricmc.net/develop -minecraft_version=26.1.1 +minecraft_version=26.1.2 loader_version=0.19.3 loom_version=1.16-SNAPSHOT # Mod Properties -mod_version=1.0.5+26.1.1 +mod_version=1.0.5+26.1.2 maven_group=me.imgalvin.playerfinder archives_base_name=player-finder # Dependencies -fabric_api_version=0.145.4+26.1.1 +fabric_api_version=0.151.0+26.1.2 diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 47eecec..a10fd15 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -21,7 +21,7 @@ }, "depends": { "fabricloader": ">=0.17.3", - "minecraft": "26.1.1", + "minecraft": "26.1.2", "java": ">=25", "fabric-api": ">=0.139.5" }