Skip to content
Merged

Dev #142

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/dev_python3_10.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ jobs:
run: python ./test/unit_test/screen/screen_test.py
- name: Test Screenshot
run: python ./test/unit_test/screen/screenshot_test.py
- name: Save Screenshot Image
uses: actions/upload-artifact@v4
with:
name: screenshot_png
path: test.png

- name: Test Keyboard type Function
run: python ./test/unit_test/keyboard/keyboard_type_test.py
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/dev_python3_11.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ jobs:
run: python ./test/unit_test/screen/screen_test.py
- name: Test Screenshot
run: python ./test/unit_test/screen/screenshot_test.py
- name: Save Screenshot Image
uses: actions/upload-artifact@v4
with:
name: screenshot_png
path: test.png

- name: Test Keyboard type Function
run: python ./test/unit_test/keyboard/keyboard_type_test.py
Expand Down
95 changes: 0 additions & 95 deletions .github/workflows/dev_python3_8.yml

This file was deleted.

5 changes: 5 additions & 0 deletions .github/workflows/dev_python3_9.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ jobs:
run: python ./test/unit_test/screen/screen_test.py
- name: Test Screenshot
run: python ./test/unit_test/screen/screenshot_test.py
- name: Save Screenshot Image
uses: actions/upload-artifact@v4
with:
name: screenshot_png
path: test.png

- name: Test Keyboard type Function
run: python ./test/unit_test/keyboard/keyboard_type_test.py
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/stable_python3_10.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ jobs:
run: python ./test/unit_test/screen/screen_test.py
- name: Test Screenshot
run: python ./test/unit_test/screen/screenshot_test.py
- name: Save Screenshot Image
uses: actions/upload-artifact@v4
with:
name: screenshot_png
path: test.png

- name: Test Keyboard type Function
run: python ./test/unit_test/keyboard/keyboard_type_test.py
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/stable_python3_11.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ jobs:
run: python ./test/unit_test/screen/screen_test.py
- name: Test Screenshot
run: python ./test/unit_test/screen/screenshot_test.py
- name: Save Screenshot Image
uses: actions/upload-artifact@v4
with:
name: screenshot_png
path: test.png

- name: Test Keyboard type Function
run: python ./test/unit_test/keyboard/keyboard_type_test.py
Expand Down
95 changes: 0 additions & 95 deletions .github/workflows/stable_python3_8.yml

This file was deleted.

5 changes: 5 additions & 0 deletions .github/workflows/stable_python3_9.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ jobs:
run: python ./test/unit_test/screen/screen_test.py
- name: Test Screenshot
run: python ./test/unit_test/screen/screenshot_test.py
- name: Save Screenshot Image
uses: actions/upload-artifact@v4
with:
name: screenshot_png
path: test.png

- name: Test Keyboard type Function
run: python ./test/unit_test/keyboard/keyboard_type_test.py
Expand Down
32 changes: 17 additions & 15 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion dev.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "je_auto_control_dev"
version = "0.0.104"
version = "0.0.106"
authors = [
{ name = "JE-Chen", email = "[email protected]" },
]
Expand All @@ -21,6 +21,7 @@ dependencies = [
"pyobjc-core;platform_system=='Darwin'",
"pyobjc;platform_system=='Darwin'",
"python-Xlib;platform_system=='Linux'",
"mss"
]
classifiers = [
"Programming Language :: Python :: 3.9",
Expand Down
3 changes: 2 additions & 1 deletion dev_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@ build
twine
sphinx
sphinx-rtd-theme
Pyside6
Pyside6==6.8.1
qt-material
mss
5 changes: 3 additions & 2 deletions je_auto_control/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@
package_manager
from je_auto_control.utils.project.create_project_structure import \
create_project_dir
# Scheduler
from je_auto_control.utils.scheduler.extend_apscheduler import SchedulerManager
# Shell command
from je_auto_control.utils.shell_process.shell_exec import ShellManager
from je_auto_control.utils.shell_process.shell_exec import default_shell_manager
Expand Down Expand Up @@ -102,8 +104,7 @@
# import screen
from je_auto_control.wrapper.auto_control_screen import screen_size
from je_auto_control.wrapper.auto_control_screen import screenshot
# Scheduler
from je_auto_control.utils.scheduler.extend_apscheduler import SchedulerManager

__all__ = [
"click_mouse", "mouse_keys_table", "get_mouse_position", "press_mouse", "release_mouse",
"mouse_scroll", "set_mouse_position", "special_mouse_keys_table",
Expand Down
Loading