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 959B

123456789101112131415161718192021222324
  1. vNEXT (in development)
  2. * Simplified how messages are constructed.
  3. Instead of: client.send(joinMessage("#channel"))
  4. Now use: client.sendJoin("#channel")
  5. * Added reply utility to easily send replies to message events
  6. * Server state improvements:
  7. * Added status field to ServerState
  8. * ServerConnected event is emitted as soon as the socket is connected
  9. * ServerReady event is emitted after logging in, negotiating, etc
  10. * Added extra debugging to show what type of events are being dispatched
  11. * (Internal) Event handlers can now return more events to emit
  12. v0.2.1
  13. * Added documentation and reduced visibility of some internal methods/classes
  14. * (Internal) Enabled Travis, Codacy and Coveralls
  15. v0.2.0
  16. * Added support for connecting over TLS
  17. * Simplified how event handlers are registered
  18. * Improved use of coroutines so users don't have to worry about them
  19. * (Internal) Upgraded to Gradle 5.1.1