From a1ff321786674564f00dfc134516687256110d1c Mon Sep 17 00:00:00 2001 From: Adrian Date: Wed, 19 Apr 2023 15:47:20 -0500 Subject: [PATCH] release: Version 1.0.0 --- README.md | 31 +++++++++++++++++++++---------- gradle.properties | 2 +- gradle/libs.versions.toml | 5 ++--- paper/build.gradle.kts | 4 ---- 4 files changed, 24 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index 241431f..e24295a 100644 --- a/README.md +++ b/README.md @@ -1,45 +1,56 @@ # Spark-Expansion Spark Expansion for MiniPlaceholders +## Supported Platforms + +- Paper +- Velocity +- Fabric (not yet) +- Krypton (not yet) + ## Placeholders ### TPS +**Only available in Paper** + #### `` Returns a formatted summary of the average TPS in the last 5s, 10s, 1m, 5m and 15m. -#### `` +#### `` Returns a formatted representation of the average TPS in the last 5 seconds. -#### `` +#### `` Returns a formatted representation of the average TPS in the last 10 seconds. -#### `` +#### `` Returns a formatted representation of the average TPS in the last minute. -#### `` +#### `` Returns a formatted representation of the average TPS in the last 5 minutes. -#### `` +#### `` Returns a formatted representation of the average TPS in the last 15 minutes. ### Tick Duration (MSPT) +**Only available in Paper** + #### `` Returns a formatted summary of the average tick durations in the last 10 seconds and 1 minute. -#### `spark_tickduration_10s>` +#### `spark_tickduration:10s>` Returns a formatted representation of the average tick duration in the last 10 seconds. -#### `` +#### `` Returns a formatted representation of the average tick duration in the last minute. @@ -52,15 +63,15 @@ Returns a formatted representation of the average tick duration in the last minu Returns a formatted summary of the average CPU usage (system) in the last 10 seconds, 1 minute and 15 minutes. -#### `` +#### `` Returns a formatted representation of the average CPU usage (system) in the last 10 seconds. -#### `` +#### `` Returns a formatted representation of the average CPU usage (system) in the last minute. -#### `` +#### `` Returns a formatted representation of the average CPU usage (system) in the last 15 minutes. diff --git a/gradle.properties b/gradle.properties index 38a7e0c..24990fa 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,3 +1,3 @@ group = io.github.miniplaceholders version = 1.0.0 -description = Example-Expansion \ No newline at end of file +description = Spark-Expansion \ No newline at end of file diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 23d5503..03c7af2 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -3,12 +3,11 @@ metadata.format.version = "1.1" [versions] velocity = "3.2.0-SNAPSHOT" -paper = "1.19.3-R0.1-SNAPSHOT" +paper = "1.19.4-R0.1-SNAPSHOT" blossom = "1.3.1" shadow = "8.1.1" runtask = "2.0.1" -pluginyml = "0.5.3" miniplaceholders = "2.0.0" spark = "0.1-SNAPSHOT" @@ -28,4 +27,4 @@ blossom = { id = "net.kyori.blossom", version.ref = "blossom" } shadow = { id = "com.github.johnrengelman.shadow", version.ref = "shadow" } runvelocity = { id = "xyz.jpenilla.run-velocity", version.ref = "runtask" } runpaper = { id = "xyz.jpenilla.run-velocity", version.ref = "runtask" } -pluginyml = { id = "net.minecrell.plugin-yml.bukkit", version.ref = "pluginyml" } + diff --git a/paper/build.gradle.kts b/paper/build.gradle.kts index 5c2a491..f05b825 100644 --- a/paper/build.gradle.kts +++ b/paper/build.gradle.kts @@ -1,7 +1,3 @@ -plugins { - alias(libs.plugins.pluginyml) -} - dependencies { compileOnly(libs.paper.api) compileOnly(libs.miniplaceholders)