Skip to content
This repository has been archived by the owner on Nov 2, 2023. It is now read-only.

v2.2.0 情人节特别版

Compare
Choose a tag to compare
@takayama-lily takayama-lily released this 14 Feb 03:02
· 78 commits to main since this release
  • 手机和pad协议升级到最新版本
  • 增加QQ频道接收/回复消息的功能(仅安卓手机协议下能收到频道消息)
client.on("guild.message", e => {
  console.log(e)
  if (e.raw_message === "hello")
    e.reply([
      segment.at(e.sender.tiny_id, "@"+e.sender.nickname),
      segment.face(123),
      "666",
    ])//目前仅支持发送文本、AT和表情
})
  • 修复 #299
  • 完善了类型描述文件里的注释
  • 修复了一些不为人知的bug