fusuma 3.8.0 → 3.8.1
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/lib/fusuma/libinput_command.rb +8 -5
- data/lib/fusuma/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: 6907d58f73b9c33bb5974fe3f6e256ce151c2c0bde50a8cbf69c592a2519390e
|
4
|
+
data.tar.gz: 85224a9dba41f28b578ae0b657520b3d00e29b6dc04a21d9ba5643f021f9587b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 78b226d31a6151f1f562ae4b2075d042c32b2a3b022dfe64322e7e80332d6662cf54dafa9d371aa1bc73a9b85db82c552158dc35f2b3b5f0859f3e5f43017cff
|
7
|
+
data.tar.gz: ff7463efe6a0bdbce255af759f0caa50ed748cbd64629ddef5a953fcb427c85b0022bd4c4963ad310f6ccea0fdb2baf69ffb41367581a8d38d7a30056c2724f1
|
@@ -36,11 +36,14 @@ module Fusuma
|
|
36
36
|
def list_devices(&block)
|
37
37
|
cmd = list_devices_command
|
38
38
|
MultiLogger.debug(list_devices: cmd)
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
39
|
+
o, e, s = Open3.capture3(cmd)
|
40
|
+
|
41
|
+
unless s.success?
|
42
|
+
MultiLogger.error("libinput list-devices failed with output: #{o}")
|
43
|
+
return
|
44
|
+
end
|
45
|
+
|
46
|
+
o.each_line(&block)
|
44
47
|
end
|
45
48
|
|
46
49
|
# @return [Integer] return a latest line libinput debug-events
|
data/lib/fusuma/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fusuma
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.8.
|
4
|
+
version: 3.8.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- iberianpig
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-04-
|
11
|
+
date: 2025-04-12 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Fusuma is multitouch gesture recognizer. This gem makes your touchpad
|
14
14
|
on Linux able to recognize swipes or pinchs and assign command to them. Read installation
|