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

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