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.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. vNEXT (in development)
  2. * Added MotdFinished event
  3. * Added UserAccountChanged event
  4. * Improved some documentation
  5. * Added ServerConnecting and ServerDisconnected events
  6. * Server status now starts as Disconnected rather than Connecting
  7. * CHANMODES feature is now stored as an array, not a single comma-separated string
  8. * Improved error message when features are of an unexpected type
  9. v0.4.0
  10. * Added CtcpReceived and ActionReceived events
  11. * Added sendCtcp and sendAction message builders
  12. * Fix issue with messages being sent out of order, which sometimes caused problems connecting to passworded servers
  13. * Added 'network' server feature
  14. * Added serverName field to ServerState
  15. v0.3.1
  16. * Added more documentation to public methods/classes
  17. * Fixed exception when sending multiple lines at once (e.g. when connecting!)
  18. v0.3.0
  19. * Simplified how messages are constructed.
  20. Instead of: client.send(joinMessage("#channel"))
  21. Now use: client.sendJoin("#channel")
  22. * Added reply utility to easily send replies to message events
  23. * Server state improvements:
  24. * Added status field to ServerState
  25. * ServerConnected event is emitted as soon as the socket is connected
  26. * ServerReady event is emitted after logging in, negotiating, etc
  27. * Added extra debugging to show what type of events are being dispatched
  28. * Added ChannelQuit event, raised for each channel a user is in when they quit
  29. * (Internal) Event handlers can now return more events to emit
  30. v0.2.1
  31. * Added documentation and reduced visibility of some internal methods/classes
  32. * (Internal) Enabled Travis, Codacy and Coveralls
  33. v0.2.0
  34. * Added support for connecting over TLS
  35. * Simplified how event handlers are registered
  36. * Improved use of coroutines so users don't have to worry about them
  37. * (Internal) Upgraded to Gradle 5.1.1