Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

12345678910111213141516171819202122232425
  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. * Added ChannelQuit event, raised for each channel a user is in when they quit
  12. * (Internal) Event handlers can now return more events to emit
  13. v0.2.1
  14. * Added documentation and reduced visibility of some internal methods/classes
  15. * (Internal) Enabled Travis, Codacy and Coveralls
  16. v0.2.0
  17. * Added support for connecting over TLS
  18. * Simplified how event handlers are registered
  19. * Improved use of coroutines so users don't have to worry about them
  20. * (Internal) Upgraded to Gradle 5.1.1