Skip to content

Commit

Permalink
1.20.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jpenilla committed Jun 28, 2023
1 parent 79f5991 commit 958cf4a
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 15 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
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.19.4+)
- [Paper](https://papermc.io)/Spigot API (Minecraft versions 1.8.8-1.20.1+)
- [Sponge](https://spongepowered.org) 8+
- Fabric (Minecraft 1.19.4, requires [Fabric API](https://www.curseforge.com/minecraft/mc-mods/fabric-api))
- Fabric (Minecraft 1.20.1, requires [Fabric API](https://modrinth.com/mod/fabric-api))

## Features

Expand Down
3 changes: 2 additions & 1 deletion build-logic/src/main/kotlin/ext.kt
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,6 @@ val bukkitVersions = listOf(
"1.16.5",
"1.17.1",
"1.18.2",
"1.19.4"
"1.19.4",
"1.20.1"
)
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.14.7",
"fabric": "*",
"fabric-permissions-api-v0": "*",
"minecraft": "1.19.x"
"minecraft": "~1.20.1"
}
}
18 changes: 9 additions & 9 deletions gradle/libs.versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,38 +6,38 @@ metadata:
plugins:
net.kyori.blossom: 1.3.1
ca.stellardrift.localization: 5.0.1
net.minecrell.plugin-yml.bukkit: 0.5.2
net.minecrell.plugin-yml.bukkit: 0.5.3
xyz.jpenilla.run-paper: 2.1.0
org.spongepowered.gradle.plugin: 2.0.2

versions:
adventure: 4.13.1
adventure: 4.14.0
adventurePagination: 4.0.0-SNAPSHOT
adventurePlatform: 4.3.0
cloud: 1.8.3
cloudSponge: 1.8.0-SNAPSHOT
commodore: 2.2
configurate: 4.1.2
typesafeConfig: 1.+
checkerQual: 3.33.0
checkerQual: 3.35.0
slf4j: 1.7.32
log4jSlf4jImpl: 2.8.1
gson: 2.8.0
guava: 21.0
bstats: 3.0.0
paperApi: 1.16.5-R0.1-SNAPSHOT
paperLib: 1.0.8-SNAPSHOT
fabricApi: 0.78.0+1.19.4
fabricLoader: 0.14.19
minecraft: 1.19.4
adventurePlatformFabric: 5.8.0
fabricApi: 0.84.0+1.20.1
fabricLoader: 0.14.21
minecraft: 1.20.1
adventurePlatformFabric: 5.10.0-SNAPSHOT
mixin: 0.8.5

# buildSrc
indra: 2.1.1
shadow: 7.1.2
minotaur: 2.7.5
hangarPublishPlugin: 0.0.4
hangarPublishPlugin: 0.0.5

dependencies:
adventureBom:
Expand Down Expand Up @@ -139,7 +139,7 @@ dependencies:
legacyPluginBase:
group: xyz.jpenilla
name: legacy-plugin-base
version: 0.0.1+73-SNAPSHOT
version: 0.0.1+83-SNAPSHOT

gson:
group: com.google.code.gson
Expand Down
1 change: 1 addition & 0 deletions spigot/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ tasks {
"1.16.5",
"1.17.1",
"1.18.2",
"1.19.4",
mcVer,
),
).forEach { (javaVersion, minecraftVersions) ->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public void enable() {
}

@Override
public void onDisable() {
public void disable() {
if (this.tabTPS != null) { // don't shutdown if we have an exception before init completes
this.tabTPS.shutdown();
}
Expand Down
3 changes: 2 additions & 1 deletion sponge/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ modrinth {
"1.16.5",
"1.17.1",
"1.18.2",
"1.19.4"
"1.19.4",
"1.20.1"
)
}

0 comments on commit 958cf4a

Please sign in to comment.