fusuma 1.10.0 → 1.10.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 655c4a7bf0a13e28b0334d0edbc59ec29ff69b925f4495ac7f554fd1f995503f
4
- data.tar.gz: a4678c0c54de5adf34606c82f46ebb7cc0339df7e0f7fb5fbcbb2042cc6a8e6e
3
+ metadata.gz: b9d6954579a300b089bb94a20b3c03b6d2f9729f208af6082b8b5963dd9608e0
4
+ data.tar.gz: 8a62c074532cdf4e032d1c9c625f1bdf3f42eff7b8f1bdb1ee18ac9168f5c991
5
5
  SHA512:
6
- metadata.gz: 69a35cbdcecd922e11b590851c3b10b42a84af66ccc8d7c02f5dba9a240747cde283bd069a778b7e503be6b0558927df3897283e7730ac3ac003c185de1a5f51
7
- data.tar.gz: 0c68f21dd7647dc846e44a71bb2cff71a46bebb2551448cf0e759727e7381258efd43ca26eb00a7580410d2d9093c03a42a3af3ccea62332167468235083de8d
6
+ metadata.gz: 1d9379023929b19716783509127caaa4f1ffc6951a5951c5a866a0842a6d2f97bf6fbe6e5a83d43a7d0b0bead2fb87324f7a5bfcee8aae60fe1eb7f4265b55d2
7
+ data.tar.gz: a2aeca01b913ab48f130069de6e2cbce63d4dadabf2cebb7deb81018e584f4993246801cec770a5a1fb87b4d3d83709ad4079c6400edbabd5ce6e38abedef998
@@ -1,5 +1,20 @@
1
1
  # Changelog
2
2
 
3
+ ## [v1.10.0](https://github.com/iberianpig/fusuma/tree/v1.10.0) (2020-05-04)
4
+
5
+ [Full Changelog](https://github.com/iberianpig/fusuma/compare/v1.9.0...v1.10.0)
6
+
7
+ **Closed issues:**
8
+
9
+ - Each action took about 2 secs to react [\#167](https://github.com/iberianpig/fusuma/issues/167)
10
+ - ruby2.7 [\#164](https://github.com/iberianpig/fusuma/issues/164)
11
+ - Zoom-in not really usable on Vivaldi [\#159](https://github.com/iberianpig/fusuma/issues/159)
12
+ - Reversed directions with no alternatives [\#133](https://github.com/iberianpig/fusuma/issues/133)
13
+
14
+ **Merged pull requests:**
15
+
16
+ - Implement timeout event [\#169](https://github.com/iberianpig/fusuma/pull/169) ([iberianpig](https://github.com/iberianpig))
17
+
3
18
  ## [v1.9.0](https://github.com/iberianpig/fusuma/tree/v1.9.0) (2020-03-30)
4
19
 
5
20
  [Full Changelog](https://github.com/iberianpig/fusuma/compare/v1.8.0...v1.9.0)
@@ -159,8 +174,7 @@
159
174
  **Merged pull requests:**
160
175
 
161
176
  - Interval and threshold specific for a trigger [\#92](https://github.com/iberianpig/fusuma/pull/92) ([irq](https://github.com/irq))
162
- - Assigning commands [\#73](https://github.com/iberianpig/fusuma/pull/73) ([iberianpig](https://github.com/iberianpig))
163
- - Relax the device name regex [\#9](https://github.com/iberianpig/fusuma/pull/9) ([z0rc](https://github.com/z0rc))
177
+ - Fix spelling: Elementary to elementary [\#90](https://github.com/iberianpig/fusuma/pull/90) ([ryonakano](https://github.com/ryonakano))
164
178
 
165
179
  ## [v0.9.2](https://github.com/iberianpig/fusuma/tree/v0.9.2) (2018-07-19)
166
180
 
@@ -249,6 +263,7 @@
249
263
 
250
264
  **Merged pull requests:**
251
265
 
266
+ - Assigning commands [\#73](https://github.com/iberianpig/fusuma/pull/73) ([iberianpig](https://github.com/iberianpig))
252
267
  - Update rake requirement to ~\> 12.3 [\#72](https://github.com/iberianpig/fusuma/pull/72) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
253
268
 
254
269
  ## [v0.3.5](https://github.com/iberianpig/fusuma/tree/v0.3.5) (2018-01-01)
@@ -294,7 +309,6 @@
294
309
 
295
310
  **Merged pull requests:**
296
311
 
297
- - Fix spelling: Elementary to elementary [\#90](https://github.com/iberianpig/fusuma/pull/90) ([ryonakano](https://github.com/ryonakano))
298
312
  - Added interval options to config. [\#36](https://github.com/iberianpig/fusuma/pull/36) ([joshuatshaffer](https://github.com/joshuatshaffer))
299
313
 
300
314
  ## [v0.2.7](https://github.com/iberianpig/fusuma/tree/v0.2.7) (2017-02-04)
@@ -382,6 +396,7 @@
382
396
  **Merged pull requests:**
383
397
 
384
398
  - Match left and right actions [\#10](https://github.com/iberianpig/fusuma/pull/10) ([z0rc](https://github.com/z0rc))
399
+ - Relax the device name regex [\#9](https://github.com/iberianpig/fusuma/pull/9) ([z0rc](https://github.com/z0rc))
385
400
 
386
401
  ## [v0.1.3](https://github.com/iberianpig/fusuma/tree/v0.1.3) (2016-11-01)
387
402
 
@@ -14,10 +14,13 @@ module Fusuma
14
14
  Delta = Struct.new(:move_x, :move_y, :zoom, :rotate)
15
15
 
16
16
  # @param status [String]
17
+ # @param gesture [String]
18
+ # @param finger [String, Integer]
19
+ # @param direction [Delta, NilClass]
17
20
  def initialize(status:, gesture:, finger:, direction:)
18
21
  @status = status
19
22
  @gesture = gesture
20
- @finger = finger
23
+ @finger = finger.to_i
21
24
  @direction = direction
22
25
  end
23
26
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Fusuma
4
- VERSION = '1.10.0'
4
+ VERSION = '1.10.1'
5
5
  end
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: 1.10.0
4
+ version: 1.10.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - iberianpig
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-05-04 00:00:00.000000000 Z
11
+ date: 2020-05-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler