You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+41-4Lines changed: 41 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# 🌈 MatrixColorAPI
2
2
3
-
**MatrixColorAPI** is a powerful and flexible library for processing and applying custom colors, gradients, and text decorations in Minecraft or other Java-based applications. It supports hex colors, legacy Minecraft color codes, and more advanced formatting like gradients and solid colors.
3
+
**MatrixColorAPI** is a powerful and flexible library for processing and applying custom colors, gradients, and text decorations in Minecraft servers. It supports hex colors, legacy Minecraft color codes, and more advanced formatting like gradients and solid colors.
4
4
5
5
This library simplifies color management while allowing developers to build beautifully formatted text with ease!
6
6
@@ -14,14 +14,51 @@ This library simplifies color management while allowing developers to build beau
14
14
- 🔄 **Easy to Use**: Clean and simple API to integrate into your project.
15
15
- 🌍 **Supports All Server Software**: Compatible with Spigot, Paper, Bukkit, Minestom, Fabric, and more.
16
16
- 🕹️ **Works with Every Minecraft Version Starting from 1.16.5**.
17
-
- 🛠️ **Open to Contributions**: Licensed under MIT for open contributions, modifications, and commercial use!
17
+
- 🛠️ **Open to Contributions**: Licensed under Apache 2.0 License for open contributions, modifications, and commercial use!
18
18
19
19
## 🚀 Getting Started
20
20
21
21
### Installation
22
22
23
-
1.**Add the JAR to your project**: (Instructions to add it as a dependency once you release it, or users can manually download it)
24
-
2.**Build the project**: Make sure your project is built with a compatible version of Java.
23
+
MatrixColorAPI is hosted on [Jitpack](https://jitpack.io), making it easy to integrate with your Maven or Gradle projects. Follow the steps below to add it to your project:
24
+
25
+
### Using Gradle
26
+
1.**Add the Jitpack repository** to your `build.gradle` file (inside `repositories` block):
27
+
```gradle
28
+
repositories {
29
+
maven { url 'https://jitpack.io' }
30
+
}
31
+
```
32
+
33
+
2.**Add the dependency** in your `dependencies` block:
0 commit comments