glimmer-dsl-libui 0.4.0 → 0.4.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7787d307fad4098e8f050a94c6477e9fca1f6cc8a2af4f2c16126a0a118dbc59
4
- data.tar.gz: 0cc3d91a91ec96fa4bfecebef3829f4dc384f51aae7a81157385812d1aac2e8b
3
+ metadata.gz: 6e66ca998dc3b30b4a9ef856b9d23f4359d9b24a4f1a1805760b5912c675310f
4
+ data.tar.gz: 1e464fd9986e1516709e919c3aba9307b90dc0498c1f478050f5cfc54b3ca377
5
5
  SHA512:
6
- metadata.gz: 89d886d203a00b83b7a1b5640dfb83f256b6514586b254bb4b00157c88df29acaa80b30194909f62858d6c79eba1782a7d4deda143d5406bd5048899f3d9835c
7
- data.tar.gz: c94709151900aac23b7148422ee96d484413437b57a78aca7ece2948b6a48a3db3cca7c64827ade37037f9d4af27cce0e6f0bf0a2498358afd07a279595dec12
6
+ metadata.gz: ab5d10582f486b129c531aa7472f05e342c5d823d81bec4531dea8996328b916d8eb4e12c49763f28c720e76a9d64feda23b607bca6a748ba0506d4f974e6c1c
7
+ data.tar.gz: 910c1fd367831c3cb91c3a1a1a37c040ae0cac00cf259a08007625d3bbd8adc39cab8809bc5a8820d700ef925d525372370fc035d1c5c5461b9aae21f759bd4e
data/CHANGELOG.md CHANGED
@@ -1,11 +1,44 @@
1
1
  # Change Log
2
2
 
3
+ ## 0.4.4
4
+
5
+ - Fix issue with data-binding shapes and attributed strings, which broke Snake and Tic Tac Toe examples
6
+
7
+ ## 0.4.3
8
+
9
+ - Support `entry` `text` bidirectional data-binding
10
+ - Support `search_entry` `text` property bidirectional data-binding (with `<=>` sign)
11
+ - Support `multiline_entry` `text` property bidirectional data-binding (with `<=>` sign)
12
+ - Support `non_wrapping_multiline_entry` `text` property bidirectional data-binding (with `<=>` sign)
13
+ - Improve examples/basic_entry.rb with bidirectional data-binding for `entry` `text`
14
+ - Improve examples/form.rb with bidirectional data-binding for `entry` `text`
15
+ - Improve examples/form_table.rb with bidirectional data-binding for `entry` `text`
16
+ - Improve examples/login.rb with bidirectional data-binding for `entry` `text`
17
+ - Improve examples/method_based_custom_keyword.rb with bidirectional data-binding for `entry` `text`
18
+ - Improve examples/meta_example.rb with bidirectional data-binding for `non_wrapping_multiline_entry` `text`
19
+
20
+ ## 0.4.2
21
+
22
+ - examples/button_counter.rb (takes advantage of unidirectional data-binding)
23
+ - Ensure that upon re-opening `#content {}` of `area`, `path`, shapes, `image`, `table`, `text`, and general controls, `post_add_content` initialization is prevented from running multiple times where inappropriate.
24
+ - Document `LibUI` API methods
25
+ - Fix issue with examples/meta_example.rb showing more versions in counts than available
26
+
27
+ ## 0.4.1
28
+
29
+ - Document `observe` keyword
30
+ - Document unidirectional data-binding in more detail (like `:before_read`, `:on_read`, and `:after_read` options)
31
+ - Simplify examples/tetris.rb with `observe` keyword
32
+ - Simplify examples/method_based_custom_keyword.rb with `observe` keyword
33
+ - Simplify examples/color_the_circles.rb with `observe` keyword
34
+ - Simplify examples/snake.rb with `observe` keyword
35
+
3
36
  ## 0.4.0
4
37
 
5
38
  - Upgrade to LibUI 0.0.13
6
39
  - Support general control/shape/attributed_string property unidirectional data-binding (with `<=` sign or `<=>`)
7
40
  - Support `observe` DSL keyword for simple model observation outside of GUI (e.g. `observe(model, attribute) { do_something }` )
8
- - Simplify examples/snake.rb with data-binding
41
+ - Simplify examples/snake.rb with data-binding and make smaller (20x20) to be more challenging and fun
9
42
  - Simplify examples/tic_tac_toe.rb with data-binding
10
43
  - Fix issue with `Shape#redraw` method calling `AreaProxy#auto_redraw` instead of `AreaProxy#redraw`
11
44