glimmer-dsl-libui 0.4.6 → 0.4.10
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 +29 -0
- data/README.md +601 -323
- data/VERSION +1 -1
- data/examples/button_counter.rb +2 -1
- data/examples/cpu_percentage.rb +36 -0
- data/examples/date_time_picker.rb +19 -14
- data/examples/date_time_picker2.rb +20 -0
- data/examples/meta_example.rb +17 -6
- data/examples/midi_player.rb +5 -6
- data/examples/midi_player2.rb +83 -0
- data/examples/midi_player3.rb +84 -0
- data/examples/snake.rb +19 -10
- data/examples/snake2.rb +97 -0
- data/examples/tetris.rb +15 -18
- data/examples/tic_tac_toe.rb +1 -0
- data/examples/tic_tac_toe2.rb +84 -0
- data/glimmer-dsl-libui.gemspec +0 -0
- data/lib/glimmer/libui/control_proxy/checkbox_proxy.rb +4 -0
- data/lib/glimmer/libui/control_proxy/color_button_proxy.rb +1 -2
- data/lib/glimmer/libui/control_proxy/combobox_proxy.rb +17 -2
- data/lib/glimmer/libui/control_proxy/date_time_picker_proxy.rb +4 -0
- data/lib/glimmer/libui/control_proxy/editable_combobox_proxy.rb +4 -0
- data/lib/glimmer/libui/control_proxy/entry_proxy.rb +1 -2
- data/lib/glimmer/libui/control_proxy/font_button_proxy.rb +5 -1
- data/lib/glimmer/libui/control_proxy/menu_item_proxy/check_menu_item_proxy.rb +4 -0
- data/lib/glimmer/libui/control_proxy/menu_item_proxy/radio_menu_item_proxy.rb +16 -4
- data/lib/glimmer/libui/control_proxy/multiline_entry_proxy.rb +1 -2
- data/lib/glimmer/libui/control_proxy/radio_buttons_proxy.rb +19 -0
- data/lib/glimmer/libui/control_proxy/slider_proxy.rb +1 -2
- data/lib/glimmer/libui/control_proxy/spinbox_proxy.rb +1 -2
- data/lib/glimmer/libui/control_proxy.rb +2 -2
- data/lib/glimmer/libui/data_bindable.rb +27 -2
- metadata +8 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e3bdea12bc1f9ff1798491a5637c598e0e1e9448d8cb3e5e2cd194b77ad8d95a
|
4
|
+
data.tar.gz: f704324045b58a3372d5ffe7893642fa953ac5f00edded4171b96272ec0c792b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 671a20f2ea32891bb02a8c0167ca6ae4018f2a012168358311e5fd2f978e72c505452374cec6cf287eee5ada148b332fc641e4eb396e731e19b64d58c69406d8
|
7
|
+
data.tar.gz: c6f60d658ed413eca1c69fde9423916457c77718d206000428733e232be506ab4631b57b66489b476c41e0b7c994dca42d59422da8cedfc273a688418d8a3988
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,34 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
+
## 0.4.10
|
4
|
+
|
5
|
+
- examples/cpu_percentage.rb
|
6
|
+
- Bring back non-data-binding versions of examples/snake.rb and examples/tic_tac_toe.rb for educational purposes
|
7
|
+
|
8
|
+
## 0.4.9
|
9
|
+
|
10
|
+
- Support unidirectional data-binding on all control properties that support bidirectional data-binding
|
11
|
+
- Fix issue in examples/snake.rb with double-turn causing instant death due to snake illogically going back against itself
|
12
|
+
|
13
|
+
## 0.4.8
|
14
|
+
|
15
|
+
- Support `checkbox` `checked` bidirectional data-binding (with `<=>` sign)
|
16
|
+
- Support `check_menu_item` `checked` bidirectional data-binding (with `<=>` sign)
|
17
|
+
- Support `radio_menu_item` `checked` bidirectional data-binding (with `<=>` sign)
|
18
|
+
- Support `radio_buttons` `selected` property bidirectional data-binding (with `<=>` sign)
|
19
|
+
- Improve examples/tetris.rb with bidirectional data-binding for `check_menu_item`/`radio_menu_item` `checked`
|
20
|
+
- Update default dimensions of Meta-Example to `1000x500`
|
21
|
+
- Fix minor issue with Meta-Example selecting first radio button in Advanced examples despite it not being the truly selected example on launch of the app (now, it starts explicitly deselected)
|
22
|
+
- Fix minor issue with Meta-Example showing basic examples as advanced
|
23
|
+
|
24
|
+
## 0.4.7
|
25
|
+
|
26
|
+
- Support `date_time_picker`/`date_picker`/`time_picker` `time` bidirectional data-binding (with `<=>` sign)
|
27
|
+
- Support `combobox` `selected`/`selected_item` bidirectional data-binding (with `<=>` sign)
|
28
|
+
- Support `editable_combobox` `text` bidirectional data-binding (with `<=>` sign)
|
29
|
+
- Improve examples/date_time_picker.rb with bidirectional data-binding for `date_time_picker` `time`
|
30
|
+
- Improve examples/midi_player.rb with bidirectional data-binding for `combobox` `selected`/`selected_item`
|
31
|
+
|
3
32
|
## 0.4.6
|
4
33
|
|
5
34
|
- Support `slider` `value` bidirectional data-binding (with `<=>` sign)
|