fusuma-plugin-thumbsense 0.4.1 → 0.5.0
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fe9f3f8776d7ebe658aea096f049145d91071ef4d313e86026bf849c66d3bfc0
|
|
4
|
+
data.tar.gz: 964ee69ab373fbd6a0d3f847acf49714fa5b5980e436c855bc3c29b18de4f70e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dcfe6c4b6ad496ab982ff6fe391f5128433c180b9c817dfa427d06dfb57cd59c30570e8cd7512f875eb42042863c8088d9978dd1d95e39a4b284cff167aeb2ec
|
|
7
|
+
data.tar.gz: d410904f6a5532963e66e8ce5589f31d9671fb32fcee39a1ffaca782857a8a8148a9f8ecc89e0599770c8121db8c60f07b29f4f3ff69e18e025e0e02c1b8db6e
|
data/README.md
CHANGED
|
@@ -15,23 +15,12 @@ Run the following code in your terminal.
|
|
|
15
15
|
### Install fusuma-plugin-thumbsense
|
|
16
16
|
|
|
17
17
|
This plugin requires [fusuma](https://github.com/iberianpig/fusuma#update) 2.0 or later and [fusuma-plugin-keypress](https://github.com/iberianpig/fusuma-plugin-keypress) 0.5 or later.
|
|
18
|
+
- fusuma-plugin-keypress is used to get keyboard input and is installed automatically.
|
|
18
19
|
|
|
19
20
|
```sh
|
|
20
21
|
$ sudo gem install fusuma-plugin-thumbsense
|
|
21
22
|
```
|
|
22
23
|
|
|
23
|
-
### Add show-keycodes option
|
|
24
|
-
|
|
25
|
-
Open `~/.config/fusuma/config.yml` and add the following code at the bottom.
|
|
26
|
-
|
|
27
|
-
```yaml
|
|
28
|
-
plugin:
|
|
29
|
-
inputs:
|
|
30
|
-
libinput_command_input:
|
|
31
|
-
show-keycodes: true
|
|
32
|
-
```
|
|
33
|
-
|
|
34
|
-
**NOTE: fusuma can read your keyboard inputs if show-keycodes option is true**
|
|
35
24
|
|
|
36
25
|
## Properties
|
|
37
26
|
|
|
@@ -21,9 +21,10 @@ Gem::Specification.new do |spec|
|
|
|
21
21
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
22
22
|
spec.require_paths = ["lib"]
|
|
23
23
|
|
|
24
|
-
spec.required_ruby_version = ">= 2.
|
|
25
|
-
#
|
|
26
|
-
|
|
24
|
+
spec.required_ruby_version = ">= 2.7"
|
|
25
|
+
# https://packages.ubuntu.com/search?keywords=ruby&searchon=names&exact=1&suite=all§ion=main
|
|
26
|
+
# support focal (20.04LTS) 2.7
|
|
27
|
+
spec.add_dependency "fusuma", ">= 3.1"
|
|
27
28
|
spec.add_dependency "fusuma-plugin-keypress", ">= 0.5"
|
|
28
29
|
spec.add_dependency "fusuma-plugin-remap"
|
|
29
30
|
spec.metadata = {
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fusuma-plugin-thumbsense
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- iberianpig
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-09-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: fusuma
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '
|
|
19
|
+
version: '3.1'
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - ">="
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: '
|
|
26
|
+
version: '3.1'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: fusuma-plugin-keypress
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -67,6 +67,7 @@ files:
|
|
|
67
67
|
- lib/fusuma/plugin/buffers/thumbsense_buffer.rb
|
|
68
68
|
- lib/fusuma/plugin/detectors/thumbsense_detector.rb
|
|
69
69
|
- lib/fusuma/plugin/filters/thumbsense_filter.rb
|
|
70
|
+
- lib/fusuma/plugin/filters/thumbsense_filter.yml
|
|
70
71
|
- lib/fusuma/plugin/parsers/thumbsense_parser.rb
|
|
71
72
|
- lib/fusuma/plugin/thumbsense.rb
|
|
72
73
|
- lib/fusuma/plugin/thumbsense/version.rb
|
|
@@ -83,14 +84,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
83
84
|
requirements:
|
|
84
85
|
- - ">="
|
|
85
86
|
- !ruby/object:Gem::Version
|
|
86
|
-
version: 2.
|
|
87
|
+
version: '2.7'
|
|
87
88
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
88
89
|
requirements:
|
|
89
90
|
- - ">="
|
|
90
91
|
- !ruby/object:Gem::Version
|
|
91
92
|
version: '0'
|
|
92
93
|
requirements: []
|
|
93
|
-
rubygems_version: 3.
|
|
94
|
+
rubygems_version: 3.4.10
|
|
94
95
|
signing_key:
|
|
95
96
|
specification_version: 4
|
|
96
97
|
summary: Thumbsense plugin for Fusuma
|