Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

CHANGELOG 1.5KB

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