diff --git a/RELEASE.md b/RELEASE.md index 09508a78..b1a90fd8 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -4,11 +4,11 @@ **Fix 🐛** -- `Cmd.sudo_run_cmd` 增加 `workdir` 功能 -- 将 `run_cmd` 固定 `shell` 默认指定为 `/bin/bash` -- 临时处理 `input_message` 方法,在 `wayland` 输入中文末尾多出空格的问题 -- 修改部署客户端设备 `youqu` 环境时,阻塞在密码输入 -- 扩展 `OCR` 断言支持区域断言,提升精准度,优化 `OCR` 识别范围筛选方法 +- `Cmd.sudo_run_cmd` 增加 `workdir` 功能。 +- 将 `run_cmd` 固定 `shell` 默认指定为 `/bin/bash`。 +- 临时处理 `input_message` 方法,在 `wayland` 输入中文末尾多出空格的问题。 +- 修改部署客户端设备 `youqu` 环境时,阻塞在密码输入。 +- 扩展 `OCR` 断言支持区域断言,提升精准度,优化 `OCR` 识别范围筛选方法。 ## 2.6.8(2024/07/15) diff --git a/docs/.vitepress/config.mts b/docs/.vitepress/config.mts index 925ddbe6..98ea313a 100644 --- a/docs/.vitepress/config.mts +++ b/docs/.vitepress/config.mts @@ -30,7 +30,14 @@ export default withMermaid( {text: '首页', link: '/index'}, {text: '指南', link: '/指南/简介/YouQu是什么'}, {text: '实践', link: '/实践/Linux桌面UI自动化测试/初始化项目'}, - {text: '规划', link: '/规划/框架设计/AT基础框架设计方案'}, + { + text: '规划', items: [ + {text: "框架设计", link: '/规划/框架设计/AT基础框架设计方案'}, + {text: "YouQu3", link: 'https://youqu.uniontech.com/v3/'}, + {text: "PyLinuxAuto", link: 'https://youqu.uniontech.com/pylinuxauto/'}, + {text: "UMTK", link: 'https://youqu.uniontech.com/umtk/'}, + ] + }, { text: `v${version}`, items: [ {text: "更新日志", link: '/RELEASE'}, diff --git "a/docs/\346\214\207\345\215\227/\346\241\206\346\236\266\345\277\205\345\244\207/\346\211\247\350\241\214\347\256\241\347\220\206\345\231\250.md" "b/docs/\346\214\207\345\215\227/\346\241\206\346\236\266\345\277\205\345\244\207/\346\211\247\350\241\214\347\256\241\347\220\206\345\231\250.md" index f7922c70..73b4736a 100644 --- "a/docs/\346\214\207\345\215\227/\346\241\206\346\236\266\345\277\205\345\244\207/\346\211\247\350\241\214\347\256\241\347\220\206\345\231\250.md" +++ "b/docs/\346\214\207\345\215\227/\346\241\206\346\236\266\345\277\205\345\244\207/\346\211\247\350\241\214\347\256\241\347\220\206\345\231\250.md" @@ -262,7 +262,7 @@ autotest_my_app 驱动执行 `smoke` 目录下所有用例: -```shehll +```shell youqu manage.py run -k smoke ```