diff --git a/docx/CHANGELOG.md b/docx/CHANGELOG.md index 2a18f5b..91d3dab 100644 --- a/docx/CHANGELOG.md +++ b/docx/CHANGELOG.md @@ -1,3 +1,18 @@ +# [0.38](https://github.com/shelllet/winui/compare/main...dev) (2024-09-06) + +### Changed: +1. 增加鼠标[滚动动作](./actions/mouse/WheelMouse.md)。 +2. 动作分组可以在设置中设置隐藏或者显示。 +3. 修复编辑器无法编辑问题。 + +### Note + +1. 使用管理员权限运行 *winui++*, 无法显示 *动作* 的拖动效果(已知问题)。 +2. 更换默认安装目录为 *ProgramData*,全新安装 *winui++* 时, 不再需要 *管理员* 权限。如果覆盖安装,目录不会做变更。 + +3. 64位下载(x64):https://bitbucket.org/winui-release/version/downloads/winui0.38.0-setup.x64.exe + + # [0.37](https://github.com/shelllet/winui/compare/main...dev) (2024-08-16) ### Changed: diff --git a/docx/_coverpage.md b/docx/_coverpage.md index 2296748..d1b8c4a 100644 --- a/docx/_coverpage.md +++ b/docx/_coverpage.md @@ -5,6 +5,6 @@ - Right now support down to build 17763 (version 1809/October 2018 Update) of Windows 10. [微软商店](https://apps.microsoft.com/store/detail/XP9BRHTXN0Z3V7) -[下载](https://winui.net/simple/v3/download ':id=simple') +[下载](https://winui.net/simple/v4/download_latest ':id=simple') diff --git a/docx/_sidebar.md b/docx/_sidebar.md index 8d7d45b..165ef8f 100644 --- a/docx/_sidebar.md +++ b/docx/_sidebar.md @@ -1,12 +1,14 @@ - [WinUi++](/) - - [简介](./introduction/README.md) - - 安装 + - [使用需知](./introduction/README.md) + - 软件安装 - [直接安装](./introduction/installation/installed_by_exe.md) - [微软商店安装](./introduction/installation/installed_by_msix.md) - 安装问题 - [新安装无法启动](./introduction/installation/question/quest1.md) - [覆盖安装无法启动](./introduction/installation/question/quest2.md) - - 流程 + - 设置 + - [动作分组隐藏](./introduction/installation/setting/action_group_setting.md) + - 流程介绍 - [项目属性](./introduction/workflow/property.md) - [使用逻辑](./introduction/workflow/logic.md) - [鼠标/键盘宏录制](./introduction/workflow/record) @@ -14,6 +16,7 @@ - [流程操作技巧](./introduction/workflow/skill.md) - [通配符匹配](./introduction/workflow/wildcard.md) - [Glob模式匹配](./introduction/workflow/glob.md) + - [Web 定位策略](./introduction/webdriver/locators.md) - [安装 UIAutomatorViewer 工具](./introduction/android/uiautomatorviewer.md) - [动作](./actions/README.md) - 系统 @@ -70,6 +73,7 @@ - [监听鼠标](./actions/mouse/ListenMouse.md) - [偏移移动](./actions/mouse/MoveOffset.md) - [点击*网格](./actions/mouse/CellClick.md) + - [滚动鼠标](./actions/mouse/WheelMouse.md) - 窗口 - [查找窗口](./actions/window/FindWindow.md) - [特定窗口](./actions/window/SpecialWindow.md) diff --git a/docx/actions/control/Code.md b/docx/actions/control/Code.md index b45043c..1952c66 100644 --- a/docx/actions/control/Code.md +++ b/docx/actions/control/Code.md @@ -30,3 +30,6 @@ global var 示例:https://github.com/shelllet/WinUi/blob/main/control/code.simple + + + diff --git a/docx/actions/control/CodeExpression.md b/docx/actions/control/CodeExpression.md index d0fff57..00563ab 100644 --- a/docx/actions/control/CodeExpression.md +++ b/docx/actions/control/CodeExpression.md @@ -24,7 +24,9 @@ a + 10 # 表达式。 > 表达式的计算结果。例如: `a` 是一个数字。则`a + 10`的结果是一个数字类型[`Number`](./types/Number.md)。 + + ## 其它 diff --git a/docx/actions/control/For.md b/docx/actions/control/For.md index 5d7fb1f..5b4bcab 100644 --- a/docx/actions/control/For.md +++ b/docx/actions/control/For.md @@ -21,3 +21,7 @@ 示例:https://github.com/shelllet/WinUi/blob/main/control/for.simple + + + + diff --git a/docx/actions/control/GroupAction.md b/docx/actions/control/GroupAction.md index e489504..1a7e97b 100644 --- a/docx/actions/control/GroupAction.md +++ b/docx/actions/control/GroupAction.md @@ -20,3 +20,6 @@ 示例:https://github.com/shelllet/WinUi/blob/main/control/group.simple + + + diff --git a/docx/actions/control/If.md b/docx/actions/control/If.md index 4b4c972..7ce4604 100644 --- a/docx/actions/control/If.md +++ b/docx/actions/control/If.md @@ -22,6 +22,9 @@ 示例:https://github.com/shelllet/WinUi/blob/main/control/if.simple + + + !> 不可通过 *[判断](./If.md)* 来判断 *容器/列表* 是否为空。 \ No newline at end of file diff --git a/docx/actions/control/Invoke.md b/docx/actions/control/Invoke.md index e6955c2..d6f5531 100644 --- a/docx/actions/control/Invoke.md +++ b/docx/actions/control/Invoke.md @@ -26,3 +26,6 @@ 示例:https://github.com/shelllet/WinUi/blob/main/control/invoke.simple + + + diff --git a/docx/actions/control/LoggingControl.md b/docx/actions/control/LoggingControl.md index c1c87d9..3769f2a 100644 --- a/docx/actions/control/LoggingControl.md +++ b/docx/actions/control/LoggingControl.md @@ -22,3 +22,6 @@ 示例:https://github.com/shelllet/WinUi/blob/main/control/LoggingControl.simple + + + diff --git a/docx/actions/control/Param.md b/docx/actions/control/Param.md index 5848173..419cb31 100644 --- a/docx/actions/control/Param.md +++ b/docx/actions/control/Param.md @@ -25,6 +25,9 @@ 示例:https://github.com/shelllet/WinUi/blob/main/control/param.simple + + + ## 版本变化 diff --git a/docx/actions/control/RelationalOperator.md b/docx/actions/control/RelationalOperator.md index 46ac2a7..99afeed 100644 --- a/docx/actions/control/RelationalOperator.md +++ b/docx/actions/control/RelationalOperator.md @@ -26,4 +26,8 @@ ## 其它 -示例:https://github.com/shelllet/WinUi/blob/main/control/RelationalOperator.simple \ No newline at end of file +示例:https://github.com/shelllet/WinUi/blob/main/control/RelationalOperator.simple + + + + diff --git a/docx/actions/mouse/WheelMouse.md b/docx/actions/mouse/WheelMouse.md new file mode 100644 index 0000000..8161831 --- /dev/null +++ b/docx/actions/mouse/WheelMouse.md @@ -0,0 +1,26 @@ +# 滚动鼠标 +模拟鼠标滚轮操作。 + +![WheelMouse](./images/11.png ':size=90%') + +## 子流程 +> 不支持 + + +## 运行参数 + +* 值 +> 鼠标滚动的次数。 + +* 方向 + > 参考:[Orientation](./enums/Orientation.md) + + +## 输出 + +> 无 + +## 其它 + +* 流程:https://github.com/shelllet/WinUi/blob/main/mouse/WheelMouse.simple + diff --git a/docx/actions/mouse/images/11.png b/docx/actions/mouse/images/11.png new file mode 100644 index 0000000..5f66a7f Binary files /dev/null and b/docx/actions/mouse/images/11.png differ diff --git a/docx/actions/web/WebOpen.md b/docx/actions/web/WebOpen.md index f0683cc..4f97cf6 100644 --- a/docx/actions/web/WebOpen.md +++ b/docx/actions/web/WebOpen.md @@ -2,7 +2,7 @@ 打开浏览器,支持 _Chrome_ 和 *Edge* 浏览器。由于使用浏览器用户数据的 *Default* 配置,执行该动作之前需要退出已经打开的浏览器。 -* 建议使用非管理方式运行该动作。 +* *Edge* 浏览器将无法以管理员模式启动。这是微软出于安全原因而做出的明确决定。 ![WebOpen](./images/01.png ":size=90%") @@ -37,4 +37,4 @@ !> 该动作如果首次运行,会检测驱动缓存目录:`%LOCALAPPDATA%\Simple\selenium` 是否有上表列出的相对应的浏览器驱动,如果不存在,则会下载相应的浏览器驱动。因此需要网络连接或者手动下载驱动放置在该目录。 -!> 由于浏览器的安全策略限制,除 *Firefox* 外其它浏览器无法使用管理员身份进行自动化! \ No newline at end of file +!> 由于浏览器的安全策略限制,使用管理员身份执行该动作,可能导致失败! \ No newline at end of file diff --git a/docx/enums/Orientation.md b/docx/enums/Orientation.md new file mode 100644 index 0000000..0f29efd --- /dev/null +++ b/docx/enums/Orientation.md @@ -0,0 +1,12 @@ +# Orientation + +* Left +> +* Right +> + +* Up +> + +* Down +> \ No newline at end of file diff --git a/docx/introduction/README.md b/docx/introduction/README.md index 33c9d07..dfdbc92 100644 --- a/docx/introduction/README.md +++ b/docx/introduction/README.md @@ -1,6 +1,6 @@ # 系统配置要求 -|
| 最低系统要求 | 推荐 | +|
| 最低系统要求 |
推荐
| | :------------------------: | :--------------------------: | :---------------------: | | 操作系統 | Windows® 10 64-bit 1809 以上 | Windows® 11 64-bit | | 处理器 | - | - | @@ -10,10 +10,11 @@ | 网络 | 非必要 | 有网络的环境下使用 | | 分辨率 | 1024X768 | - | -- 最新版本:https://bitbucket.org/winui-release/version/downloads +- 历史版本:https://bitbucket.org/winui-release/version/downloads + - 问题提交:[https://github.com/shelllet/WinUi/issues](https://github.com/shelllet/WinUi/issues) -# 注册版和试用版 +# 注册版 & 试用版 |
|
注册版
|
试用版
| | :------------------------: | :-----------------------------------: | :-----------------------------------: | diff --git a/docx/introduction/installation/images/10.png b/docx/introduction/installation/images/10.png new file mode 100644 index 0000000..1a8d208 Binary files /dev/null and b/docx/introduction/installation/images/10.png differ diff --git a/docx/introduction/installation/setting/action_group_setting.md b/docx/introduction/installation/setting/action_group_setting.md new file mode 100644 index 0000000..af4438e --- /dev/null +++ b/docx/introduction/installation/setting/action_group_setting.md @@ -0,0 +1,7 @@ +## 动作分组隐藏设置 + +1. 该界面控制动作列表中的分组是否显示。 + + ![img](../images/10.png ':size=90%') + +* 默认所有的动作分组都会显示,如果想控制某个不常用的分组及动作不显示,可以在此界面取消勾选相应的分组。 \ No newline at end of file