如何更新插件版本

源码部署方式更新

最快捷的是重新拉取最新客户端代码:https://github.com/leochen-g/wechat-assistant-pro

1、在项目根目录执行命令

npm i wechaty-web-panel@latest --save

如果发现没有更新成功,请切换npm源为官方源

npm config set registry https://registry.npmjs.org

2、重启客户端

docker 部署更新

最快捷的是重新拉取镜像:https://hub.docker.com/r/aibotk/wechat-assistant

1、进到容器里执行命令

docker exec -it wechatbot /bin/bash

npm i wechaty-web-panel@latest 

如果发现没有更新成功,请切换npm源为官方源

npm config set registry https://registry.npmjs.org

2、重启docker镜像

docker restart wechatbot