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

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