Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

CHANGELOG 2.1KB

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