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

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