glimmer-dsl-libui 0.2.8 → 0.2.12

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: c97e75e5d70341821d3b41fe832ae7efe1c70713ad673576a8498c4a3cd4ce70
4
- data.tar.gz: 46fab85f1c845963a823a4e894987914dfbff128122db19b7ae4a82766f43044
3
+ metadata.gz: 3aefaaeba868daf629c8ec07474b45a78f10c2dfb17ef5fc748b97dc3f00447c
4
+ data.tar.gz: eccf64a897d80f36e99f738c4cf528715c666ad80a86fa2c6abdb75d340edd39
5
5
  SHA512:
6
- metadata.gz: 9aa8032624bfdca1b1dcdb399e16eb2246244f09d48cf476e20a35ce58b2d2b0e6bba34defb810a8265a1c838422fecffd09f568aabb797c7d5ba93c6ffed93d
7
- data.tar.gz: 63206e935531bf431b417925fc4c569d685e6acbfc06e73d8231b7f53f60751bab0797ddfdd9580ca85d4cbc9d27e80b23b0bebccafa554ab988130e17478fe5
6
+ metadata.gz: 9bc9daeb504c2133ceadb0556ec29ff2264789c4d0c86a1958752106beed708912830692125c660579914d1cea67fe16827056add48f7d132ab67c9e814ab15e
7
+ data.tar.gz: ce7a85691919adb938b1eb3de235ca5fed5a9bfa4b484f649dff1a5a03ee7a46cabcd25cb7c54da9d86a60e215495e0e075f82c647f6e5125e491aa617491ef6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,33 @@
1
1
  # Change Log
2
2
 
3
+ ## 0.2.12
4
+
5
+ - Upgrade to glimmer 2.4.0
6
+ - Upgrade to LibUI 0.0.12
7
+ - Support passing `string` value as an argument to attributed `string` keyword
8
+ - Support setting `string` value as a property on attributed `string` keyword (automatically redrawing)
9
+
10
+ ## 0.2.11
11
+
12
+ - Fix issue with running examples that rely on local assets from gem (they work fine from locally cloned project)
13
+ - Fix issue with not showing puts output in Basic Table Button and Editable Table examples when run from Meta Example
14
+
15
+ ## 0.2.10
16
+
17
+ - New examples/method_based_custom_keyword.rb
18
+ - Update examples/form.rb to have two more fields
19
+ - Update color_button example to show how to preset initial color
20
+ - Support `path` `fill`/`stroke` `:type` of `:linear_gradient`
21
+ - Support `path` `fill`/`stroke` `:type` of `:radial_gradient`
22
+ - Add text to Area Gallery examples
23
+ - Update variable names in examples/meta_example.rb to be more meaningful
24
+ - Update examples/meta_example.rb to show terminal/command-line output for run examples
25
+
26
+ ## 0.2.9
27
+
28
+ - Upgrade to glimmer 2.3.0
29
+ - 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)
30
+
3
31
  ## 0.2.8
4
32
 
5
33
  - Support `table` `on_changed` listener to report all changes (of operation type `:deleted`, `:changed`, `:inserted`)