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

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