fusuma 0.4.0 → 0.4.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/ISSUE_TEMPLATE.md +37 -0
- data/lib/fusuma.rb +1 -2
- data/lib/fusuma/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3d5f52cda7ab7a3aca71b8ed6443e467d5304182
|
|
4
|
+
data.tar.gz: 46201011544cdf498ceebcf3bc1fedbd197e8ff4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 56b741a463bf2c2df0919cceec69ba81c72845b69db6920ba28a13d6de23aef6bda62a37e4621c230b92bff876b25b62bbfe795b58b45b7550768c5eb67586fb
|
|
7
|
+
data.tar.gz: 294cfce747caa3b2eca338144430fed9e26f3fe67e29647371918b286d537866b8e2dbd53f13cc30f1b828cf44eddf0532e5da06f44dd701dffaf7bf2bdc4d13
|
data/ISSUE_TEMPLATE.md
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
|
|
3
|
+
Have you read Fusuma's CODE_OF_CONDUCT.md? By filing an Issue, you are expected to comply with it, including treating everyone with respect: https://github.com/iberianpig/fusuma/blob/master/CODE_OF_CONDUCT.md
|
|
4
|
+
|
|
5
|
+
-->
|
|
6
|
+
|
|
7
|
+
### Prerequisites
|
|
8
|
+
|
|
9
|
+
* [ ] Put an X between the brackets on this line if you have done all of the following:
|
|
10
|
+
* Read Documents. https://github.com/iberianpig/fusuma#installation
|
|
11
|
+
* Checked that `libinput-debug-events` worked correctly.
|
|
12
|
+
* Reproduced the problem in latest version. Update fusuma with `gem update fusuma`
|
|
13
|
+
* Checked that your issue isn't already filed: https://github.com/iberianpig/fusuma/issues
|
|
14
|
+
|
|
15
|
+
### Description
|
|
16
|
+
|
|
17
|
+
[Description of the issue]
|
|
18
|
+
|
|
19
|
+
### Steps to Reproduce
|
|
20
|
+
|
|
21
|
+
1. [First Step]
|
|
22
|
+
2. [Second Step]
|
|
23
|
+
3. [and so on...]
|
|
24
|
+
|
|
25
|
+
**Expected behavior:** [What you expect to happen]
|
|
26
|
+
|
|
27
|
+
**Actual behavior:** [What actually happens]
|
|
28
|
+
|
|
29
|
+
**Reproduces how often:** [What percentage of the time does it reproduce?]
|
|
30
|
+
|
|
31
|
+
### Versions
|
|
32
|
+
|
|
33
|
+
You can get this information from copy and pasting the output of `fusuma --version` from the command line. Also, please include the OS and what version of the OS you're running.
|
|
34
|
+
|
|
35
|
+
### Additional Information
|
|
36
|
+
|
|
37
|
+
Any additional information, your `~/.config/fusuma/config.yml` or data that might be necessary to reproduce the issue.
|
data/lib/fusuma.rb
CHANGED
|
@@ -50,9 +50,8 @@ module Fusuma
|
|
|
50
50
|
|
|
51
51
|
def libinput_command
|
|
52
52
|
return @libinput_command if @libinput_command
|
|
53
|
-
# NOTE: --enable-dwt means "disable while typing"
|
|
54
53
|
prefix = 'stdbuf -oL --'
|
|
55
|
-
command = 'libinput-debug-events
|
|
54
|
+
command = 'libinput-debug-events'
|
|
56
55
|
device_option = if Device.names.size == 1
|
|
57
56
|
"--device /dev/input/#{Device.names.first}"
|
|
58
57
|
end
|
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: 0.4.
|
|
4
|
+
version: 0.4.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- iberianpig
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-05-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -125,6 +125,7 @@ files:
|
|
|
125
125
|
- ".travis.yml"
|
|
126
126
|
- CODE_OF_CONDUCT.md
|
|
127
127
|
- Gemfile
|
|
128
|
+
- ISSUE_TEMPLATE.md
|
|
128
129
|
- LICENSE
|
|
129
130
|
- LICENSE.txt
|
|
130
131
|
- README.md
|