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 3.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. vNEXT (in development)
  2. * Fixed experimental API warnings when using IrcClient
  3. * IrcClients are now constructed using a DSL
  4. * Users of the library no longer need to care about the implementing class
  5. * Facilitates adding more options in the future without breaking existing implementations
  6. * SASL improvements
  7. * The enabled mechanisms can now be configured (in the SASL DSL)
  8. * Added support for EXTERNAL mechanism, disabled by default
  9. * Now attempts to renegotiate if the server doesn't recognise the SASL mechanism that was tried
  10. * (Internal) Minor version updates for Gradle, Kotlin and JUnit
  11. v0.6.0
  12. * Changed USER command to not send the server name, per modern standards
  13. * Added support for SASL authentication (with PLAIN mechanism)
  14. * Removed some unused test code
  15. * Fixed handling of user mode changes on channels (op/deop/etc)
  16. * Message extensions:
  17. * Added support for IRCv3 message tags v3.3
  18. * Exposed message IDs in MessageReceived and ActionReceived events
  19. * When sending a message you can now indicate what it is in reply to
  20. * Added sendTagMessage() to send message tags without any content
  21. * The reply() utility automatically marks messages as a reply
  22. * Added react() utility to send a reaction client tag
  23. * State is now reset when the client is disconnected, so you can immediately reconnect
  24. * (Internal) improved how coroutines and channels are used in LineBufferedSocket
  25. v0.5.0
  26. * Server state:
  27. * Added ServerConnecting and ServerDisconnected events
  28. * Server status now starts as Disconnected rather than Connecting
  29. * Improved error message when features are of an unexpected type
  30. * Channel modes:
  31. * CHANMODES feature is now stored as an array, not a single comma-separated string
  32. * Added ChanModeType enum, and method in ServerState to get the type of a mode
  33. * Added ModeChanged event, for user and channel mode changes and discovery
  34. * Added modes and modesDiscovered to ChannelState
  35. * Other new events:
  36. * Added MotdFinished event
  37. * Added UserAccountChanged event
  38. * Added ChannelUserKicked event
  39. * Added NoticeReceived event
  40. * Added CtcpReplyReceived event
  41. * Improved some documentation
  42. v0.4.0
  43. * Added CtcpReceived and ActionReceived events
  44. * Added sendCtcp and sendAction message builders
  45. * Fix issue with messages being sent out of order, which sometimes caused problems connecting to passworded servers
  46. * Added 'network' server feature
  47. * Added serverName field to ServerState
  48. v0.3.1
  49. * Added more documentation to public methods/classes
  50. * Fixed exception when sending multiple lines at once (e.g. when connecting!)
  51. v0.3.0
  52. * Simplified how messages are constructed.
  53. Instead of: client.send(joinMessage("#channel"))
  54. Now use: client.sendJoin("#channel")
  55. * Added reply utility to easily send replies to message events
  56. * Server state improvements:
  57. * Added status field to ServerState
  58. * ServerConnected event is emitted as soon as the socket is connected
  59. * ServerReady event is emitted after logging in, negotiating, etc
  60. * Added extra debugging to show what type of events are being dispatched
  61. * Added ChannelQuit event, raised for each channel a user is in when they quit
  62. * (Internal) Event handlers can now return more events to emit
  63. v0.2.1
  64. * Added documentation and reduced visibility of some internal methods/classes
  65. * (Internal) Enabled Travis, Codacy and Coveralls
  66. v0.2.0
  67. * Added support for connecting over TLS
  68. * Simplified how event handlers are registered
  69. * Improved use of coroutines so users don't have to worry about them
  70. * (Internal) Upgraded to Gradle 5.1.1