glimmer-dsl-libui 0.1.0 → 0.1.4

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: f0e5255370f70684a7f60de75fe52399f604761996059b23370ce53c4e11cdd1
4
- data.tar.gz: 00fe32154a83c206843d2386406cde3841da5296cb432585d8aedf421578c47c
3
+ metadata.gz: cc9eaa2a61420e3a1d976ab3b6882bd1e34c82a945780a39ab7c22f4146f1c93
4
+ data.tar.gz: 35afb04fac90b577482203540944df84138267bf3de14551e6e3cb5c836c2149
5
5
  SHA512:
6
- metadata.gz: 92ef8efbe6d9563dcf20affce754ea4f8fd6ee3eceec014f7499a8ea15631e0127877526ca313513129aee506dc9b363651dde235e2e965a456ddcb2df29c7ae
7
- data.tar.gz: 9ceec5135f065862bfc7590883346dc0930380da5e12f6b575a5c4a6c1c6d45e7d575392daf0b003cf78889a5c90cc4033cd48783e1a6c2cd5f4e53d4814b009
6
+ metadata.gz: 935beb60983735533a31c2a25c20bb2c817c0a184113cbafaeb2918bf9a8d485b784b86bed2273141bbf068bff005bebcb5806de82650cfeee45c14af28a0f72
7
+ data.tar.gz: 4d9ae69fe974dc8a91e03577856f171f3270a4d02e8075c0796a6d9aaaa94ea2c6fd9e0d93086f1000aa4bc34c4e16db3d44b6bf3bd5038f7faf6957490eba0b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,35 @@
1
1
  # Change Log
2
2
 
3
+ ## 0.1.4
4
+
5
+ - Update examples/basic_table_progress_bar.rb with a listener
6
+ - Set default values for shape parameters and support passing shape parameters as properties inside their body (e.g. `rectangle {x 2; y 3; width 400; height 800}`)
7
+ - New examples/area_gallery2.rb (utilizing properties instead of args)
8
+ - New examples/area_gallery3.rb (semi-declarative on_draw dynamic paths)
9
+ - New examples/area_gallery4.rb (utilizing properties instead of args with semi-declarative on_draw dynamic paths)
10
+
11
+ ## 0.1.3
12
+
13
+ - New examples/area_gallery.rb
14
+ - Support `figure(x = nil, y = nil) {}` (`draw_path_new_figure`)
15
+ - Support `closed true` property inside nested figure (`draw_path_close_figure`)
16
+ - Support `line`
17
+ - Support `bezier`
18
+ - 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)
19
+ - Support `square` with `x`, `y`, and `length` properties
20
+
21
+ ## 0.1.2
22
+
23
+ - Support re-opening a control by using `#content {...}`
24
+ - Ensure destroying `path`/`rectangle` after drawing if it is declared inside `on_draw`
25
+ - Observe `path` `fill` and `stroke` hashes for changes and automatically redraw area accordingly
26
+ - New examples/dynamic_area2.rb (using stable paths)
27
+
28
+ ## 0.1.1
29
+
30
+ - Support `area` listener: `on_draw`
31
+ - New examples/basic_area2.rb
32
+
3
33
  ## 0.1.0
4
34
 
5
35
  - Support examples/basic_area.rb