glimmer-dsl-libui 0.4.4 → 0.4.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/CHANGELOG.md +36 -1
- data/README.md +932 -160
- data/VERSION +1 -1
- data/examples/button_counter.rb +2 -1
- data/examples/color_button.rb +18 -13
- data/examples/color_button2.rb +14 -0
- data/examples/date_time_picker.rb +19 -14
- data/examples/date_time_picker2.rb +20 -0
- data/examples/dynamic_area.rb +77 -90
- data/examples/dynamic_area2.rb +14 -12
- data/examples/dynamic_area3.rb +90 -0
- data/examples/dynamic_area4.rb +95 -0
- data/examples/font_button.rb +17 -12
- data/examples/font_button2.rb +18 -0
- data/examples/form_table.rb +0 -2
- data/examples/form_table2.rb +0 -2
- data/examples/histogram.rb +93 -91
- data/examples/histogram2.rb +109 -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/tetris.rb +15 -18
- data/examples/timer.rb +28 -31
- data/examples/timer2.rb +129 -0
- data/glimmer-dsl-libui.gemspec +0 -0
- data/lib/glimmer/libui/control_proxy/checkbox_proxy.rb +5 -0
- data/lib/glimmer/libui/control_proxy/color_button_proxy.rb +5 -0
- data/lib/glimmer/libui/control_proxy/combobox_proxy.rb +18 -2
- data/lib/glimmer/libui/control_proxy/date_time_picker_proxy.rb +5 -0
- data/lib/glimmer/libui/control_proxy/editable_combobox_proxy.rb +5 -0
- data/lib/glimmer/libui/control_proxy/font_button_proxy.rb +4 -0
- data/lib/glimmer/libui/control_proxy/menu_item_proxy/check_menu_item_proxy.rb +5 -0
- data/lib/glimmer/libui/control_proxy/menu_item_proxy/radio_menu_item_proxy.rb +17 -4
- data/lib/glimmer/libui/control_proxy/radio_buttons_proxy.rb +20 -0
- data/lib/glimmer/libui/control_proxy/slider_proxy.rb +38 -0
- data/lib/glimmer/libui/control_proxy/spinbox_proxy.rb +38 -0
- data/lib/glimmer/libui/control_proxy.rb +2 -2
- metadata +13 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 122c9e87c9613b6ebb29722c0c7d602b0850f369c613374b21df38699e61e669
|
4
|
+
data.tar.gz: fb156f42398d2c8d419de476dfe435fbdfe872545da343daadd035ed2667775c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0d9587a6a19b25436fb8b810034d4663d2bd6e6dd478ab7397727978b5cec3100016032a0b3b9787ffcdb7245c2df4826829fa3e0d0afd60b69a26f4e45fcdcd
|
7
|
+
data.tar.gz: 8793a26d3383e981db6654b2e5e2705e677436e89eb1f678ec8289d17328d825151cb06ab67eacd19a398092ef77bafc6baa3e729c5152df57cf73189d9ad40e
|
data/CHANGELOG.md
CHANGED
@@ -1,12 +1,47 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
+
## 0.4.8
|
4
|
+
|
5
|
+
- Support `checkbox` `checked` bidirectional data-binding (with `<=>` sign)
|
6
|
+
- Support `check_menu_item` `checked` bidirectional data-binding (with `<=>` sign)
|
7
|
+
- Support `radio_menu_item` `checked` bidirectional data-binding (with `<=>` sign)
|
8
|
+
- Support `radio_buttons` `selected` property bidirectional data-binding (with `<=>` sign)
|
9
|
+
- Improve examples/tetris.rb with bidirectional data-binding for `check_menu_item`/`radio_menu_item` `checked`
|
10
|
+
- Update default dimensions of Meta-Example to `1000x500`
|
11
|
+
- 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)
|
12
|
+
- Fix minor issue with Meta-Example showing basic examples as advanced
|
13
|
+
|
14
|
+
## 0.4.7
|
15
|
+
|
16
|
+
- Support `date_time_picker`/`date_picker`/`time_picker` `time` bidirectional data-binding (with `<=>` sign)
|
17
|
+
- Support `combobox` `selected`/`selected_item` bidirectional data-binding (with `<=>` sign)
|
18
|
+
- Support `editable_combobox` `text` bidirectional data-binding (with `<=>` sign)
|
19
|
+
- Improve examples/date_time_picker.rb with bidirectional data-binding for `date_time_picker` `time`
|
20
|
+
- Improve examples/midi_player.rb with bidirectional data-binding for `combobox` `selected`/`selected_item`
|
21
|
+
|
22
|
+
## 0.4.6
|
23
|
+
|
24
|
+
- Support `slider` `value` bidirectional data-binding (with `<=>` sign)
|
25
|
+
- Support `color_button` `color` bidirectional data-binding (with `<=>` sign)
|
26
|
+
- Support `font_button` `font` write-only unidirectional data-binding (with `<=>` sign)
|
27
|
+
- Improve examples/color_button.rb with bidirectional data-binding for `color_button` `color`
|
28
|
+
- Improve examples/histogram.rb with bidirectional data-binding for `color_button` `color`
|
29
|
+
- Improve examples/font_button.rb with bidirectional data-binding for `font_button` `font`
|
30
|
+
|
31
|
+
## 0.4.5
|
32
|
+
|
33
|
+
- Support `spinbox` `value` bidirectional data-binding (with `<=>` sign)
|
34
|
+
- Improve examples/dynamic_area.rb with bidirectional data-binding for `spinbox` `value`
|
35
|
+
- Improve examples/histogram.rb with bidirectional data-binding for `spinbox` `value`
|
36
|
+
- Improve examples/timer.rb with bidirectional data-binding for `spinbox` `value`
|
37
|
+
|
3
38
|
## 0.4.4
|
4
39
|
|
5
40
|
- Fix issue with data-binding shapes and attributed strings, which broke Snake and Tic Tac Toe examples
|
6
41
|
|
7
42
|
## 0.4.3
|
8
43
|
|
9
|
-
- Support `entry` `text` bidirectional data-binding
|
44
|
+
- Support `entry` `text` bidirectional data-binding (with `<=>` sign)
|
10
45
|
- Support `search_entry` `text` property bidirectional data-binding (with `<=>` sign)
|
11
46
|
- Support `multiline_entry` `text` property bidirectional data-binding (with `<=>` sign)
|
12
47
|
- Support `non_wrapping_multiline_entry` `text` property bidirectional data-binding (with `<=>` sign)
|