diff --git a/CHANGELOG.md b/CHANGELOG.md index bf3a02d..96b2acf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,10 @@ -## [2.2.7](https://github.com/chaos-zhu/easynode/releases) (2024-10-xx) +## [2.2.7](https://github.com/chaos-zhu/easynode/releases) (2024-10-17) ### Features * 终端连接页新增展示服务端ping客户端延迟ms * 修复自定义客户端端口默认字符串的bug +* 终端支持快捷设置开关: 快捷复制、快捷粘贴、选中脚本自动执行 ## [2.2.6](https://github.com/chaos-zhu/easynode/releases) (2024-10-14) diff --git a/web/package.json b/web/package.json index 055f8c5..9396422 100644 --- a/web/package.json +++ b/web/package.json @@ -1,6 +1,6 @@ { "name": "web", - "version": "2.2.6", + "version": "2.2.7", "description": "easynode-web", "private": true, "scripts": { diff --git a/web/src/views/terminal/components/terminal-tab.vue b/web/src/views/terminal/components/terminal-tab.vue index b3ce83b..91621ba 100644 --- a/web/src/views/terminal/components/terminal-tab.vue +++ b/web/src/views/terminal/components/terminal-tab.vue @@ -45,7 +45,7 @@ const command = ref('') const timer = ref(null) const pingTimer = ref(null) const fitAddon = ref(null) -const searchBar = ref(null) +// const searchBar = ref(null) const hasRegisterEvent = ref(false) const socketConnected = ref(false)