Skip to content

Commit 2d037f5

Browse files
authored
Update README.md
1 parent 7133743 commit 2d037f5

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ MatrixColorAPI is hosted on [Jitpack](https://jitpack.io), making it easy to int
3535
2. **Add the dependency** in your `dependencies` block:
3636
```gradle
3737
dependencies {
38-
implementation 'com.github.MatrixCreations:MatrixColorAPI:v1.0.5'
38+
implementation 'com.github.MatrixCreations:MatrixColorAPI:v1.0.6'
3939
}
4040
```
4141

@@ -53,7 +53,7 @@ MatrixColorAPI is hosted on [Jitpack](https://jitpack.io), making it easy to int
5353
<dependency>
5454
<groupId>com.github.MatrixCreations</groupId>
5555
<artifactId>MatrixColorAPI</artifactId>
56-
<version>v1.0.5</version>
56+
<version>v1.0.6</version>
5757
</dependency>
5858
```
5959

@@ -68,28 +68,28 @@ MatrixColorAPI is hosted on [Jitpack](https://jitpack.io), making it easy to int
6868

6969
```java
7070
String text = "<SOLID:#FFD700>This is yellow text";
71-
String processed = ColorUtils.process(text);
71+
String processed = MatrixColorAPI.process(text);
7272
```
7373

7474
- **Gradient Example:**
7575

7676
```java
7777
String gradientText = "<GRADIENT:#FF0000>This is a red to yellow gradient</GRADIENT:#FFFF00>";
78-
String processedGradient = ColorUtils.process(gradientText);
78+
String processedGradient = MatrixColorAPI.process(gradientText);
7979
```
8080

8181
- **Legacy Code Support:**
8282

8383
```java
8484
String legacyText = "&aThis is a green text with &lBOLD";
85-
String processedLegacy = ColorUtils.process(legacyText);
85+
String processedLegacy = MatrixColorAPI.process(legacyText);
8686
```
8787

8888
- **Hex Code Support:**
8989

9090
```java
9191
String hexText = "&#FFD700This is a yellow text with &lBOLD";
92-
String processedLegacy = ColorUtils.process(hexText);
92+
String processedLegacy = MatrixColorAPI.process(hexText);
9393
```
9494

9595
## 🛠️ Available Methods

0 commit comments

Comments
 (0)