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

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