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

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