Skip to content

Commit 4de6bd3

Browse files
committed
Update dev version
Update dev version * Fix eng keyboard doc have not eng content bug * upload dev version
1 parent 5811f48 commit 4de6bd3

File tree

5 files changed

+35
-40
lines changed

5 files changed

+35
-40
lines changed

Diff for: .idea/misc.xml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: .idea/workspace.xml

+27-32
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: dev.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
66

77
[project]
88
name = "je_auto_control_dev"
9-
version = "0.0.64"
9+
version = "0.0.65"
1010
authors = [
1111
{ name = "JE-Chen", email = "zenmailman@gmail.com" },
1212
]

Diff for: docs/source/Eng/doc/keyboard/keyboard_doc.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -35,23 +35,23 @@ The following example presses and releases a key.
3535
3636
type_keyboard("a")
3737
38-
以下範例是檢查鍵盤 a 鍵是否按著
38+
The following example checks whether the 'a' key on the keyboard is being pressed.
3939

4040
.. code-block:: python
4141
4242
from je_auto_control import check_key_is_press
4343
4444
check_key_is_press("a")
4545
46-
以下範例是按下與放開一串按鍵
46+
The following example presses and releases a series of keys.
4747

4848
.. code-block:: python
4949
5050
from je_auto_control import write
5151
5252
write("abcdefg")
5353
54-
以下範例是按下按鍵並相反的釋放按鍵
54+
The following example uses a hotkey to press and then release the passed-in key in reverse.
5555

5656
.. code-block:: python
5757

Diff for: docs/source/Zh/doc/keyboard/keyboard_doc.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
print(get_special_table())
1717
1818
19-
以下範例是按著鍵盤的某個按鍵,並在一秒後釋放
19+
以下範例是按著鍵盤的傳入的按鍵,並在一秒後釋放
2020

2121
.. code-block:: python
2222
@@ -27,7 +27,7 @@
2727
sleep(1)
2828
release_key("a")
2929
30-
以下範例是按下與釋放按鍵
30+
以下範例會幫你完成按下與釋放傳入的按鍵
3131

3232
.. code-block:: python
3333
@@ -51,7 +51,7 @@
5151
5252
write("abcdefg")
5353
54-
以下範例是按下按鍵並相反的釋放按鍵
54+
以下範例使用熱鍵,會按下傳入的按鍵並相反的放開
5555

5656
.. code-block:: python
5757

0 commit comments

Comments
 (0)