Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

CHANGELOG 1.5KB

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