diff options
author | Moo2meenn <67310794+Moo2meenn@users.noreply.github.com> | 2022-05-06 18:50:33 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-06 18:50:33 +0300 |
commit | b96de6230299c751d0d3953c6546992efccb1111 (patch) | |
tree | d9db5ea005b8084b08c639096b42d3e5f6cc517e /docs/chattabs.md | |
parent | 1046d78d70f074074dcf5c4ce522c8dc83654242 (diff) | |
parent | dae58987b89bc01fa2828b5f4840a594f416f592 (diff) | |
download | Chatting-b96de6230299c751d0d3953c6546992efccb1111.tar.gz Chatting-b96de6230299c751d0d3953c6546992efccb1111.tar.bz2 Chatting-b96de6230299c751d0d3953c6546992efccb1111.zip |
Merge branch 'main' into fix-buttons-height
Diffstat (limited to 'docs/chattabs.md')
-rw-r--r-- | docs/chattabs.md | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/docs/chattabs.md b/docs/chattabs.md index 0738310..4b9cde6 100644 --- a/docs/chattabs.md +++ b/docs/chattabs.md @@ -12,15 +12,16 @@ something like this: "enabled": true, "name": "ALL", "unformatted": false, + "lowercase": false, "color": 14737632, "hovered_color": 16777120, - "selected_color": 10526880, - "prefix": "" + "selected_color": 10526880 }, { "enabled": true, "name": "PARTY", "unformatted": false, + "lowercase": false, "starts": [ "§r§9Party §8> ", "§r§9P §8> ", @@ -90,6 +91,7 @@ something like this: "enabled": true, "name": "GUILD", "unformatted": true, + "lowercase": false, "starts": [ "Guild >", "G >" @@ -103,6 +105,7 @@ something like this: "enabled": true, "name": "PM", "unformatted": true, + "lowercase": false, "starts": [ "To ", "From " @@ -113,7 +116,7 @@ something like this: "prefix": "/r " } ], - "version": 4 + "version": 5 } ``` @@ -222,17 +225,22 @@ The `selected_color` property allows you to change the color of the chat tab tex over all the other color properties. Like the other color properties, it is in RGBA format. The `prefix` property appends the prefix to any message sent while in the specific chat tab **if it is not a command**. -This can be used to automatically send messages in a specific channel in servers, like in Hypixel. +This can be used to automatically send messages in a specific channel in servers, like in Hypixel. This is no longer required as of version 5. + +The `lowercase` property makes the message trigger lowercase. ## Chat Tabs JSON Changelogs +### Version 5 (Chatting 1.4.0 [04363f5]) +- The `prefix` property is no longer a required property. +- Added `lowercase` property -### Version 4 +### Version 4 (Chatting 1.4.0 [eece3cb]) - Added color text options (`color`, `hovered_color`, and `selected_color`) - `version` is now actually an integer -### Version 3 +### Version 3 (Chatting 1.4.0-alpha1) - Added `ignore_` options (`ignore_starts`, `ignore_ends`, `ignore_equals`, and `ignore_regex`) -### Version 2 +### Version 2 (1.0.0) - Added `enabled` property
\ No newline at end of file |