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

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