glimmer-dsl-libui 0.2.14 → 0.2.18

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: 3fc5e2f1b4c01af406703b74785af4a3469d604ff06a798a3577895e0850645c
4
- data.tar.gz: 307dda9b6070a9c01a26a76590172f3a04c73f48998a462b5e334fc8cf2bde6d
3
+ metadata.gz: c52fe6bf6dd2ed5494e9bc372628d340379cfdbfd8e2d19617c4813324e47a91
4
+ data.tar.gz: d713e9293141c0c7d74d0be00319126fccad50c7aea6d787fe1cb1774b8547a6
5
5
  SHA512:
6
- metadata.gz: 232c835f1aa07097e7e190053adbc5f3572c4a9e77f94ad17d2b01fe47ff092c2722ad7236669bbff8a231dc5ba9908498173f4ad949e321f942f0d037ce4fc6
7
- data.tar.gz: 250349d677f9e5bcadb961747707370d9d67bb6d3bdd48a8990887eda2ee7db22905c2898d63bef4fc40b958ec1c8d25541af625991e36ab5c6b49d7766398fa
6
+ metadata.gz: d10eb3c9fff91f1a6881189b6ae17735986aff25f256eefc9c88ab1f4b8c11a20837ebf10f9735d02dc86418ba9471032bb2992e9f74e72fd9a446ff9116359d
7
+ data.tar.gz: 7706f38cf41de97fd1a740ecaf150f0852d1974872e3dd95e0006df03927d081add8d06b342fb0c7b966c79c0134c1d591cfdff499bf5d951470fb7701a131b5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # Change Log
2
2
 
3
+ ## 0.2.18
4
+
5
+ - Support `polygon` (closed figure of lines), `polyline` (open figure of lines), and `polybezier` (open figure of beziers) shape keywords to use under `path`
6
+ - Improve examples/tetris.rb with bevel block 3D look and restarting upon game over
7
+ - Update examples/area_gallery.rb to add uses of `polygon`, `polyline`, and `polybezier`
8
+ - Refactor examples/histogram.rb to utilize new `polygon` and `polyline` keywords
9
+ - Support `area` `request_auto_redraw`, `pause_auto_redraw`, and `resume_auto_redraw`, operations, and `auto_redraw_enabled` property.
10
+
11
+ ## 0.2.17
12
+
13
+ - Tetris example - basic version with simple color squares
14
+
15
+ ## 0.2.16
16
+
17
+ - Document all examples with Windows screenshots
18
+ - Fix examples/basic_transform.rb issue on Windows where it shows an uncentered different graphic than what is shown on Mac and Linux
19
+
20
+ ## 0.2.15
21
+
22
+ - Make examples/meta_example.rb output catch up more quickly with event puts statements
23
+ - Fix examples/color_the_circles.rb on Windows (it was crashing upon losing)
24
+
3
25
  ## 0.2.14
4
26
 
5
27
  - Revise examples/meta_example.rb to avoid blocking upon launching examples, thus permitting launching multiple examples at the same time