fusuma 1.11.1 → 2.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (93) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +49 -7
  3. data/fusuma.gemspec +6 -16
  4. data/lib/fusuma.rb +91 -28
  5. data/lib/fusuma/config.rb +34 -62
  6. data/lib/fusuma/config/index.rb +39 -6
  7. data/lib/fusuma/config/searcher.rb +166 -0
  8. data/lib/fusuma/custom_process.rb +13 -0
  9. data/lib/fusuma/device.rb +22 -7
  10. data/lib/fusuma/environment.rb +6 -4
  11. data/lib/fusuma/hash_support.rb +40 -0
  12. data/lib/fusuma/libinput_command.rb +17 -21
  13. data/lib/fusuma/multi_logger.rb +2 -6
  14. data/lib/fusuma/plugin/base.rb +18 -15
  15. data/lib/fusuma/plugin/buffers/buffer.rb +3 -2
  16. data/lib/fusuma/plugin/buffers/gesture_buffer.rb +34 -25
  17. data/lib/fusuma/plugin/buffers/timer_buffer.rb +46 -0
  18. data/lib/fusuma/plugin/detectors/detector.rb +26 -5
  19. data/lib/fusuma/plugin/detectors/pinch_detector.rb +109 -58
  20. data/lib/fusuma/plugin/detectors/rotate_detector.rb +91 -50
  21. data/lib/fusuma/plugin/detectors/swipe_detector.rb +93 -56
  22. data/lib/fusuma/plugin/events/event.rb +5 -4
  23. data/lib/fusuma/plugin/events/records/context_record.rb +27 -0
  24. data/lib/fusuma/plugin/events/records/gesture_record.rb +9 -6
  25. data/lib/fusuma/plugin/events/records/index_record.rb +46 -14
  26. data/lib/fusuma/plugin/events/records/record.rb +1 -1
  27. data/lib/fusuma/plugin/events/records/text_record.rb +2 -1
  28. data/lib/fusuma/plugin/executors/command_executor.rb +21 -6
  29. data/lib/fusuma/plugin/executors/executor.rb +45 -3
  30. data/lib/fusuma/plugin/filters/filter.rb +1 -1
  31. data/lib/fusuma/plugin/filters/libinput_device_filter.rb +6 -7
  32. data/lib/fusuma/plugin/filters/libinput_timeout_filter.rb +2 -2
  33. data/lib/fusuma/plugin/inputs/input.rb +64 -8
  34. data/lib/fusuma/plugin/inputs/libinput_command_input.rb +19 -9
  35. data/lib/fusuma/plugin/inputs/timer_input.rb +63 -0
  36. data/lib/fusuma/plugin/manager.rb +22 -29
  37. data/lib/fusuma/plugin/parsers/libinput_gesture_parser.rb +10 -8
  38. data/lib/fusuma/plugin/parsers/parser.rb +8 -9
  39. data/lib/fusuma/string_support.rb +16 -0
  40. data/lib/fusuma/version.rb +1 -1
  41. data/spec/helpers/config_helper.rb +20 -0
  42. data/spec/lib/config/searcher_spec.rb +97 -0
  43. data/spec/lib/config_spec.rb +112 -0
  44. data/spec/lib/custom_process_spec.rb +28 -0
  45. data/spec/lib/device_spec.rb +98 -0
  46. data/spec/lib/dummy_config.yml +31 -0
  47. data/spec/lib/fusuma_spec.rb +103 -0
  48. data/spec/lib/libinput-list-devices_iberianpig-XPS-9360.txt +181 -0
  49. data/spec/lib/libinput-list-devices_magic_trackpad.txt +51 -0
  50. data/spec/lib/libinput-list-devices_razer_razer_blade.txt +252 -0
  51. data/spec/lib/libinput-list-devices_thejinx0r.txt +361 -0
  52. data/spec/lib/libinput-list-devices_unavailable.txt +36 -0
  53. data/spec/lib/libinput_command_spec.rb +167 -0
  54. data/spec/lib/plugin/base_spec.rb +74 -0
  55. data/spec/lib/plugin/buffers/buffer_spec.rb +80 -0
  56. data/spec/lib/plugin/buffers/dummy_buffer.rb +20 -0
  57. data/spec/lib/plugin/buffers/gesture_buffer_spec.rb +172 -0
  58. data/spec/lib/plugin/detectors/detector_spec.rb +43 -0
  59. data/spec/lib/plugin/detectors/dummy_detector.rb +24 -0
  60. data/spec/lib/plugin/detectors/pinch_detector_spec.rb +119 -0
  61. data/spec/lib/plugin/detectors/rotate_detector_spec.rb +125 -0
  62. data/spec/lib/plugin/detectors/swipe_detector_spec.rb +118 -0
  63. data/spec/lib/plugin/events/event_spec.rb +30 -0
  64. data/spec/lib/plugin/events/records/gesture_record_spec.rb +22 -0
  65. data/spec/lib/plugin/events/records/record_spec.rb +31 -0
  66. data/spec/lib/plugin/events/records/text_record_spec.rb +26 -0
  67. data/spec/lib/plugin/executors/command_executor_spec.rb +57 -0
  68. data/spec/lib/plugin/executors/executor_spec.rb +160 -0
  69. data/spec/lib/plugin/filters/filter_spec.rb +92 -0
  70. data/spec/lib/plugin/filters/libinput_filter_spec.rb +120 -0
  71. data/spec/lib/plugin/inputs/input_spec.rb +70 -0
  72. data/spec/lib/plugin/inputs/libinput_command_input_spec.rb +120 -0
  73. data/spec/lib/plugin/inputs/timer_input_spec.rb +40 -0
  74. data/spec/lib/plugin/manager_spec.rb +27 -0
  75. data/spec/lib/plugin/parsers/parser_spec.rb +45 -0
  76. data/spec/spec_helper.rb +20 -0
  77. metadata +90 -167
  78. data/.github/FUNDING.yml +0 -8
  79. data/.github/ISSUE_TEMPLATE/bug_report.md +0 -32
  80. data/.github/ISSUE_TEMPLATE/feature_request.md +0 -17
  81. data/.github/pull_request_template.md +0 -9
  82. data/.github/stale.yml +0 -18
  83. data/.gitignore +0 -17
  84. data/.reek.yml +0 -96
  85. data/.rspec +0 -2
  86. data/.rubocop.yml +0 -37
  87. data/.rubocop_todo.yml +0 -40
  88. data/.travis.yml +0 -11
  89. data/CHANGELOG.md +0 -456
  90. data/CODE_OF_CONDUCT.md +0 -74
  91. data/CONTRIBUTING.md +0 -72
  92. data/Gemfile +0 -6
  93. data/Rakefile +0 -15
data/.github/FUNDING.yml DELETED
@@ -1,8 +0,0 @@
1
- # These are supported funding model platforms
2
-
3
- github: [iberianpig] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
4
- patreon: iberianpig # Replace with a single Patreon username
5
- open_collective: # Replace with a single Open Collective username
6
- ko_fi: # Replace with a single Ko-fi username
7
- tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8
- custom: # Replace with a single custom sponsorship URL
@@ -1,32 +0,0 @@
1
- ---
2
- name: Bug report
3
- about: Create a report to help us improve
4
-
5
- ---
6
-
7
- <!--
8
- Before create a report, please check below,
9
- * Read Documents. https://github.com/iberianpig/fusuma#installation
10
- * Checked that `libinput-debug-events` or `libinput debug-events` worked correctly.
11
- * Reproduced the problem in latest version. Update fusuma with `gem update fusuma`
12
- * Checked that your issue isn't already filed: https://github.com/iberianpig/fusuma/issues
13
- -->
14
-
15
- **Describe the bug**
16
- A clear and concise description of what the bug is.
17
-
18
- **To Reproduce**
19
- Steps to reproduce the behavior:
20
- 1. [First Step]
21
- 2. [Second Step]
22
- 3. [and so on...]
23
-
24
- **Expected behavior**
25
- A clear and concise description of what you expected to happen.
26
-
27
- **Versions**
28
- You can get this information from copy and paste the output of `fusuma --version` from the command line. Also, please include the OS and what version of the OS you're running.
29
-
30
-
31
- **Additional context**
32
- Any additional context, your `~/.config/fusuma/config.yml` or data that might be necessary to reproduce the issue.
@@ -1,17 +0,0 @@
1
- ---
2
- name: Feature request
3
- about: Suggest an idea for this project
4
-
5
- ---
6
-
7
- **Is your feature request related to a problem? Please describe.**
8
- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
9
-
10
- **Describe the solution you'd like**
11
- A clear and concise description of what you want to happen.
12
-
13
- **Describe alternatives you've considered**
14
- A clear and concise description of any alternative solutions or features you've considered.
15
-
16
- **Additional context**
17
- Add any other context about the feature request here.
@@ -1,9 +0,0 @@
1
- Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly:
2
-
3
- - [ ] Make sure to open an issue as a [bug/issue](https://github.com/iberianpig/fusuma/issues) before writing your code! That way we can discuss the change, evaluate designs, and agree on the general idea.
4
-
5
- - [ ] Follow the instructions in [CONTRIBUTING](https://github.com/iberianpig/fusuma/blob/master/CONTRIBUTING.md). Most importantly, ensure the tests and linter pass by running `bundle exec rspec` and `bundle exec rubocop`.
6
-
7
- - [ ] Update code documentation if necessary.
8
-
9
- closes: #<issue_number_goes_here>
data/.github/stale.yml DELETED
@@ -1,18 +0,0 @@
1
- # Number of days of inactivity before an issue becomes stale
2
- daysUntilStale: 60
3
- # Number of days of inactivity before a stale issue is closed
4
- daysUntilClose: 7
5
- # Issues with these labels will never be considered stale
6
- exemptLabels:
7
- - pinned
8
- - security
9
- # Label to use when marking an issue as stale
10
- staleLabel: wontfix
11
- # Comment to post when marking an issue as stale. Set to `false` to disable
12
- markComment: >
13
- This issue has been automatically marked as stale because it has not had
14
- recent activity. It will be closed if no further activity occurs. Thank you
15
- for your contributions.
16
- # Comment to post when closing a stale issue. Set to `false` to disable
17
- closeComment: false
18
-
data/.gitignore DELETED
@@ -1,17 +0,0 @@
1
- /.bundle/
2
- /.yardoc
3
- /Gemfile.lock
4
- /_yardoc/
5
- /coverage/
6
- /doc/
7
- /pkg/
8
- /spec/reports/
9
- /tmp/
10
-
11
- # rspec failure tracking
12
- .rspec_status
13
-
14
- .ruby-version
15
-
16
- # todo
17
- todo.md
data/.reek.yml DELETED
@@ -1,96 +0,0 @@
1
-
2
- ---
3
- ### enabled rules
4
- detectors:
5
- TooManyInstanceVariables:
6
- enabled: true
7
- exclude: []
8
- max_instance_variables: 50
9
- TooManyMethods:
10
- enabled: true
11
- exclude: []
12
- max_methods: 30
13
- TooManyStatements:
14
- enabled: true
15
- exclude: []
16
- max_statements: 80
17
- TooManyConstants:
18
- enabled: true
19
- exclude: []
20
- max_constants: 50
21
- LongParameterList:
22
- enabled: true
23
- exclude: []
24
- max_params: 8
25
- LongYieldList:
26
- enabled: true
27
- exclude: []
28
- max_params: 8
29
- NestedIterators:
30
- enabled: true
31
- exclude: []
32
- max_allowed_nesting: 5
33
- ignore_iterators:
34
- - tap
35
- ModuleInitialize:
36
- enabled: true
37
- exclude: []
38
- SubclassedFromCoreClass:
39
- enabled: true
40
- exclude: []
41
-
42
- ### unanabled rules
43
- Attribute:
44
- enabled: false
45
- exclude: []
46
- BooleanParameter:
47
- enabled: false
48
- exclude: []
49
- ClassVariable:
50
- enabled: false
51
- exclude: []
52
- ControlParameter:
53
- enabled: false
54
- exclude: []
55
- DataClump:
56
- enabled: false
57
- exclude: []
58
- DuplicateMethodCall:
59
- enabled: false
60
- exclude: []
61
- FeatureEnvy:
62
- enabled: false
63
- exclude: []
64
- InstanceVariableAssumption:
65
- enabled: false
66
- exclude: []
67
- IrresponsibleModule:
68
- enabled: false
69
- exclude: []
70
- ManualDispatch:
71
- enabled: false
72
- exclude: []
73
- NilCheck:
74
- enabled: false
75
- exclude: []
76
- RepeatedConditional:
77
- enabled: false
78
- exclude: []
79
- UncommunicativeMethodName:
80
- enabled: false
81
- exclude: []
82
- UncommunicativeModuleName:
83
- enabled: false
84
- exclude: []
85
- UncommunicativeParameterName:
86
- enabled: false
87
- exclude: []
88
- UncommunicativeVariableName:
89
- enabled: false
90
- exclude: []
91
- UnusedParameters:
92
- enabled: false
93
- exclude: []
94
- UtilityFunction:
95
- enabled: false
96
- exclude: []
data/.rspec DELETED
@@ -1,2 +0,0 @@
1
- --format documentation
2
- --color
data/.rubocop.yml DELETED
@@ -1,37 +0,0 @@
1
- inherit_from: .rubocop_todo.yml
2
-
3
- Metrics/ModuleLength:
4
- Exclude:
5
- - "**/*_spec.rb"
6
-
7
- Metrics/BlockLength:
8
- Exclude:
9
- - "**/*_spec.rb"
10
- - "fusuma.gemspec"
11
-
12
- Layout/LineLength:
13
- Max: 100
14
- Exclude:
15
- - "fusuma.gemspec"
16
- - "**/*_spec.rb"
17
-
18
- # For rubocop < 1.0.0
19
- Style/HashEachMethods:
20
- Enabled: true
21
-
22
- # For rubocop < 1.0.0
23
- Style/HashTransformKeys:
24
- Enabled: true
25
-
26
- # For rubocop < 1.0.0
27
- Style/HashTransformValues:
28
- Enabled: true
29
-
30
- # For compatible ruby 2.3
31
- Style/RedundantBegin:
32
- Enabled: false
33
-
34
- Lint/RaiseException:
35
- Enabled: true
36
- Lint/StructNewOverride:
37
- Enabled: true
data/.rubocop_todo.yml DELETED
@@ -1,40 +0,0 @@
1
- # This configuration was generated by
2
- # `rubocop --auto-gen-config`
3
- # on 2020-01-07 13:21:56 +0900 using RuboCop version 0.78.0.
4
- # The point is for the user to remove these configuration records
5
- # one by one as the offenses are removed from the code base.
6
- # Note that changes in the inspected code, or installation of new
7
- # versions of RuboCop, may require this file to be generated again.
8
-
9
- # Offense count: 5
10
- Metrics/AbcSize:
11
- Max: 25
12
-
13
- # Offense count: 1
14
- # Configuration parameters: CountComments.
15
- Metrics/ClassLength:
16
- Max: 101
17
-
18
- # Offense count: 8
19
- # Configuration parameters: CountComments, ExcludedMethods.
20
- Metrics/MethodLength:
21
- Max: 15
22
-
23
- # Offense count: 3
24
- Style/Documentation:
25
- Exclude:
26
- - 'spec/**/*'
27
- - 'test/**/*'
28
- - 'lib/fusuma/plugin/detectors/pinch_detector.rb'
29
- - 'lib/fusuma/plugin/detectors/rotate_detector.rb'
30
- - 'lib/fusuma/plugin/detectors/swipe_detector.rb'
31
-
32
- # Offense count: 3
33
- # Cop supports --auto-correct.
34
- # Configuration parameters: AutoCorrect, EnforcedStyle, IgnoredMethods.
35
- # SupportedStyles: predicate, comparison
36
- Style/NumericPredicate:
37
- Exclude:
38
- - 'spec/**/*'
39
- - 'lib/fusuma/plugin/detectors/rotate_detector.rb'
40
- - 'lib/fusuma/plugin/detectors/swipe_detector.rb'
data/.travis.yml DELETED
@@ -1,11 +0,0 @@
1
- sudo: false
2
-
3
- language: ruby
4
- cache: bundler
5
- rvm:
6
- - 2.3.1
7
- - 2.4
8
- - 2.5
9
- - 2.6
10
- - 2.7
11
- before_install: gem install bundler --no-document -v 2.0.1
data/CHANGELOG.md DELETED
@@ -1,456 +0,0 @@
1
- # Changelog
2
-
3
- ## [v1.11.0](https://github.com/iberianpig/fusuma/tree/v1.11.0) (2020-07-25)
4
-
5
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v1.10.2...v1.11.0)
6
-
7
- **Implemented enhancements:**
8
-
9
- - Feature/yaml check [\#193](https://github.com/iberianpig/fusuma/pull/193) ([iberianpig](https://github.com/iberianpig))
10
-
11
- ## [v1.10.2](https://github.com/iberianpig/fusuma/tree/v1.10.2) (2020-07-23)
12
-
13
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v1.10.1...v1.10.2)
14
-
15
- **Closed issues:**
16
-
17
- - Gestures from libinput are not recognised [\#192](https://github.com/iberianpig/fusuma/issues/192)
18
- - Vertical 4 finger swipe and rotation not recognised [\#189](https://github.com/iberianpig/fusuma/issues/189)
19
- - Pinch in gesture not recognized in Popos 20.04 \(Ubuntu 20.04\) [\#184](https://github.com/iberianpig/fusuma/issues/184)
20
- - Fusuma crashes while switching between workspaces on KDE Plasma [\#181](https://github.com/iberianpig/fusuma/issues/181)
21
- - Window Prev/Next moves desktop environment when no active window [\#178](https://github.com/iberianpig/fusuma/issues/178)
22
- - Add ydotool to docs. [\#177](https://github.com/iberianpig/fusuma/issues/177)
23
- - Can't use alternative .config.yml [\#176](https://github.com/iberianpig/fusuma/issues/176)
24
- - Fusuma stops working sometimes [\#175](https://github.com/iberianpig/fusuma/issues/175)
25
- - Pinch \(2, in\) does not work. [\#174](https://github.com/iberianpig/fusuma/issues/174)
26
-
27
- **Merged pull requests:**
28
-
29
- - 177. Add ydootool to docs. [\#179](https://github.com/iberianpig/fusuma/pull/179) ([mattdemarillac](https://github.com/mattdemarillac))
30
-
31
- ## [v1.10.1](https://github.com/iberianpig/fusuma/tree/v1.10.1) (2020-05-15)
32
-
33
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v1.10.0...v1.10.1)
34
-
35
- **Closed issues:**
36
-
37
- - Some gestures are not always recognized [\#172](https://github.com/iberianpig/fusuma/issues/172)
38
- - Unable to reprogram Pinch [\#171](https://github.com/iberianpig/fusuma/issues/171)
39
-
40
- ## [v1.10.0](https://github.com/iberianpig/fusuma/tree/v1.10.0) (2020-05-04)
41
-
42
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v1.9.0...v1.10.0)
43
-
44
- **Closed issues:**
45
-
46
- - Each action took about 2 secs to react [\#167](https://github.com/iberianpig/fusuma/issues/167)
47
- - ruby2.7 [\#164](https://github.com/iberianpig/fusuma/issues/164)
48
- - Zoom-in not really usable on Vivaldi [\#159](https://github.com/iberianpig/fusuma/issues/159)
49
- - Reversed directions with no alternatives [\#133](https://github.com/iberianpig/fusuma/issues/133)
50
-
51
- **Merged pull requests:**
52
-
53
- - Implement timeout event [\#169](https://github.com/iberianpig/fusuma/pull/169) ([iberianpig](https://github.com/iberianpig))
54
-
55
- ## [v1.9.0](https://github.com/iberianpig/fusuma/tree/v1.9.0) (2020-03-30)
56
-
57
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v1.8.0...v1.9.0)
58
-
59
- **Closed issues:**
60
-
61
- - Touchpad is filtered in listed devices [\#156](https://github.com/iberianpig/fusuma/issues/156)
62
-
63
- ## [v1.8.0](https://github.com/iberianpig/fusuma/tree/v1.8.0) (2020-03-28)
64
-
65
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v1.7.0...v1.8.0)
66
-
67
- **Implemented enhancements:**
68
-
69
- - Capturing Finger Taps on Touchpad [\#152](https://github.com/iberianpig/fusuma/issues/152)
70
-
71
- **Closed issues:**
72
-
73
- - When xdotool acts crazy. Workaround should be clearly informed. [\#146](https://github.com/iberianpig/fusuma/issues/146)
74
-
75
- **Merged pull requests:**
76
-
77
- - Fix cops [\#158](https://github.com/iberianpig/fusuma/pull/158) ([iberianpig](https://github.com/iberianpig))
78
- - Add ruby 2.7 to .travis.yml [\#157](https://github.com/iberianpig/fusuma/pull/157) ([iberianpig](https://github.com/iberianpig))
79
-
80
- ## [v1.7.0](https://github.com/iberianpig/fusuma/tree/v1.7.0) (2020-03-25)
81
-
82
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v1.6.0...v1.7.0)
83
-
84
- ## [v1.6.0](https://github.com/iberianpig/fusuma/tree/v1.6.0) (2020-03-14)
85
-
86
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v1.5.0...v1.6.0)
87
-
88
- ## [v1.5.0](https://github.com/iberianpig/fusuma/tree/v1.5.0) (2020-03-02)
89
-
90
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v1.4.1...v1.5.0)
91
-
92
- ## [v1.4.1](https://github.com/iberianpig/fusuma/tree/v1.4.1) (2020-02-27)
93
-
94
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v1.4.0...v1.4.1)
95
-
96
- ## [v1.4.0](https://github.com/iberianpig/fusuma/tree/v1.4.0) (2020-02-18)
97
-
98
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v1.3.3...v1.4.0)
99
-
100
- **Closed issues:**
101
-
102
- - Can not use fusuma with a error: NoMethodError [\#149](https://github.com/iberianpig/fusuma/issues/149)
103
-
104
- ## [v1.3.3](https://github.com/iberianpig/fusuma/tree/v1.3.3) (2020-02-10)
105
-
106
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v1.3.2...v1.3.3)
107
-
108
- ## [v1.3.2](https://github.com/iberianpig/fusuma/tree/v1.3.2) (2020-01-07)
109
-
110
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v1.3.1...v1.3.2)
111
-
112
- **Closed issues:**
113
-
114
- - Two-finger zoom direction not reversing [\#143](https://github.com/iberianpig/fusuma/issues/143)
115
-
116
- **Merged pull requests:**
117
-
118
- - Feature/143/gesture direction not reversing [\#150](https://github.com/iberianpig/fusuma/pull/150) ([iberianpig](https://github.com/iberianpig))
119
-
120
- ## [v1.3.1](https://github.com/iberianpig/fusuma/tree/v1.3.1) (2020-01-03)
121
-
122
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v1.3.0...v1.3.1)
123
-
124
- **Implemented enhancements:**
125
-
126
- - Assign command with combination of key press and gesture [\#105](https://github.com/iberianpig/fusuma/issues/105)
127
-
128
- **Closed issues:**
129
-
130
- - Some gestures do not work anymore after resume [\#148](https://github.com/iberianpig/fusuma/issues/148)
131
- - Quick swipes are not recognised by Fusuma [\#147](https://github.com/iberianpig/fusuma/issues/147)
132
- - pinch out gesture laggy [\#139](https://github.com/iberianpig/fusuma/issues/139)
133
-
134
- ## [v1.3.0](https://github.com/iberianpig/fusuma/tree/v1.3.0) (2019-11-11)
135
-
136
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v1.2.1...v1.3.0)
137
-
138
- **Implemented enhancements:**
139
-
140
- - Add show-keycodes option to libinput\_command\_input [\#138](https://github.com/iberianpig/fusuma/pull/138) ([iberianpig](https://github.com/iberianpig))
141
-
142
- **Closed issues:**
143
-
144
- - elementory os libinput debug shows Permission denied [\#140](https://github.com/iberianpig/fusuma/issues/140)
145
-
146
- **Merged pull requests:**
147
-
148
- - Merge modifier event records [\#142](https://github.com/iberianpig/fusuma/pull/142) ([iberianpig](https://github.com/iberianpig))
149
-
150
- ## [v1.2.1](https://github.com/iberianpig/fusuma/tree/v1.2.1) (2019-10-19)
151
-
152
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v1.2...v1.2.1)
153
-
154
- **Fixed bugs:**
155
-
156
- - Fusuma must be started after connecting bluetooth trackpad [\#125](https://github.com/iberianpig/fusuma/issues/125)
157
-
158
- **Merged pull requests:**
159
-
160
- - Reload Filter when new device is added [\#137](https://github.com/iberianpig/fusuma/pull/137) ([iberianpig](https://github.com/iberianpig))
161
-
162
- ## [v1.2](https://github.com/iberianpig/fusuma/tree/v1.2) (2019-10-13)
163
-
164
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v1.1...v1.2)
165
-
166
- ## [v1.1](https://github.com/iberianpig/fusuma/tree/v1.1) (2019-10-12)
167
-
168
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v1.0...v1.1)
169
-
170
- ## [v1.0](https://github.com/iberianpig/fusuma/tree/v1.0) (2019-10-12)
171
-
172
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v0.11.1...v1.0)
173
-
174
- **Merged pull requests:**
175
-
176
- - Update rake requirement from ~\> 12.3 to ~\> 13.0 [\#136](https://github.com/iberianpig/fusuma/pull/136) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
177
- - Fixed Spelling mistake [\#128](https://github.com/iberianpig/fusuma/pull/128) ([thomascrha](https://github.com/thomascrha))
178
- - \[Readme\] Added step to install Ruby [\#127](https://github.com/iberianpig/fusuma/pull/127) ([mmoraes-rafael](https://github.com/mmoraes-rafael))
179
- - Plugin Based Architecture [\#116](https://github.com/iberianpig/fusuma/pull/116) ([iberianpig](https://github.com/iberianpig))
180
-
181
- ## [v0.11.1](https://github.com/iberianpig/fusuma/tree/v0.11.1) (2019-05-27)
182
-
183
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v0.11.0...v0.11.1)
184
-
185
- **Merged pull requests:**
186
-
187
- - Added Mac OS gestures mapping for Ubuntu [\#123](https://github.com/iberianpig/fusuma/pull/123) ([Rajanpandey](https://github.com/Rajanpandey))
188
-
189
- ## [v0.11.0](https://github.com/iberianpig/fusuma/tree/v0.11.0) (2019-05-24)
190
-
191
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v0.10.2...v0.11.0)
192
-
193
- **Fixed bugs:**
194
-
195
- - Misspelling in description [\#100](https://github.com/iberianpig/fusuma/issues/100)
196
- - Add Warning `shortcut: ` property [\#95](https://github.com/iberianpig/fusuma/issues/95)
197
-
198
- **Merged pull requests:**
199
-
200
- - Fork, daemonize, and detach when running executing commands. [\#121](https://github.com/iberianpig/fusuma/pull/121) ([epakai](https://github.com/epakai))
201
- - Update bundler requirement from ~\> 1.13 to ~\> 2.0 [\#111](https://github.com/iberianpig/fusuma/pull/111) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
202
-
203
- ## [v0.10.2](https://github.com/iberianpig/fusuma/tree/v0.10.2) (2018-08-30)
204
-
205
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v0.10.1...v0.10.2)
206
-
207
- ## [v0.10.1](https://github.com/iberianpig/fusuma/tree/v0.10.1) (2018-08-30)
208
-
209
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v0.9.2...v0.10.1)
210
-
211
- **Merged pull requests:**
212
-
213
- - Interval and threshold specific for a trigger [\#92](https://github.com/iberianpig/fusuma/pull/92) ([irq](https://github.com/irq))
214
- - Fix spelling: Elementary to elementary [\#90](https://github.com/iberianpig/fusuma/pull/90) ([ryonakano](https://github.com/ryonakano))
215
-
216
- ## [v0.9.2](https://github.com/iberianpig/fusuma/tree/v0.9.2) (2018-07-19)
217
-
218
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v0.9.1...v0.9.2)
219
-
220
- ## [v0.9.1](https://github.com/iberianpig/fusuma/tree/v0.9.1) (2018-07-16)
221
-
222
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v0.9.0...v0.9.1)
223
-
224
- ## [v0.9.0](https://github.com/iberianpig/fusuma/tree/v0.9.0) (2018-07-14)
225
-
226
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v0.8.0...v0.9.0)
227
-
228
- **Implemented enhancements:**
229
-
230
- - Option to filter libinput by device [\#77](https://github.com/iberianpig/fusuma/issues/77)
231
-
232
- **Fixed bugs:**
233
-
234
- - Error: /usr/share/ruby/open3.rb:199:in `spawn': No such file or directory - libinput-list-devices \(Errno::ENOENT\) [\#84](https://github.com/iberianpig/fusuma/issues/84)
235
-
236
- ## [v0.8.0](https://github.com/iberianpig/fusuma/tree/v0.8.0) (2018-06-23)
237
-
238
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v0.7.2...v0.8.0)
239
-
240
- **Fixed bugs:**
241
-
242
- - Deprecation warning [\#76](https://github.com/iberianpig/fusuma/issues/76)
243
-
244
- ## [v0.7.2](https://github.com/iberianpig/fusuma/tree/v0.7.2) (2018-06-17)
245
-
246
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v0.7.1...v0.7.2)
247
-
248
- **Closed issues:**
249
-
250
- - Print system information for debuging [\#70](https://github.com/iberianpig/fusuma/issues/70)
251
- - rescue from SIGINT Interruption with Ctrl-C [\#64](https://github.com/iberianpig/fusuma/issues/64)
252
-
253
- ## [v0.7.1](https://github.com/iberianpig/fusuma/tree/v0.7.1) (2018-06-01)
254
-
255
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v0.7.0...v0.7.1)
256
-
257
- ## [v0.7.0](https://github.com/iberianpig/fusuma/tree/v0.7.0) (2018-06-01)
258
-
259
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v0.6.0...v0.7.0)
260
-
261
- ## [v0.6.0](https://github.com/iberianpig/fusuma/tree/v0.6.0) (2018-05-31)
262
-
263
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v0.5.0...v0.6.0)
264
-
265
- **Implemented enhancements:**
266
-
267
- - Daemon mode [\#81](https://github.com/iberianpig/fusuma/issues/81)
268
-
269
- ## [v0.5.0](https://github.com/iberianpig/fusuma/tree/v0.5.0) (2018-05-31)
270
-
271
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v0.4.1...v0.5.0)
272
-
273
- **Implemented enhancements:**
274
-
275
- - feature request: configure number of fingers for pinch [\#82](https://github.com/iberianpig/fusuma/issues/82)
276
-
277
- ## [v0.4.1](https://github.com/iberianpig/fusuma/tree/v0.4.1) (2018-05-22)
278
-
279
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v0.4.0...v0.4.1)
280
-
281
- **Implemented enhancements:**
282
-
283
- - assigning commands [\#50](https://github.com/iberianpig/fusuma/issues/50)
284
-
285
- **Fixed bugs:**
286
-
287
- - Questionable necessity of --enable-dwt [\#78](https://github.com/iberianpig/fusuma/issues/78)
288
-
289
- **Merged pull requests:**
290
-
291
- - Remove --enable-dwt option [\#80](https://github.com/iberianpig/fusuma/pull/80) ([z0rc](https://github.com/z0rc))
292
-
293
- ## [v0.4.0](https://github.com/iberianpig/fusuma/tree/v0.4.0) (2018-04-15)
294
-
295
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v0.3.7...v0.4.0)
296
-
297
- ## [v0.3.7](https://github.com/iberianpig/fusuma/tree/v0.3.7) (2018-04-15)
298
-
299
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v0.3.5...v0.3.7)
300
-
301
- **Merged pull requests:**
302
-
303
- - Assigning commands [\#73](https://github.com/iberianpig/fusuma/pull/73) ([iberianpig](https://github.com/iberianpig))
304
- - Update rake requirement to ~\> 12.3 [\#72](https://github.com/iberianpig/fusuma/pull/72) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
305
-
306
- ## [v0.3.5](https://github.com/iberianpig/fusuma/tree/v0.3.5) (2018-01-01)
307
-
308
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v0.3.4...v0.3.5)
309
-
310
- ## [v0.3.4](https://github.com/iberianpig/fusuma/tree/v0.3.4) (2018-01-01)
311
-
312
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v0.3.3...v0.3.4)
313
-
314
- ## [v0.3.3](https://github.com/iberianpig/fusuma/tree/v0.3.3) (2017-06-07)
315
-
316
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v0.3.2...v0.3.3)
317
-
318
- ## [v0.3.2](https://github.com/iberianpig/fusuma/tree/v0.3.2) (2017-04-22)
319
-
320
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v0.3.1...v0.3.2)
321
-
322
- **Implemented enhancements:**
323
-
324
- - External + Internal Trackpad? [\#34](https://github.com/iberianpig/fusuma/issues/34)
325
-
326
- ## [v0.3.1](https://github.com/iberianpig/fusuma/tree/v0.3.1) (2017-04-22)
327
-
328
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v0.3.0...v0.3.1)
329
-
330
- **Implemented enhancements:**
331
-
332
- - How about adding adjustable interval threshold? [\#35](https://github.com/iberianpig/fusuma/issues/35)
333
-
334
- ## [v0.3.0](https://github.com/iberianpig/fusuma/tree/v0.3.0) (2017-04-22)
335
-
336
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v0.2.7...v0.3.0)
337
-
338
- **Implemented enhancements:**
339
-
340
- - Maybe add info that you need to restart? [\#33](https://github.com/iberianpig/fusuma/issues/33)
341
-
342
- **Fixed bugs:**
343
-
344
- - parse\_finger\_directions: undefined method `tr' for nil:NilClass \(NoMethodError\) [\#29](https://github.com/iberianpig/fusuma/issues/29)
345
- - Error after upgrading to libinput 1.6.0 [\#26](https://github.com/iberianpig/fusuma/issues/26)
346
-
347
- **Merged pull requests:**
348
-
349
- - Added interval options to config. [\#36](https://github.com/iberianpig/fusuma/pull/36) ([joshuatshaffer](https://github.com/joshuatshaffer))
350
-
351
- ## [v0.2.7](https://github.com/iberianpig/fusuma/tree/v0.2.7) (2017-02-04)
352
-
353
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v0.2.6...v0.2.7)
354
-
355
- **Implemented enhancements:**
356
-
357
- - How about add a "-c" options to specify config file manually? [\#24](https://github.com/iberianpig/fusuma/issues/24)
358
-
359
- **Merged pull requests:**
360
-
361
- - update parser [\#30](https://github.com/iberianpig/fusuma/pull/30) ([iberianpig](https://github.com/iberianpig))
362
-
363
- ## [v0.2.6](https://github.com/iberianpig/fusuma/tree/v0.2.6) (2017-01-22)
364
-
365
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v0.2.5...v0.2.6)
366
-
367
- **Implemented enhancements:**
368
-
369
- - input from multiple devices [\#4](https://github.com/iberianpig/fusuma/issues/4)
370
-
371
- ## [v0.2.5](https://github.com/iberianpig/fusuma/tree/v0.2.5) (2017-01-18)
372
-
373
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v0.2.3...v0.2.5)
374
-
375
- **Fixed bugs:**
376
-
377
- - it show some error [\#17](https://github.com/iberianpig/fusuma/issues/17)
378
-
379
- ## [v0.2.3](https://github.com/iberianpig/fusuma/tree/v0.2.3) (2017-01-01)
380
-
381
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v0.2.2...v0.2.3)
382
-
383
- **Implemented enhancements:**
384
-
385
- - sensitivity of 3 finger swipe [\#15](https://github.com/iberianpig/fusuma/issues/15)
386
-
387
- ## [v0.2.2](https://github.com/iberianpig/fusuma/tree/v0.2.2) (2016-12-31)
388
-
389
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v0.2.0...v0.2.2)
390
-
391
- ## [v0.2.0](https://github.com/iberianpig/fusuma/tree/v0.2.0) (2016-12-18)
392
-
393
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v0.1.9...v0.2.0)
394
-
395
- ## [v0.1.9](https://github.com/iberianpig/fusuma/tree/v0.1.9) (2016-12-17)
396
-
397
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v0.1.8...v0.1.9)
398
-
399
- **Implemented enhancements:**
400
-
401
- - Disabling some shortcuts [\#14](https://github.com/iberianpig/fusuma/issues/14)
402
-
403
- ## [v0.1.8](https://github.com/iberianpig/fusuma/tree/v0.1.8) (2016-12-17)
404
-
405
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v0.1.7...v0.1.8)
406
-
407
- ## [v0.1.7](https://github.com/iberianpig/fusuma/tree/v0.1.7) (2016-12-10)
408
-
409
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v0.1.6...v0.1.7)
410
-
411
- ## [v0.1.6](https://github.com/iberianpig/fusuma/tree/v0.1.6) (2016-12-07)
412
-
413
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v0.1.5...v0.1.6)
414
-
415
- **Fixed bugs:**
416
-
417
- - New libinput version, space at line beginning [\#13](https://github.com/iberianpig/fusuma/issues/13)
418
- - fusuma does not run or show any error in Terminal [\#11](https://github.com/iberianpig/fusuma/issues/11)
419
-
420
- ## [v0.1.5](https://github.com/iberianpig/fusuma/tree/v0.1.5) (2016-12-05)
421
-
422
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v0.1.4...v0.1.5)
423
-
424
- ## [v0.1.4](https://github.com/iberianpig/fusuma/tree/v0.1.4) (2016-11-17)
425
-
426
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v0.1.3...v0.1.4)
427
-
428
- **Implemented enhancements:**
429
-
430
- - fusuma not working [\#3](https://github.com/iberianpig/fusuma/issues/3)
431
- - Reading configuration from /home/fusuma/config.yml [\#2](https://github.com/iberianpig/fusuma/issues/2)
432
-
433
- **Merged pull requests:**
434
-
435
- - Match left and right actions [\#10](https://github.com/iberianpig/fusuma/pull/10) ([z0rc](https://github.com/z0rc))
436
- - Relax the device name regex [\#9](https://github.com/iberianpig/fusuma/pull/9) ([z0rc](https://github.com/z0rc))
437
-
438
- ## [v0.1.3](https://github.com/iberianpig/fusuma/tree/v0.1.3) (2016-11-01)
439
-
440
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v0.1.2...v0.1.3)
441
-
442
- ## [v0.1.2](https://github.com/iberianpig/fusuma/tree/v0.1.2) (2016-10-30)
443
-
444
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v0.1.1...v0.1.2)
445
-
446
- ## [v0.1.1](https://github.com/iberianpig/fusuma/tree/v0.1.1) (2016-10-30)
447
-
448
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/v0.1.0...v0.1.1)
449
-
450
- ## [v0.1.0](https://github.com/iberianpig/fusuma/tree/v0.1.0) (2016-10-30)
451
-
452
- [Full Changelog](https://github.com/iberianpig/fusuma/compare/bd5e5959d81b7d79aaa8cf11d8fadd8a1faa2181...v0.1.0)
453
-
454
-
455
-
456
- \* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*