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

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