glimmer-dsl-libui 0.2.6 → 0.2.10

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c673025a7a4676538178064f6fb3db7c98eb35f2c2b8c0bf7eb75627d4810309
4
- data.tar.gz: b3c7a7c67edc0566e542cbdad854a5340cba70c61ac36611a5279095b7710248
3
+ metadata.gz: 5bc0120584b295401bc245af8ff7110fb332dc74a2f2a60d67be31ccace6f615
4
+ data.tar.gz: d456fb5265a0d11c09aede73c9b2930a00710d9696a99f8b91bc180f53b8d153
5
5
  SHA512:
6
- metadata.gz: 49254ae087358b968b0479dd4ccc1909e03e532e8ad3671432dedd96079d7487f9fb7bdfd3f3f20edd53475389e0553b4676f7fceacd04b130444914254afcd9
7
- data.tar.gz: f40187fed7f069bf214c16b287b87848e9815a79c72ddb78dd47f9df567d40ceef432dc800ba74ee7247d6f1a0a32e81b65d863e860f2ccec7ea6c20d11a97eb
6
+ metadata.gz: 1b671bfda5925f794d79bbb4b83d849ce772e3f42176d3ed66067567f17584e6fe5296eb0b5d4787b38e1053a822c5bdc50175ff7321e4e67857da39f717b802
7
+ data.tar.gz: d4c78d48c0118eb9c92345639ef7a24b333a9d818e54529fec599fce852e070d1b8123fc91252e8fc163245f9ca4b2b6ec4384ad9c1ad53e2590ca610ef9f6b4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,35 @@
1
1
  # Change Log
2
2
 
3
+ ## 0.2.10
4
+
5
+ - New examples/method_based_custom_keyword.rb
6
+ - Update examples/form.rb to have two more fields
7
+ - Update color_button example to show how to preset initial color
8
+ - Support `path` `fill`/`stroke` `:type` of `:linear_gradient`
9
+ - Support `path` `fill`/`stroke` `:type` of `:radial_gradient`
10
+ - Add text to Area Gallery examples
11
+ - Update variable names in examples/meta_example.rb to be more meaningful
12
+ - Update examples/meta_example.rb to show terminal/command-line output for run examples
13
+
14
+ ## 0.2.9
15
+
16
+ - Upgrade to glimmer 2.3.0
17
+ - 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)
18
+
19
+ ## 0.2.8
20
+
21
+ - Support `table` `on_changed` listener to report all changes (of operation type `:deleted`, `:changed`, `:inserted`)
22
+ - Support `table` `on_edited` listener to report changes happening through direct table editing only
23
+ - Default value of `text` `width` argument looks into x and adjusts by leaving the same space on the right side
24
+
25
+ ## 0.2.7
26
+
27
+ - New examples/basic_table_color.rb
28
+ - Support `background_color_column` for `table`
29
+ - Support `text_color_column` for `table`
30
+ - Support `checkbox_text_color_column` for `table`
31
+ - Support `image_text_color_column` for `table`
32
+
3
33
  ## 0.2.6
4
34
 
5
35
  - Support `string` control property: `open_type_features`