Skip to content

Commit

Permalink
Merge branch 'linuxdeepin:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkLii authored Sep 5, 2024
2 parents 729b9ea + bc76a07 commit 7efba69
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CURRENT
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[current]
tag = 2.6.9
tag = 2.7.1
4 changes: 1 addition & 3 deletions docs/.vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,7 @@ export default withMermaid(
{
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: "Deepin Autotest", link: 'https://youqu.uniontech.com/deepin-autotest/'},
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "2.6.9",
"version": "2.7.1",
"devDependencies": {
"busuanzi.pure.js": "^1.0.3",
"markdown-it-mathjax3": "^4.3.2",
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "youqu"
version = "2.6.9"
version = "2.7.1"
authors = [
{ name = "mikigo", email = "[email protected]" },
]
Expand Down Expand Up @@ -33,4 +33,4 @@ packages = [

[project.urls]
Source = "https://github.com/linuxdeepin/youqu"
Documentation = "https://linuxdeepin.github.io/youqu"
Documentation = "https://github.com/linuxdeepin/youqu"
4 changes: 3 additions & 1 deletion src/mouse_key.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,7 @@ def input_message(
interval: [int, float] = 0.2,
wayland_shift: bool = False,
_ydotool: bool = False,
auto_backspace: bool = True,
):
"""
输入字符串
Expand Down Expand Up @@ -283,7 +284,8 @@ def check_chinese():
_hk.insert(1, "shift")
cls.hot_key(*_hk)
# 目前的方案中,粘贴内容后会在末尾会多出一个空格,临时处理:去掉末尾空格
cls.press_key("backspace")
if auto_backspace:
cls.press_key("backspace")
else:
for key in message:
if _ydotool:
Expand Down

0 comments on commit 7efba69

Please sign in to comment.