Updated for 1.19.4
This commit is contained in:
parent
3d80619549
commit
2b12d2cf70
3 changed files with 22 additions and 20 deletions
13
README.md
13
README.md
|
@ -13,18 +13,19 @@ This is a client-side mod. The server doesn't need to have it installed. It work
|
||||||
## Configuration
|
## Configuration
|
||||||
This mod's config file is `betterpingdisplay.json`. It contains the following options:
|
This mod's config file is `betterpingdisplay.json`. It contains the following options:
|
||||||
|
|
||||||
| Option | Default Value | Description |
|
| 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 |
|
| 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 |
|
| 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 |
|
| 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.
|
| 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
|
## Supported Minecraft Versions
|
||||||
* **1.15.x**
|
* **1.15.x**
|
||||||
* **1.16.x**
|
* **1.16.x**
|
||||||
* **1.17.x**
|
* **1.17.x**
|
||||||
* **1.18.x**
|
* **1.18.x**
|
||||||
|
* **1.19.x**
|
||||||
|
|
||||||
## Requirements
|
## Requirements
|
||||||
* [Fabric](https://fabricmc.net/)
|
* [Fabric](https://fabricmc.net/)
|
||||||
|
|
|
@ -2,16 +2,16 @@
|
||||||
org.gradle.jvmargs=-Xmx1G
|
org.gradle.jvmargs=-Xmx1G
|
||||||
|
|
||||||
# Fabric Properties
|
# Fabric Properties
|
||||||
# check these on https://fabricmc.net/use
|
# check these on https://fabricmc.net/use
|
||||||
minecraft_version=1.19.3
|
minecraft_version=1.19.4
|
||||||
yarn_mappings=1.19.3+build.3
|
yarn_mappings=1.19.4+build.1
|
||||||
loader_version=0.14.11
|
loader_version=0.14.17
|
||||||
|
|
||||||
# Mod Properties
|
# Mod Properties
|
||||||
mod_version = 1.1.1
|
mod_version = 1.1.2
|
||||||
maven_group = com.vladmarica
|
maven_group = com.vladmarica
|
||||||
archives_base_name = BetterPingDisplay-Fabric
|
archives_base_name = BetterPingDisplay-Fabric
|
||||||
|
|
||||||
# Dependencies
|
# Dependencies
|
||||||
# currently not on the main fabric site, check on the maven: https://maven.fabricmc.net/net/fabricmc/fabric-api/fabric-api
|
# 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
|
fabric_version=0.76.0+1.19.4
|
||||||
|
|
|
@ -6,12 +6,13 @@
|
||||||
"name": "Better Ping Display",
|
"name": "Better Ping Display",
|
||||||
"description": "Shows the actual ping number instead of just bars in the player list!",
|
"description": "Shows the actual ping number instead of just bars in the player list!",
|
||||||
"authors": [
|
"authors": [
|
||||||
"Quintinity"
|
"Quintinity",
|
||||||
|
"Yuuki"
|
||||||
],
|
],
|
||||||
"contact": {
|
"contact": {
|
||||||
"homepage": "https://github.com/vladmarica/better-ping-display-fabric",
|
"homepage": "https://git.raiza.dev/Raiza.dev/better-ping-display-fabric",
|
||||||
"sources": "https://github.com/vladmarica/better-ping-display-fabric",
|
"sources": "https://git.raiza.dev/Raiza.dev/better-ping-display-fabric",
|
||||||
"issues": "https://github.com/vladmarica/better-ping-display-fabric/issues"
|
"issues": "https://git.raiza.dev/Raiza.dev/better-ping-display-fabric/issues"
|
||||||
},
|
},
|
||||||
|
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
@ -29,7 +30,7 @@
|
||||||
|
|
||||||
"depends": {
|
"depends": {
|
||||||
"fabricloader": ">=0.14",
|
"fabricloader": ">=0.14",
|
||||||
"minecraft": "1.19.3"
|
"minecraft": ">=1.19"
|
||||||
},
|
},
|
||||||
"suggests": {}
|
"suggests": {}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue