You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CHANGELOG 1.0KB

123456789101112131415161718192021222324252627
  1. vNEXT (in development)
  2. v0.3.0
  3. * Simplified how messages are constructed.
  4. Instead of: client.send(joinMessage("#channel"))
  5. Now use: client.sendJoin("#channel")
  6. * Added reply utility to easily send replies to message events
  7. * Server state improvements:
  8. * Added status field to ServerState
  9. * ServerConnected event is emitted as soon as the socket is connected
  10. * ServerReady event is emitted after logging in, negotiating, etc
  11. * Added extra debugging to show what type of events are being dispatched
  12. * Added ChannelQuit event, raised for each channel a user is in when they quit
  13. * (Internal) Event handlers can now return more events to emit
  14. v0.2.1
  15. * Added documentation and reduced visibility of some internal methods/classes
  16. * (Internal) Enabled Travis, Codacy and Coveralls
  17. v0.2.0
  18. * Added support for connecting over TLS
  19. * Simplified how event handlers are registered
  20. * Improved use of coroutines so users don't have to worry about them
  21. * (Internal) Upgraded to Gradle 5.1.1