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

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