From 2b12d2cf70925e6c5a78083e9d9282ff585718c2 Mon Sep 17 00:00:00 2001 From: Yuuki Chan Date: Wed, 22 Mar 2023 21:56:15 +0900 Subject: [PATCH] Updated for 1.19.4 --- README.md | 13 +++++++------ gradle.properties | 18 +++++++++--------- src/main/resources/fabric.mod.json | 11 ++++++----- 3 files changed, 22 insertions(+), 20 deletions(-) diff --git a/README.md b/README.md index 3b679a9..da5daee 100644 --- a/README.md +++ b/README.md @@ -13,18 +13,19 @@ This is a client-side mod. The server doesn't need to have it installed. It work ## Configuration This mod's config file is `betterpingdisplay.json`. It contains the following options: -| Option | Default Value | Description | -|---|---|---| -| autoColorPingText | `true` | Whether to color a player's ping based on their latency. E.g, low latency = green, high latency = red | -| renderPingBars | `false` | Whether to also draw the default Minecraft ping bars | -| pingTextColor | `#A0A0A0` | The ping text color to use. Only works whens `autoColorPingText` is false | -| pingTextFormatString | `%dms` | The format string for ping text. Must include a `%d`, which will be replaced dynamically by the actual ping value. +| Option | Default Value | Description | +|----------------------|---------------|--------------------------------------------------------------------------------------------------------------------| +| autoColorPingText | `true` | Whether to color a player's ping based on their latency. E.g, low latency = green, high latency = red | +| renderPingBars | `false` | Whether to also draw the default Minecraft ping bars | +| pingTextColor | `#A0A0A0` | The ping text color to use. Only works whens `autoColorPingText` is false | +| pingTextFormatString | `%dms` | The format string for ping text. Must include a `%d`, which will be replaced dynamically by the actual ping value. | ## Supported Minecraft Versions * **1.15.x** * **1.16.x** * **1.17.x** * **1.18.x** +* **1.19.x** ## Requirements * [Fabric](https://fabricmc.net/) diff --git a/gradle.properties b/gradle.properties index 0249e34..5ee80b0 100644 --- a/gradle.properties +++ b/gradle.properties @@ -2,16 +2,16 @@ org.gradle.jvmargs=-Xmx1G # Fabric Properties - # check these on https://fabricmc.net/use - minecraft_version=1.19.3 - yarn_mappings=1.19.3+build.3 - loader_version=0.14.11 +# check these on https://fabricmc.net/use +minecraft_version=1.19.4 +yarn_mappings=1.19.4+build.1 +loader_version=0.14.17 # Mod Properties - mod_version = 1.1.1 - maven_group = com.vladmarica - archives_base_name = BetterPingDisplay-Fabric +mod_version = 1.1.2 +maven_group = com.vladmarica +archives_base_name = BetterPingDisplay-Fabric # Dependencies - # currently not on the main fabric site, check on the maven: https://maven.fabricmc.net/net/fabricmc/fabric-api/fabric-api - fabric_version=0.69.0+1.19.3 +# currently not on the main fabric site, check on the maven: https://maven.fabricmc.net/net/fabricmc/fabric-api/fabric-api +fabric_version=0.76.0+1.19.4 diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index bfce271..e9b7af9 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -6,12 +6,13 @@ "name": "Better Ping Display", "description": "Shows the actual ping number instead of just bars in the player list!", "authors": [ - "Quintinity" + "Quintinity", + "Yuuki" ], "contact": { - "homepage": "https://github.com/vladmarica/better-ping-display-fabric", - "sources": "https://github.com/vladmarica/better-ping-display-fabric", - "issues": "https://github.com/vladmarica/better-ping-display-fabric/issues" + "homepage": "https://git.raiza.dev/Raiza.dev/better-ping-display-fabric", + "sources": "https://git.raiza.dev/Raiza.dev/better-ping-display-fabric", + "issues": "https://git.raiza.dev/Raiza.dev/better-ping-display-fabric/issues" }, "license": "MIT", @@ -29,7 +30,7 @@ "depends": { "fabricloader": ">=0.14", - "minecraft": "1.19.3" + "minecraft": ">=1.19" }, "suggests": {} }