glimmer-dsl-libui 0.0.28 → 0.1.3

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: 54faaec785d114536e8b747aa55f7d7bd043339e99f041722d60d70623a9b648
4
- data.tar.gz: 9391f99834f34e2b878b2dbf41b7a8ff3f1ab58daf003acdf33a4f93a2e0777c
3
+ metadata.gz: fcb53c296d806a067e4397ba0b51d6449672846fc126285f9b3ecdaf93b204a9
4
+ data.tar.gz: 97dd865c4b0b45e2ba88e6c16b47196f0c6aa2151697ba33c6a9dd391873507e
5
5
  SHA512:
6
- metadata.gz: 8f2d65ebb19e77c5fab1e037c751af43635a03b07671c8e03ac507bf4e01c04e37c083ffe91a4b18796505801e0d77d84770d0aa13951785422db6ae3c11830f
7
- data.tar.gz: 34965b3e01a55733b767dccb4356b4902627a55fd6843295c76fc473a4b049456c7ee59df12bfc9f61541668b763a394d1fb43955f057f6cc8f6a4f72a2ae6b3
6
+ metadata.gz: daaff4633ae70ad0691cb4828fc1678ca2fda631d1ce23dce3ebbff889fef60f25569e84492ce121a2ff518af94b796a44c0ac54095f9b843e9ec7ce9e104902
7
+ data.tar.gz: 6a633312a198a65ff053d1ad28112716e2d8a2468c3336a471786dcb2cf6cdc9b31b12af1881da98864d2ab953a38d92e39278631c92cd9d1d995c4a6ad71360
data/CHANGELOG.md CHANGED
@@ -1,5 +1,36 @@
1
1
  # Change Log
2
2
 
3
+ ## 0.1.3
4
+
5
+ - New examples/area_gallery.rb
6
+ - Support `figure(x = nil, y = nil) {}` (`draw_path_new_figure`)
7
+ - Support `closed true` property inside nested figure (`draw_path_close_figure`)
8
+ - Support `line`
9
+ - Support `bezier`
10
+ - Support `arc` (`draw_path_arc_to` if `draw_path_new_figure` was called already or `draw_path_new_figure_with_arc` if parent is a figure without x,y)
11
+ - Support `square` with `x`, `y`, and `length` properties
12
+
13
+ ## 0.1.2
14
+
15
+ - Support re-opening a control by using `#content {...}`
16
+ - Ensure destroying `path`/`rectangle` after drawing if it is declared inside `on_draw`
17
+ - Observe `path` `fill` and `stroke` hashes for changes and automatically redraw area accordingly
18
+ - New examples/dynamic_area2.rb (using stable paths)
19
+
20
+ ## 0.1.1
21
+
22
+ - Support `area` listener: `on_draw`
23
+ - New examples/basic_area2.rb
24
+
25
+ ## 0.1.0
26
+
27
+ - Support examples/basic_area.rb
28
+ - Support `area` control
29
+ - Support `path(fill_mode)` control
30
+ - Support `rectangle(x, y, width, height)` figure
31
+ - Support `path` `fill` property
32
+ - Support `path` `stroke` property
33
+
3
34
  ## 0.0.28
4
35
 
5
36
  - Support automatic table row change when updating a row in `cell_rows` (e.g. `data[3] = ['new', 'row', 'cell', 'values']`)