You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CHANGELOG 2.2KB

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