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.3KB

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