diff --git a/.github/workflows/github-static.yml b/.github/workflows/github-static.yml index 86e643e..f8acda2 100644 --- a/.github/workflows/github-static.yml +++ b/.github/workflows/github-static.yml @@ -30,14 +30,14 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Pages - uses: actions/configure-pages@v3 + uses: actions/configure-pages@v5 - name: Upload artifact - uses: actions/upload-pages-artifact@v1 + uses: actions/upload-pages-artifact@v3 with: # Upload entire repository path: 'docx' - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v2 + uses: actions/deploy-pages@v4 diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index bed666b..11dd381 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -30,11 +30,11 @@ jobs: runs-on: self-hosted steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Pages - uses: actions/configure-pages@v3 + uses: actions/configure-pages@v5 - name: Upload artifact - uses: actions/upload-pages-artifact@v1 + uses: actions/upload-pages-artifact@v3 with: # Upload entire repository path: "docx" diff --git a/docx/CHANGELOG.md b/docx/CHANGELOG.md index 0846221..6cc1002 100644 --- a/docx/CHANGELOG.md +++ b/docx/CHANGELOG.md @@ -1,3 +1,14 @@ +# [0.40](https://github.com/shelllet/winui/compare/main...dev) (2024-11-04) + +### Changed: +1. 更新注册机制。 +2. 修复一些其它崩溃问题。 + +### Note + +1. 使用管理员权限运行 *winui++*, 无法显示 *动作* 的拖动效果(已知问题)。 +2. 64位下载(x64):https://bitbucket.org/winui-release/version/downloads/winui0.40.0-setup.x64.exe + # [0.39](https://github.com/shelllet/winui/compare/main...dev) (2024-09-30) ### Changed: diff --git a/docx/actions/algorithm/AccessArray.md b/docx/actions/algorithm/AccessArray.md index f752830..54232bd 100644 --- a/docx/actions/algorithm/AccessArray.md +++ b/docx/actions/algorithm/AccessArray.md @@ -24,3 +24,7 @@ ## 其它 示例:https://github.com/shelllet/WinUi/blob/main/algorithm/AccessArray.simple + + + + \ No newline at end of file diff --git a/docx/actions/algorithm/AccessKey.md b/docx/actions/algorithm/AccessKey.md index 048b5dc..135dd64 100644 --- a/docx/actions/algorithm/AccessKey.md +++ b/docx/actions/algorithm/AccessKey.md @@ -22,3 +22,7 @@ ## 其它 示例:https://github.com/shelllet/WinUi/blob/main/algorithm/AccessKey.simple + + + + \ No newline at end of file diff --git a/docx/actions/algorithm/ArraySize.md b/docx/actions/algorithm/ArraySize.md index 440e826..5d444b9 100644 --- a/docx/actions/algorithm/ArraySize.md +++ b/docx/actions/algorithm/ArraySize.md @@ -19,3 +19,7 @@ ## 其它 示例:https://github.com/shelllet/WinUi/blob/main/algorithm/ArraySize.simple + + + + \ No newline at end of file diff --git a/docx/actions/algorithm/CalculateCenter.md b/docx/actions/algorithm/CalculateCenter.md index 6649779..7173bba 100644 --- a/docx/actions/algorithm/CalculateCenter.md +++ b/docx/actions/algorithm/CalculateCenter.md @@ -21,3 +21,7 @@ ### 其它 示例:https://github.com/shelllet/WinUi/blob/main/algorithm/CalculateCenter.simple + + + + \ No newline at end of file diff --git a/docx/actions/algorithm/ConvertPoint.md b/docx/actions/algorithm/ConvertPoint.md index 4c61b21..519e728 100644 --- a/docx/actions/algorithm/ConvertPoint.md +++ b/docx/actions/algorithm/ConvertPoint.md @@ -28,3 +28,8 @@ ### 其它 示例:https://github.com/shelllet/WinUi/blob/main/algorithm/ClientToScreen.simple + + + + + \ No newline at end of file diff --git a/docx/actions/algorithm/FilterArea.md b/docx/actions/algorithm/FilterArea.md index ba5eb7c..623682a 100644 --- a/docx/actions/algorithm/FilterArea.md +++ b/docx/actions/algorithm/FilterArea.md @@ -24,4 +24,9 @@ ### 其它 -示例:https://github.com/shelllet/WinUi/blob/main/algorithm/FilterArea.simple \ No newline at end of file +示例:https://github.com/shelllet/WinUi/blob/main/algorithm/FilterArea.simple + + + + + \ No newline at end of file diff --git a/docx/actions/algorithm/FilterEllipse.md b/docx/actions/algorithm/FilterEllipse.md index 26e9506..669f921 100644 --- a/docx/actions/algorithm/FilterEllipse.md +++ b/docx/actions/algorithm/FilterEllipse.md @@ -32,5 +32,8 @@ 示例:https://github.com/shelllet/WinUi/blob/main/algorithm/FilterEllipse.simple + + + !> 如果短轴的最小值和长轴的最小值相同, 短轴的最大值和长轴的最大值相同,则可以筛选该半径范围内的的圆。 diff --git a/docx/actions/algorithm/FilterPerimeter.md b/docx/actions/algorithm/FilterPerimeter.md index 7bd4fc0..1368ce7 100644 --- a/docx/actions/algorithm/FilterPerimeter.md +++ b/docx/actions/algorithm/FilterPerimeter.md @@ -23,3 +23,7 @@ ## 其它 示例:https://github.com/shelllet/WinUi/blob/main/algorithm/FilterPerimeter.simple + + + + \ No newline at end of file diff --git a/docx/actions/algorithm/FilterText.md b/docx/actions/algorithm/FilterText.md index bef4844..b93cc40 100644 --- a/docx/actions/algorithm/FilterText.md +++ b/docx/actions/algorithm/FilterText.md @@ -24,3 +24,6 @@ 示例:https://github.com/shelllet/WinUi/blob/main/algorithm/FilterText.simple + + + \ No newline at end of file diff --git a/docx/actions/algorithm/JoinString.md b/docx/actions/algorithm/JoinString.md index 40768d2..524665f 100644 --- a/docx/actions/algorithm/JoinString.md +++ b/docx/actions/algorithm/JoinString.md @@ -23,3 +23,7 @@ ## 其它 示例:https://github.com/shelllet/WinUi/blob/main/algorithm/JoinString.simple + + + + \ No newline at end of file diff --git a/docx/actions/algorithm/SplitString.md b/docx/actions/algorithm/SplitString.md index 9f063aa..8ccb202 100644 --- a/docx/actions/algorithm/SplitString.md +++ b/docx/actions/algorithm/SplitString.md @@ -23,3 +23,7 @@ ## 其它 示例:https://github.com/shelllet/WinUi/blob/main/algorithm/SplitString.simple + + + + diff --git a/docx/actions/algorithm/SubString.md b/docx/actions/algorithm/SubString.md index 120e85b..ceed512 100644 --- a/docx/actions/algorithm/SubString.md +++ b/docx/actions/algorithm/SubString.md @@ -26,3 +26,7 @@ ## 其它 示例:https://github.com/shelllet/WinUi/blob/main/algorithm/SubString.simple + + + + \ No newline at end of file diff --git a/docx/actions/control/ActionAlias.md b/docx/actions/control/ActionAlias.md index 8027100..ed81baa 100644 --- a/docx/actions/control/ActionAlias.md +++ b/docx/actions/control/ActionAlias.md @@ -23,6 +23,8 @@ 示例:https://github.com/shelllet/WinUi/blob/main/control/ref.simple + + !> 引用动作只是引用某个动作的执行结果,被引用的动作不会再次被执行。 \ No newline at end of file diff --git a/docx/actions/control/ArithmeticCalculate.md b/docx/actions/control/ArithmeticCalculate.md index cdf599a..5cd4232 100644 --- a/docx/actions/control/ArithmeticCalculate.md +++ b/docx/actions/control/ArithmeticCalculate.md @@ -24,3 +24,7 @@ ## 其它 示例:https://github.com/shelllet/WinUi/blob/main/control/ArithmeticCalculate.simple + + + + \ No newline at end of file diff --git a/docx/actions/control/Break.md b/docx/actions/control/Break.md index 24a2554..febb63d 100644 --- a/docx/actions/control/Break.md +++ b/docx/actions/control/Break.md @@ -14,4 +14,9 @@ ## 其它 -示例:https://github.com/shelllet/WinUi/blob/main/control/break.simple \ No newline at end of file +示例:https://github.com/shelllet/WinUi/blob/main/control/break.simple + + + + + diff --git a/docx/actions/control/IsEmpty.md b/docx/actions/control/IsEmpty.md index ba62594..4c68eb1 100644 --- a/docx/actions/control/IsEmpty.md +++ b/docx/actions/control/IsEmpty.md @@ -20,4 +20,8 @@ ## 其它 -示例:https://github.com/shelllet/WinUi/blob/main/control/isempty.simple \ No newline at end of file +示例:https://github.com/shelllet/WinUi/blob/main/control/isempty.simple + + + + \ No newline at end of file diff --git a/docx/actions/control/LogicalOperator.md b/docx/actions/control/LogicalOperator.md index 6029584..dc7b82e 100644 --- a/docx/actions/control/LogicalOperator.md +++ b/docx/actions/control/LogicalOperator.md @@ -25,3 +25,7 @@ 示例:https://github.com/shelllet/WinUi/blob/main/control/LogicalOperator.simple + + + + \ No newline at end of file diff --git a/docx/actions/control/NameAlias.md b/docx/actions/control/NameAlias.md index 97bf34e..6ec5064 100644 --- a/docx/actions/control/NameAlias.md +++ b/docx/actions/control/NameAlias.md @@ -21,5 +21,8 @@ 示例:https://github.com/shelllet/WinUi/blob/main/control/ref.simple + + + !> 引用动作只是引用某个动作的执行结果,被引用的动作不会再次被执行。 \ No newline at end of file diff --git a/docx/actions/control/Quit.md b/docx/actions/control/Quit.md index e63a397..5774226 100644 --- a/docx/actions/control/Quit.md +++ b/docx/actions/control/Quit.md @@ -18,3 +18,7 @@ ## 其它 示例:https://github.com/shelllet/WinUi/blob/main/control/code.simple + + + +