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
You can also contact us via the [Discord Server](https://discord.gg/8NXaEyV)
3
+
You can contact us via the [Discord Server](https://discord.gg/8NXaEyV)
5
4
6
-
Small, basic library for creating an IRC connection to the Twitch chat.
5
+
Small, library for creating an IRC connection to the Twitch chat.
7
6
8
7
The library is intended to make communication via Twitch chat as easy as possible, and uses Java objects to represent most events that can occur in Twitch chat.
9
8
@@ -23,25 +22,21 @@ Include the following in your pom.xml
23
22
<dependency>
24
23
<groupId>com.github.gikkman</groupId>
25
24
<artifactId>Java-Twirk</artifactId>
26
-
<version>LATEST_RELEASE_VERION_HERE</version>
25
+
<version>0.5</version>
27
26
</dependency>
28
27
</dependencies>
29
28
```
30
29
Or simply download the latest version of the library jar from the release page.
31
30
32
31
## Changes
33
-
There has beenmajor changes from Java-Twirk 0.3 to Java-Twirk 0.4. I am sorry for the hassle, but it was a necessity. Changes include (but is not limited to)
34
-
* Added support for Subscription Gift
35
-
* Added support for Raid
36
-
* Encapsulated all default factories (previously all public under GikkDefault_<NAMEHERE>)
37
-
* TwirkListenerBaseImpl has been removed, please implement TwirkListener instead
38
-
* Mode-events has been depricated (please use the TwitchUser.isMod() instead)
39
-
* Subscriber-event has been removed. It is now found under Usernotice-event instead (Twitch has changed their grouping)
40
-
* USER_TYPES now has category SUBSCRIBER, which is given to regular subs and turbo subs.
41
-
* USER_TYPES now has ranks, which allows you to do if( user.getUserType().value >= USER_TYPE.SUBSCRIBER.value )
42
-
* Added the isOwner() status on TwichUser
32
+
There has been some new features in version 0.5, but nothing that is breaking backwards compability. New features include:
33
+
* Whispers (This was removed in 0.4, but is now back. Twitch said they'd remove it , but they haven't so far so...)
34
+
* Support for new sub-streak logic
35
+
* Updated the example
36
+
* Added even more tests
37
+
* Touched up on some JavaDoc
43
38
44
-
And probably some more. Thankfully, Java is a strongly typed language :D
0 commit comments