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

CHANGELOG 883B

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