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.

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