glimmer-dsl-libui 0.2.7 → 0.2.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: 33e2f34a434ea4036e788ae6fee9b2329220f53b002357c5447cdf6d2421959b
4
- data.tar.gz: d38442e11122157bb2aa1db6a7881a3bc0e353c40842ccfdc823a357cdf9a16e
3
+ metadata.gz: 167c5bae90fe7c652d42de1f788dcb89f5cffba6288ee5bf8ef1b7b5a747a5c0
4
+ data.tar.gz: 0f000ac03b6e7b368a14dad29b078745ca800a96c7df047b27ed00b450325b23
5
5
  SHA512:
6
- metadata.gz: c0c9657f2d68852873bdbf8a294816a2bc684e5ca902e8c9c1d43d43ed0e313850ef127176470b29df0c000a4fe65465cc58948c0cfcdc182eef569c978fd72a
7
- data.tar.gz: b13df322764b9bd8e4fd2259992d2eff0abe2ed1f4e7e144deb8d15d56ddaccd6eaaa78fa40715eaff89dddbd201a4a9f2f6d77fd9ab8692cbf325043161510e
6
+ metadata.gz: 44ea533dd57219b02924d3ae50b5591ca22b209dc677763f0b27163a685ce671bfbacc1e5b19bb2c6ae95ff25622f908d80514fc73d1e6b5dd61e6429f9a91e6
7
+ data.tar.gz: c8430e69bac6b16d284bc5159bbed6892e410a4b4dd22c49d085df20ed07822c5d77caddef418abeac9b5bd6726bbe643b260e059a7213a6d2691d10cf58abb5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,32 @@
1
1
  # Change Log
2
2
 
3
+ ## 0.2.11
4
+
5
+ - Fix issue with running examples that rely on local assets from gem (they work fine from locally cloned project)
6
+ - Fix issue with not showing puts output in Basic Table Button and Editable Table examples when run from Meta Example
7
+
8
+ ## 0.2.10
9
+
10
+ - New examples/method_based_custom_keyword.rb
11
+ - Update examples/form.rb to have two more fields
12
+ - Update color_button example to show how to preset initial color
13
+ - Support `path` `fill`/`stroke` `:type` of `:linear_gradient`
14
+ - Support `path` `fill`/`stroke` `:type` of `:radial_gradient`
15
+ - Add text to Area Gallery examples
16
+ - Update variable names in examples/meta_example.rb to be more meaningful
17
+ - Update examples/meta_example.rb to show terminal/command-line output for run examples
18
+
19
+ ## 0.2.9
20
+
21
+ - Upgrade to glimmer 2.3.0
22
+ - Use glimmer 2.3.0 to support automatic table row change when performing a direct deep row/column update in `cell_rows` (e.g. `data[3][0] = 'new value'`) as opposed to a general shallow row update (e.g. `data[3] = ['new value', 'other new value']` <- already supported)
23
+
24
+ ## 0.2.8
25
+
26
+ - Support `table` `on_changed` listener to report all changes (of operation type `:deleted`, `:changed`, `:inserted`)
27
+ - Support `table` `on_edited` listener to report changes happening through direct table editing only
28
+ - Default value of `text` `width` argument looks into x and adjusts by leaving the same space on the right side
29
+
3
30
  ## 0.2.7
4
31
 
5
32
  - New examples/basic_table_color.rb