Merge branch 'main' into database

# Conflicts:
#	dependency-reduced-pom.xml
#	pom.xml
This commit is contained in:
Artemis-the-gr8 2023-10-31 11:22:12 +01:00
commit db3f94cc80
4 changed files with 8 additions and 7 deletions

View File

@ -5,7 +5,7 @@
## About
PlayerStats is a Minecraft server plugin that adds a command to view player statistics in
top-10 format or individually. Currently tested on all versions between **1.16.5** and **1.19.4** on platforms:
top-10 format or individually. Currently tested on all versions between **1.16.5** and **1.20.1** on platforms:
- Bukkit
- Spigot
- Paper
@ -93,7 +93,7 @@ To import the PlayerStats API with Maven, add the following dependency and repos
<dependency>
<groupId>io.github.ithotl</groupId>
<artifactId>PlayerStats</artifactId>
<version>1.7.2-SNAPSHOT</version>
<version>2.0-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
</dependencies>

View File

@ -229,13 +229,13 @@
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>1.19.4-R0.1-SNAPSHOT</version>
<version>1.20.2-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>me.clip</groupId>
<artifactId>placeholderapi</artifactId>
<version>2.11.3</version>
<version>2.11.4</version>
<scope>provided</scope>
</dependency>
<dependency>

View File

@ -66,7 +66,7 @@
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>1.19.4-R0.1-SNAPSHOT</version>
<version>1.20.2-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
@ -79,7 +79,7 @@
<dependency>
<groupId>net.kyori</groupId>
<artifactId>adventure-platform-bukkit</artifactId>
<version>4.3.0</version>
<version>4.3.1</version>
</dependency>
<dependency>
@ -105,7 +105,7 @@
<dependency>
<groupId>me.clip</groupId>
<artifactId>placeholderapi</artifactId>
<version>2.11.3</version>
<version>2.11.4</version>
<scope>provided</scope>
</dependency>

View File

@ -28,6 +28,7 @@ public final class StringUtils {
*/
public static String prettify(String input) {
if (input == null) return null;
//TODO remove excessive logging
MyLogger.logHighLevelMsg("Prettifying [" + input + "]");
StringBuilder capitals = new StringBuilder(input.toLowerCase(Locale.ENGLISH));