Skip to content

Commit

Permalink
- circleci: activate linux build and checks
Browse files Browse the repository at this point in the history
- enable mouse position control by default
- increased version for next release
  • Loading branch information
achimmihca committed Sep 13, 2021
1 parent 7c7b0ca commit ba0e962
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ orbs:
workflows:
dedomouse_workflow:
jobs:
# - build-and-test
# - build-executable-linux:
# filters:
# branches:
# only: main
- build-and-test
- build-executable-linux:
filters:
branches:
only: main
- build-executable-windows:
filters:
branches:
Expand Down
2 changes: 1 addition & 1 deletion src/common/Config.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def __init__(self) -> None:
# A drag gesture is started when a click is held for at least this duration.
self.drag_start_click_delay_ms = ReactiveProperty(1000)

self.is_control_mouse_position = ReactiveProperty(False)
self.is_control_mouse_position = ReactiveProperty(True)
self.is_control_click = ReactiveProperty(False)
self.is_control_scroll = ReactiveProperty(False)
self.is_all_control_disabled = ReactiveProperty(False)
Expand Down
2 changes: 1 addition & 1 deletion src/common/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "0.4.1"
version = "0.4.2"

0 comments on commit ba0e962

Please sign in to comment.