glimmer-dsl-libui 0.4.5 → 0.4.9

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.
Files changed (35) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +33 -0
  3. data/README.md +388 -57
  4. data/VERSION +1 -1
  5. data/examples/button_counter.rb +2 -1
  6. data/examples/color_button.rb +18 -13
  7. data/examples/color_button2.rb +14 -0
  8. data/examples/date_time_picker.rb +19 -14
  9. data/examples/date_time_picker2.rb +20 -0
  10. data/examples/font_button.rb +17 -12
  11. data/examples/font_button2.rb +18 -0
  12. data/examples/histogram.rb +1 -6
  13. data/examples/meta_example.rb +17 -6
  14. data/examples/midi_player.rb +5 -6
  15. data/examples/midi_player2.rb +83 -0
  16. data/examples/midi_player3.rb +84 -0
  17. data/examples/snake.rb +19 -10
  18. data/examples/tetris.rb +15 -18
  19. data/glimmer-dsl-libui.gemspec +0 -0
  20. data/lib/glimmer/libui/control_proxy/checkbox_proxy.rb +4 -0
  21. data/lib/glimmer/libui/control_proxy/color_button_proxy.rb +4 -0
  22. data/lib/glimmer/libui/control_proxy/combobox_proxy.rb +17 -2
  23. data/lib/glimmer/libui/control_proxy/date_time_picker_proxy.rb +4 -0
  24. data/lib/glimmer/libui/control_proxy/editable_combobox_proxy.rb +4 -0
  25. data/lib/glimmer/libui/control_proxy/entry_proxy.rb +1 -2
  26. data/lib/glimmer/libui/control_proxy/font_button_proxy.rb +8 -0
  27. data/lib/glimmer/libui/control_proxy/menu_item_proxy/check_menu_item_proxy.rb +4 -0
  28. data/lib/glimmer/libui/control_proxy/menu_item_proxy/radio_menu_item_proxy.rb +16 -4
  29. data/lib/glimmer/libui/control_proxy/multiline_entry_proxy.rb +1 -2
  30. data/lib/glimmer/libui/control_proxy/radio_buttons_proxy.rb +19 -0
  31. data/lib/glimmer/libui/control_proxy/slider_proxy.rb +37 -0
  32. data/lib/glimmer/libui/control_proxy/spinbox_proxy.rb +1 -2
  33. data/lib/glimmer/libui/control_proxy.rb +2 -2
  34. data/lib/glimmer/libui/data_bindable.rb +27 -2
  35. metadata +8 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dcc9fbfe0fec2f6678f0515a8471c71fef28e7e8ae7a253bf1d8906aa7b69c11
4
- data.tar.gz: 836911f22535571d796e759d20256e380e6dc3692cfd08ca13a62e053fea14ce
3
+ metadata.gz: 755dfde419aa3c77d0ca7229f9962d63b7aa139adbc1d5543e93acbf0c1917db
4
+ data.tar.gz: f4d753f109947eafeea727804ee871923948a0a262cde11a58dfd2f2fbe893ec
5
5
  SHA512:
6
- metadata.gz: 5378fe7b1ee1c147705b5a97ff8414cdefcc22fb7720a388b9a8de6694ec128a4bbd2d4ba535b4c6bba5e7373f98ab32264f96bfd448deb7a00b6c07aefe4c42
7
- data.tar.gz: cf83d73acf39d2be2bc16544b12466eefd38e76d37b595e9ff623c487a3296c27b1880560da7b067ea1c85b4fd28d1fd22dc9ea6a9ea1b5bc354536ccd38de0c
6
+ metadata.gz: 96f4f5b7ddbf09a9543cea439ce74b1c5c545e2e6c240533e4d283ffba2bea16778a826601e2350392253d39edd21c8a6cb60d22fa1ee4107084c2cdd9155f70
7
+ data.tar.gz: 65b9fdb359801bdd1e4c6e9df74f3cc1d49f7012a5fc6b7dfc8cb4f6fbc16732cc6e4119a05d6c0a26eb559d60e3c72b263b3376f0775d4ff1ff5dd3ec52435d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,38 @@
1
1
  # Change Log
2
2
 
3
+ ## 0.4.9
4
+
5
+ - Support unidirectional data-binding on all control properties that support bidirectional data-binding
6
+ - Fix issue in examples/snake.rb with double-turn causing instant death due to snake illogically going back against itself
7
+
8
+ ## 0.4.8
9
+
10
+ - Support `checkbox` `checked` bidirectional data-binding (with `<=>` sign)
11
+ - Support `check_menu_item` `checked` bidirectional data-binding (with `<=>` sign)
12
+ - Support `radio_menu_item` `checked` bidirectional data-binding (with `<=>` sign)
13
+ - Support `radio_buttons` `selected` property bidirectional data-binding (with `<=>` sign)
14
+ - Improve examples/tetris.rb with bidirectional data-binding for `check_menu_item`/`radio_menu_item` `checked`
15
+ - Update default dimensions of Meta-Example to `1000x500`
16
+ - 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)
17
+ - Fix minor issue with Meta-Example showing basic examples as advanced
18
+
19
+ ## 0.4.7
20
+
21
+ - Support `date_time_picker`/`date_picker`/`time_picker` `time` bidirectional data-binding (with `<=>` sign)
22
+ - Support `combobox` `selected`/`selected_item` bidirectional data-binding (with `<=>` sign)
23
+ - Support `editable_combobox` `text` bidirectional data-binding (with `<=>` sign)
24
+ - Improve examples/date_time_picker.rb with bidirectional data-binding for `date_time_picker` `time`
25
+ - Improve examples/midi_player.rb with bidirectional data-binding for `combobox` `selected`/`selected_item`
26
+
27
+ ## 0.4.6
28
+
29
+ - Support `slider` `value` bidirectional data-binding (with `<=>` sign)
30
+ - Support `color_button` `color` bidirectional data-binding (with `<=>` sign)
31
+ - Support `font_button` `font` write-only unidirectional data-binding (with `<=>` sign)
32
+ - Improve examples/color_button.rb with bidirectional data-binding for `color_button` `color`
33
+ - Improve examples/histogram.rb with bidirectional data-binding for `color_button` `color`
34
+ - Improve examples/font_button.rb with bidirectional data-binding for `font_button` `font`
35
+
3
36
  ## 0.4.5
4
37
 
5
38
  - Support `spinbox` `value` bidirectional data-binding (with `<=>` sign)