fusuma 1.1 → 1.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 +5 -5
- data/CHANGELOG.md +15 -2
- data/lib/fusuma/plugin/filters/libinput_device_filter.rb +1 -1
- data/lib/fusuma/plugin/manager.rb +1 -1
- data/lib/fusuma/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 217ba27576aeda18f673e4519d622d564b5a41c0
|
|
4
|
+
data.tar.gz: 985359605435d4a14a9a2fa5e69baf4ce08f874c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3ad557b7cd54f0647160280a9945d37c5aa1770b2002fe8bdef8ce9c1932da03584c8931795833e41b892fb1837fcb735b91e0b38bad6dcda911ee0fd8d2bb12
|
|
7
|
+
data.tar.gz: b7f9b22cc2e22ff13387cbc6301331ae2e00f6af5ed7da20830a452b7a1eac839f6d0297893a2e400559278ddcbceec4ed71d706579b9561079806659327f45c
|
data/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,21 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
## [
|
|
3
|
+
## [v1.1](https://github.com/iberianpig/fusuma/tree/v1.1) (2019-10-12)
|
|
4
|
+
[Full Changelog](https://github.com/iberianpig/fusuma/compare/v1.0...v1.1)
|
|
4
5
|
|
|
5
|
-
[
|
|
6
|
+
## [v1.0](https://github.com/iberianpig/fusuma/tree/v1.0) (2019-10-12)
|
|
7
|
+
[Full Changelog](https://github.com/iberianpig/fusuma/compare/v0.11.1...v1.0)
|
|
8
|
+
|
|
9
|
+
**Merged pull requests:**
|
|
10
|
+
|
|
11
|
+
- Update rake requirement from ~\> 12.3 to ~\> 13.0 [\#136](https://github.com/iberianpig/fusuma/pull/136) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
12
|
+
- Fixed Spelling mistake [\#128](https://github.com/iberianpig/fusuma/pull/128) ([thomascrha](https://github.com/thomascrha))
|
|
13
|
+
- \[Readme\] Added step to install Ruby [\#127](https://github.com/iberianpig/fusuma/pull/127) ([mmoraes-rafael](https://github.com/mmoraes-rafael))
|
|
14
|
+
- Feature/plugins refactor generator [\#126](https://github.com/iberianpig/fusuma/pull/126) ([iberianpig](https://github.com/iberianpig))
|
|
15
|
+
- Plugin Based Architecture [\#116](https://github.com/iberianpig/fusuma/pull/116) ([iberianpig](https://github.com/iberianpig))
|
|
16
|
+
|
|
17
|
+
## [v0.11.1](https://github.com/iberianpig/fusuma/tree/v0.11.1) (2019-05-27)
|
|
18
|
+
[Full Changelog](https://github.com/iberianpig/fusuma/compare/v0.11.0...v0.11.1)
|
|
6
19
|
|
|
7
20
|
**Merged pull requests:**
|
|
8
21
|
|
|
@@ -26,7 +26,7 @@ module Fusuma
|
|
|
26
26
|
# @return [Array]
|
|
27
27
|
def keep_device_ids
|
|
28
28
|
@keep_device_ids ||= Device.all.select do |device|
|
|
29
|
-
keep_device_names.any? { |name| device.name.match
|
|
29
|
+
keep_device_names.any? { |name| device.name.match(name) }
|
|
30
30
|
end.map(&:id)
|
|
31
31
|
end
|
|
32
32
|
|
|
@@ -13,7 +13,7 @@ module Fusuma
|
|
|
13
13
|
|
|
14
14
|
def require_siblings_from_local
|
|
15
15
|
search_key = File.join('../../', plugin_dir_name, '*.rb')
|
|
16
|
-
|
|
16
|
+
Dir.glob(File.expand_path("#{__dir__}/#{search_key}")).each do |siblings_plugin|
|
|
17
17
|
require siblings_plugin
|
|
18
18
|
end
|
|
19
19
|
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: '1.
|
|
4
|
+
version: '1.2'
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- iberianpig
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-10-
|
|
11
|
+
date: 2019-10-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -228,7 +228,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
228
228
|
- !ruby/object:Gem::Version
|
|
229
229
|
version: '0'
|
|
230
230
|
requirements: []
|
|
231
|
-
|
|
231
|
+
rubyforge_project:
|
|
232
|
+
rubygems_version: 2.5.1
|
|
232
233
|
signing_key:
|
|
233
234
|
specification_version: 4
|
|
234
235
|
summary: Multitouch gestures with libinput dirver on X11, Linux
|