您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

CHANGELOG 1.1KB

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