9
0
mirror of https://github.com/Xiao-MoMi/Custom-Nameplates.git synced 2025-12-19 15:09:23 +00:00
XiaoMoMi 8fb4b8317d 2.3.3.7
修复旧版颜色相关问题
2024-04-07 01:27:11 +08:00
2024-04-07 01:27:11 +08:00
2024-01-28 00:29:37 +08:00
2024-02-26 12:48:21 +08:00
2024-04-07 01:27:11 +08:00
2024-02-20 04:59:14 +08:00
2024-01-27 18:58:45 +08:00
2022-06-21 22:42:55 +08:00
2024-01-23 16:53:01 +08:00
2024-04-07 01:27:11 +08:00
2024-02-03 03:51:39 +08:00
2024-01-18 02:01:28 +08:00
2024-01-18 02:01:28 +08:00
2024-01-18 02:01:28 +08:00
2022-07-23 14:00:58 +02:00
2024-02-25 01:39:42 +08:00
2024-01-25 04:53:43 +08:00

Custom-Nameplates

CodeFactor Grade bStats Servers bStats Players GitHub Gitbook

CustomNameplates is a Paper plugin that provides unlimited customization for nametags, bossbars, actionbars and chat bubbles.

How to build

Windows

Command Line

Install JDK 17 and set the JDK installation path to JAVA_HOME as an environment variable.
Start powershell and change directory to the project folder.
Execute ".\gradlew build" and get the jar at /target/CustomNameplates-universe-version.jar.

IDE

Import the project and execute gradle build action.

About Proxy

If you are using a proxy, configurate the proxy in gradle.properties. Otherwise comment the lines in gradle.properties.

Support the developer

Polymart: https://polymart.org/resource/customnameplates.2543
Afdian: https://afdian.net/@xiaomomi

Use CustomNameplates API

Maven

<repositories>
  <repository>
    <id>jitpack</id>
    <url>https://jitpack.io/</url>
  </repository>
</repositories>
<dependencies>
  <dependency>
    <groupId>com.github.Xiao-MoMi</groupId>
    <artifactId>Custom-Nameplates</artifactId>
    <version>{LATEST}</version>
    <scope>provided</scope>
  </dependency>
</dependencies>

Gradle (Groovy)

repositories {
    maven { url 'https://jitpack.io' }
}
dependencies {
    compileOnly 'com.github.Xiao-MoMi:Custom-Nameplates:{LATEST}'
}

Gradle (Kotlin)

repositories {
    maven("https://jitpack.io/")
}
dependencies {
    compileOnly("com.github.Xiao-MoMi:Custom-Nameplates:{LATEST}")
}
Description
Languages
Java 99.7%
GLSL 0.3%