glimmer-dsl-libui 0.5.19 → 0.5.20
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/CHANGELOG.md +4 -0
- data/README.md +2 -2
- data/VERSION +1 -1
- data/glimmer-dsl-libui.gemspec +0 -0
- data/lib/glimmer/libui/control_proxy/menu_item_proxy/radio_menu_item_proxy.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8e5c1ec25785e20db6459f86149af9c33d7829b262b2d81f7f4222e5dc112b8d
|
4
|
+
data.tar.gz: 7867062c494f2ad64ca9e31d2a330e6e4a5092d742a988c9c739283416502140
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2fc9c887b630a03c084885d7d067c004f5664cca1aeaae1baf801edcb2dfab474fd0f84282d3b8d2bd621161e326193ecd26f2d2f5cc282486f25baa3406e9b0
|
7
|
+
data.tar.gz: 8c0b0fa960077fa0efac249912f00485794434ccdb064aad1f6c90c4f3a2fc5f779793debebe85f849cb71c77907422fc700f64840101a5d7012859fb018a84a
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# [<img src="https://raw.githubusercontent.com/AndyObtiva/glimmer/master/images/glimmer-logo-hi-res.png" height=85 />](https://github.com/AndyObtiva/glimmer) Glimmer DSL for LibUI 0.5.
|
1
|
+
# [<img src="https://raw.githubusercontent.com/AndyObtiva/glimmer/master/images/glimmer-logo-hi-res.png" height=85 />](https://github.com/AndyObtiva/glimmer) Glimmer DSL for LibUI 0.5.20
|
2
2
|
## Prerequisite-Free Ruby Desktop Development GUI Library
|
3
3
|
[](http://badge.fury.io/rb/glimmer-dsl-libui)
|
4
4
|
[](https://gitter.im/AndyObtiva/glimmer?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
@@ -538,7 +538,7 @@ gem install glimmer-dsl-libui
|
|
538
538
|
Or install via Bundler `Gemfile`:
|
539
539
|
|
540
540
|
```ruby
|
541
|
-
gem 'glimmer-dsl-libui', '~> 0.5.
|
541
|
+
gem 'glimmer-dsl-libui', '~> 0.5.20'
|
542
542
|
```
|
543
543
|
|
544
544
|
Test that installation worked by running the [Meta-Example](#examples):
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.5.
|
1
|
+
0.5.20
|
data/glimmer-dsl-libui.gemspec
CHANGED
Binary file
|
@@ -41,7 +41,7 @@ module Glimmer
|
|
41
41
|
super
|
42
42
|
if Glimmer::LibUI.integer_to_boolean(value, allow_nil: false) != Glimmer::LibUI.integer_to_boolean(@last_checked, allow_nil: false)
|
43
43
|
if Glimmer::LibUI.integer_to_boolean(value)
|
44
|
-
(@parent_proxy.children - [self]).select {|c| c.is_a?(
|
44
|
+
(@parent_proxy.children - [self]).select {|c| c.is_a?(RadioMenuItemProxy)}.each do |menu_item|
|
45
45
|
menu_item.checked = false
|
46
46
|
end
|
47
47
|
end
|