Skip to content

Commit

Permalink
Compile with 1.21.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jpenilla committed Jan 2, 2025
1 parent badc3e1 commit e18b1ea
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
Minecraft server mod/plugin to show TPS, MSPT, and other information in the tab menu, boss bar, and action bar.

Current supported platforms:
- [Paper](https://papermc.io)/Spigot API (Minecraft versions 1.8.8-1.21.3+)
- [Paper](https://papermc.io)/Spigot API (Minecraft versions 1.8.8-1.21.4+)
- [Sponge](https://spongepowered.org) 12+
- [Fabric](https://fabricmc.net/) (Minecraft 1.21.3, requires [Fabric API](https://modrinth.com/mod/fabric-api))
- [NeoForge](https://neoforged.net/) (Minecraft 1.21.3)
- [Fabric](https://fabricmc.net/) (Minecraft 1.21.4, requires [Fabric API](https://modrinth.com/mod/fabric-api))
- [NeoForge](https://neoforged.net/) (Minecraft 1.21.4)

## Features

Expand Down
2 changes: 1 addition & 1 deletion fabric/src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@
"fabricloader": ">=0.15.11",
"fabric": "*",
"fabric-permissions-api-v0": "*",
"minecraft": "1.21.3"
"minecraft": "1.21.4"
}
}
2 changes: 1 addition & 1 deletion gradle/build-logic/src/main/kotlin/ext.kt
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ val bukkitVersions = listOf(
"1.18.2",
"1.19.4",
"1.20.6",
"1.21.3",
"1.21.4",
)
12 changes: 6 additions & 6 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ adventure = "4.17.0"
adventurePagination = "4.0.0-SNAPSHOT"
adventurePlatform = "4.3.4"
cloud = "2.0.0"
cloudMinecraft = "2.0.0-beta.9"
cloudModded = "2.0.0-beta.9"
cloudMinecraft = "2.0.0-beta.10"
cloudModded = "2.0.0-beta.10"
cloudSponge = "2.0.0-SNAPSHOT"
configurate = "4.1.2"
typesafeConfig = "1.4.3"
Expand All @@ -22,13 +22,13 @@ guava = "21.0"
bstats = "3.1.0"
paperApi = "1.16.5-R0.1-SNAPSHOT"
paperLib = "1.0.8"
fabricApi = "0.110.0+1.21.3"
fabricApi = "0.112.2+1.21.4"
fabricLoader = "0.16.9"
minecraft = "1.21.3"
minecraft = "1.21.4"
adventurePlatformMod = "6.1.0"
mixin = "0.8.7"
neoforge = "21.3.51-beta"
neoForm = "1.21.3-20241023.131943"
neoforge = "21.4.33-beta"
neoForm = "1.21.4-20241203.161809"

# buildSrc
indra = "3.1.3"
Expand Down
2 changes: 1 addition & 1 deletion neoforge/src/main/resources/META-INF/neoforge.mods.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ side = "BOTH"
[[dependencies.tabtps]]
modId = "minecraft"
type = "required"
versionRange = "[1.21.3]"
versionRange = "[1.21.4]"
ordering = "NONE"
side = "BOTH"

Expand Down
4 changes: 2 additions & 2 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ pluginManagement {
}

plugins {
id("quiet-fabric-loom") version "1.8-SNAPSHOT"
id("quiet-fabric-loom") version "1.9-SNAPSHOT"
id("org.gradle.toolchains.foojay-resolver-convention") version "0.9.0"
id("net.neoforged.moddev.repositories") version "2.0.49-beta"
id("net.neoforged.moddev.repositories") version "2.0.61-beta"
}

rootProject.name = "TabTPS"
Expand Down
2 changes: 1 addition & 1 deletion sponge/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ tabTPSPlatform {
publishMods.modrinth {
modLoaders.add("sponge")
minecraftVersions.addAll(
"1.21.3"
"1.21.4"
)
}

Expand Down

0 comments on commit e18b1ea

Please sign in to comment.