diff --git a/CHANGELOG.md b/CHANGELOG.md index 50e0f5f..69fc77e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,14 +1,16 @@ -## [1.3.0](https://github.com/chaos-zhu/easynode/releases) (2024-07-10) +## [2.0.0](https://github.com/chaos-zhu/easynode/releases) (2024-07-29) ### Features +* 重构前端UI ✔ +* 新增多个功能菜单 ✔ * 重构文件储存方式 ✔ * 升级前后端依赖 ✔ * 优化前端工程 ✔ * 修复不同ssh密钥算法登录失败的bug ✔ * 移除上一次IP登录校验的判断 ✔ * 前端工程迁移至项目根目录 ✔ -* 添加ssh密钥保存至本地功能 ✔ +* 添加ssh密钥or密码保存至本地功能 ✔ ## [1.2.1](https://github.com/chaos-zhu/easynode/releases) (2022-12-12) diff --git a/README.md b/README.md index 452a531..af86dfd 100644 --- a/README.md +++ b/README.md @@ -78,19 +78,19 @@ pm2 start index.js --name easynode-server #### X86架构 ```shell -wget -qO- --no-check-certificate https://mirror.ghproxy.com/https://raw.githubusercontent.com/chaos-zhu/easynode/v1.2/easynode-client-install-x86.sh | bash +wget -qO- --no-check-certificate https://mirror.ghproxy.com/https://raw.githubusercontent.com/chaos-zhu/easynode/v2.0/client/easynode-client-install-x86.sh | bash ``` #### ARM架构 ```shell -wget -qO- --no-check-certificate https://mirror.ghproxy.com/https://raw.githubusercontent.com/chaos-zhu/easynode/v1.1/easynode-client-install-arm.sh | bash +wget -qO- --no-check-certificate https://mirror.ghproxy.com/https://raw.githubusercontent.com/chaos-zhu/easynode/v2.0/client/easynode-client-install-arm.sh | bash ``` > 卸载 ```shell -wget -qO- --no-check-certificate https://mirror.ghproxy.com/https://raw.githubusercontent.com/chaos-zhu/easynode/v1.2/easynode-client-uninstall.sh | bash +wget -qO- --no-check-certificate https://mirror.ghproxy.com/https://raw.githubusercontent.com/chaos-zhu/easynode/v2.0/client/easynode-client-uninstall.sh | bash ``` > 查看客户端状态:`systemctl status easynode-client` diff --git a/easynode-client-install-arm.sh b/client/easynode-client-install-arm.sh similarity index 100% rename from easynode-client-install-arm.sh rename to client/easynode-client-install-arm.sh diff --git a/easynode-client-install-x86.sh b/client/easynode-client-install-x86.sh similarity index 100% rename from easynode-client-install-x86.sh rename to client/easynode-client-install-x86.sh diff --git a/easynode-client-uninstall.sh b/client/easynode-client-uninstall.sh similarity index 100% rename from easynode-client-uninstall.sh rename to client/easynode-client-uninstall.sh