glimmer-dsl-libui 0.4.10 → 0.4.11

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: e3bdea12bc1f9ff1798491a5637c598e0e1e9448d8cb3e5e2cd194b77ad8d95a
4
- data.tar.gz: f704324045b58a3372d5ffe7893642fa953ac5f00edded4171b96272ec0c792b
3
+ metadata.gz: 3e70a639d4f55c50b7e18b15c8122969c08dd4e50c8517048d9167bb8e7f1a4e
4
+ data.tar.gz: 7c774b5f04f58306113c89355201026585c6b5701dcad7c911fa541044423196
5
5
  SHA512:
6
- metadata.gz: 671a20f2ea32891bb02a8c0167ca6ae4018f2a012168358311e5fd2f978e72c505452374cec6cf287eee5ada148b332fc641e4eb396e731e19b64d58c69406d8
7
- data.tar.gz: c6f60d658ed413eca1c69fde9423916457c77718d206000428733e232be506ab4631b57b66489b476c41e0b7c994dca42d59422da8cedfc273a688418d8a3988
6
+ metadata.gz: de3cca63789bd2d0818ad65350dc1e8ae79206c11d1f6f38b2bd4f7702f846b2ee160ca34456889d9a19dc958e5c768b3d6c8f0deb52f9b2c6205e1d719c3ef2
7
+ data.tar.gz: 9fae92e29083d58ae527d548084f7da5187170aa3f0c66796649edffaf53ee7d7d0a948d586ea9a3310c34c5213125bbe5c6883f7f1c1fdc2e8dad1ec83ec96c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Change Log
2
2
 
3
+ ## 0.4.11
4
+
5
+ - Support `table` `cell_rows` explicit bidirectional data-binding (with `<=>` sign)
6
+ - Support `table` `cell_rows` explicit bidirectional data-binding with model-based rows (not `Array`s of column cells) by expecting model attributes to match underscored column names
7
+ - Support specifying `column_attributes` as `Hash` map (e.g. `{'State/Province' => :state}`) in `table` `cell_rows` explicit bidirectional data-binding with model-based rows (not `Array`s of column cells)
8
+ - Support specifying `column_attributes` as `Array` (e.g. `[:name, :email, :phone, :city, :state]`) in `table` `cell_rows` explicit bidirectional data-binding with model-based rows (not `Array`s of column cells)
9
+ - Ensure `post_add_content` is not called on controls and shapes during Shine syntax data-binding
10
+ - Improve examples/basic_table_button.rb with bidirectional data-binding for `table` `cell_rows`
11
+ - Improve examples/form_table.rb with bidirectional data-binding for `table` `cell_rows`
12
+ - Ensure examples/meta_example.rb has examples sorted
13
+ - Fix minor issue in examples/meta_example.rb by deselecting radio in basic examples when selecting an advanced example (and vice versa)
14
+
3
15
  ## 0.4.10
4
16
 
5
17
  - examples/cpu_percentage.rb