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

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