fusuma-plugin-tap 0.3.1 → 0.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.rubocop.yml +5 -0
- data/.rubocop_todo.yml +5 -5
- data/CHANGELOG.md +24 -0
- data/README.md +5 -0
- data/lib/fusuma/plugin/parsers/tap_parser.rb +5 -1
- data/lib/fusuma/plugin/tap/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5831e58a7d0a238e4c39c5cb8ebf59817f117a98ec3133dc3bf2977548d2f39d
|
4
|
+
data.tar.gz: e7b40ec4d65ec04e4d6520c04716f13cfa7a21c87a05759250eeabe9f7a6f2e6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ea15af733e2ba297f3fac04e273a8534cc67996465e93758646a0e2c65a0bae77ed1b84622dc821918868b260a37d38a78c1f0d047969478080fa82c81916ae9
|
7
|
+
data.tar.gz: 8a70912f3db0c623aad8acb0201d6804fb26dfdfd8c36e6d339870d2689c7c5d4e4b02e3b3869ffccb438e192d16f9207c1bb409cd70a42911c175d4aa1b7aae
|
data/.rubocop.yml
CHANGED
@@ -18,6 +18,11 @@ Metrics/MethodLength:
|
|
18
18
|
- 'lib/fusuma/plugin/parsers/tap_parser.rb'
|
19
19
|
- 'lib/fusuma/plugin/parsers/tap_detector.rb'
|
20
20
|
|
21
|
+
Metrics/ClassLength:
|
22
|
+
Exclude:
|
23
|
+
- 'lib/fusuma/plugin/parsers/tap_parser.rb'
|
24
|
+
- 'lib/fusuma/plugin/parsers/tap_detector.rb'
|
25
|
+
|
21
26
|
Layout/LineLength:
|
22
27
|
Max: 100
|
23
28
|
Exclude:
|
data/.rubocop_todo.yml
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# This configuration was generated by
|
2
2
|
# `rubocop --auto-gen-config`
|
3
|
-
# on 2020-05
|
3
|
+
# on 2020-07-05 15:49:25 UTC using RuboCop version 0.86.0.
|
4
4
|
# The point is for the user to remove these configuration records
|
5
5
|
# one by one as the offenses are removed from the code base.
|
6
6
|
# Note that changes in the inspected code, or installation of new
|
@@ -16,7 +16,7 @@ Gemspec/RequiredRubyVersion:
|
|
16
16
|
# Offense count: 5
|
17
17
|
# Configuration parameters: IgnoredMethods.
|
18
18
|
Metrics/AbcSize:
|
19
|
-
Max:
|
19
|
+
Max: 42
|
20
20
|
|
21
21
|
# Offense count: 1
|
22
22
|
# Configuration parameters: CountComments, ExcludedMethods.
|
@@ -27,17 +27,17 @@ Metrics/BlockLength:
|
|
27
27
|
# Offense count: 3
|
28
28
|
# Configuration parameters: IgnoredMethods.
|
29
29
|
Metrics/CyclomaticComplexity:
|
30
|
-
Max:
|
30
|
+
Max: 25
|
31
31
|
|
32
32
|
# Offense count: 5
|
33
33
|
# Configuration parameters: CountComments, ExcludedMethods.
|
34
34
|
Metrics/MethodLength:
|
35
35
|
Max: 45
|
36
36
|
|
37
|
-
# Offense count:
|
37
|
+
# Offense count: 2
|
38
38
|
# Configuration parameters: IgnoredMethods.
|
39
39
|
Metrics/PerceivedComplexity:
|
40
|
-
Max:
|
40
|
+
Max: 13
|
41
41
|
|
42
42
|
# Offense count: 1
|
43
43
|
Style/Documentation:
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,29 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [v0.3.2](https://github.com/iberianpig/fusuma-plugin-tap/tree/v0.3.2) (2020-08-13)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/iberianpig/fusuma-plugin-tap/compare/v0.3.1...v0.3.2)
|
6
|
+
|
7
|
+
**Fixed bugs:**
|
8
|
+
|
9
|
+
- Fix Parser when detecting a false 4 finger tap after a pinch gesture [\#5](https://github.com/iberianpig/fusuma-plugin-tap/pull/5) ([iberianpig](https://github.com/iberianpig))
|
10
|
+
|
11
|
+
**Closed issues:**
|
12
|
+
|
13
|
+
- tap 4 not registered [\#4](https://github.com/iberianpig/fusuma-plugin-tap/issues/4)
|
14
|
+
|
15
|
+
**Merged pull requests:**
|
16
|
+
|
17
|
+
- test\(tap\_parser\): reproduce the bug that 4 finger tap after detecting palm [\#8](https://github.com/iberianpig/fusuma-plugin-tap/pull/8) ([iberianpig](https://github.com/iberianpig))
|
18
|
+
|
19
|
+
## [v0.3.1](https://github.com/iberianpig/fusuma-plugin-tap/tree/v0.3.1) (2020-05-15)
|
20
|
+
|
21
|
+
[Full Changelog](https://github.com/iberianpig/fusuma-plugin-tap/compare/v0.3.0...v0.3.1)
|
22
|
+
|
23
|
+
**Closed issues:**
|
24
|
+
|
25
|
+
- Reduce false positives with Hold gesture [\#2](https://github.com/iberianpig/fusuma-plugin-tap/issues/2)
|
26
|
+
|
3
27
|
## [v0.3.0](https://github.com/iberianpig/fusuma-plugin-tap/tree/v0.3.0) (2020-05-10)
|
4
28
|
|
5
29
|
[Full Changelog](https://github.com/iberianpig/fusuma-plugin-tap/compare/v0.2.0...v0.3.0)
|
data/README.md
CHANGED
@@ -62,6 +62,11 @@ plugin:
|
|
62
62
|
verbose: true
|
63
63
|
```
|
64
64
|
|
65
|
+
## Known issues
|
66
|
+
* `libinput debug-events --verbose` outputs is unstable, so it may not work properly with some versions of libinput.
|
67
|
+
* **libinput 1.10.4 contains a bug that suddenly stopped detecting taps.**
|
68
|
+
* ref: https://github.com/iberianpig/fusuma-plugin-tap/pull/8
|
69
|
+
|
65
70
|
## Development
|
66
71
|
|
67
72
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fusuma-plugin-tap
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- iberianpig
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-08-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: fusuma
|