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

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