motion-flow 0.1.7 → 0.1.8
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/flow/ui/android/view.rb +2 -2
- data/flow/ui/cocoa/view.rb +1 -1
- data/lib/android.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1807b6847a81294999dae21aad0db22943ce46d3
|
4
|
+
data.tar.gz: 0100255d9a210a32318bb387dfd77e967c8196e9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: af58cbddfc0bae2ec9970c0b8bbed27046b7fdbe78b280a9b29e0a8a9fe1d1e8eea98bd4b314e6f9bcda57cc3b94e122995da2f07cbd6afb713f988be0160958
|
7
|
+
data.tar.gz: 9e5e1295d7c70201dd3e4599d454da563070166d40772eb8377ef3779ee63b9fc391e04e922889d939b5cb718c4354a2f4b6f6b2847161b1f99ac6ae7e9a4be5
|
data/flow/ui/android/view.rb
CHANGED
@@ -27,7 +27,7 @@ module UI
|
|
27
27
|
proxy.visibility != Android::View::View::VISIBLE
|
28
28
|
end
|
29
29
|
|
30
|
-
def hidden=(
|
30
|
+
def hidden=(hidden)
|
31
31
|
if hidden
|
32
32
|
if !self.width.nan?
|
33
33
|
self._previous_width = self.width
|
@@ -43,7 +43,7 @@ module UI
|
|
43
43
|
self.height = self._previous_height if self._previous_height
|
44
44
|
end
|
45
45
|
|
46
|
-
proxy.visibility =
|
46
|
+
proxy.visibility = hidden ? Android::View::View::INVISIBLE : Android::View::View::VISIBLE
|
47
47
|
|
48
48
|
self.root.update_layout
|
49
49
|
end
|
data/flow/ui/cocoa/view.rb
CHANGED
data/lib/android.rb
CHANGED
@@ -17,7 +17,7 @@ Motion::Project::App.setup do |app|
|
|
17
17
|
abis = %w{armeabi-v7a x86}
|
18
18
|
if abis.all? { |x| File.exist?(File.join(libdir, 'android', x)) }
|
19
19
|
abis.each do |abi|
|
20
|
-
app.libs[abi] += Dir.glob(File.join(libdir, 'android', abi, "*.a"))
|
20
|
+
app.libs[abi] += Dir.glob(File.join(libdir, 'android', abi, "*.a")).map { |x| "\"#{x}\""}
|
21
21
|
end
|
22
22
|
end
|
23
23
|
if comp == 'ui'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: motion-flow
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- HipByte
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-09-15 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: |-
|
14
14
|
motion-flow allows you to write cross-platform
|