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

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