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

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