glimmer-dsl-libui 0.7.8 → 0.9.0

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: f2c400e0bc1a5d9a1a36a7e35d13170149e579c897d4dd51101ba066da65285f
4
- data.tar.gz: ac8a98325e17d741b30cddfeb35c2bf995edd6fccf13fcfff5cfd06793111f20
3
+ metadata.gz: 7e8beebaf4e3c91450a4ae20b619b63a6303e67c82ae6a678f5f509f69a4310c
4
+ data.tar.gz: c2a4f231d85faf7a70fbc96572458b53007b1cd3865f2fe330fca379fd379c74
5
5
  SHA512:
6
- metadata.gz: 8ca8b9374c4cd5d221d2fc8134bccc10cbbaceebd2af530f10e0d44061ed9e68a0bacbeaf6bd802802fe0f2597157ef799793b7136819eaf40b81bd6a40b72d7
7
- data.tar.gz: 24a2d307d439bcfb89403ca2a9fac8144e518a416a62391236f4dda0d68b7c7f85fedfbef7894adaa293055b1c6bbacbd542e1d7ffdfaf27b80a587b4d1d57b0
6
+ metadata.gz: ec4010baf04afde8b8c2312c081af0ae748748869ee19dbdf1bb5ea92d627abbd5d89d87db8a135ba158b56fc4bb28291f2e572e728aaad728c3ca43dcfe5ed2
7
+ data.tar.gz: b4e2c8f38655b60b35a12fd55a634ef706c838a28d622677f86159c931b2ef548f744cf804b26b11d0a696b8fa2a6e4d44fa5118582af44814dee8b3db15a435
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Change Log
2
2
 
3
+ ## 0.9.0
4
+
5
+ - Support `glimmer` command to more conveniently run applications (`glimmer app_path`) and examples (`glimmer examples`)
6
+
7
+ ## 0.8.0
8
+
9
+ - Support `composite_shape` keyword (alias: `shape`) as aggregate (composite) shape that can have arbitrary shapes, text, transforms underneath, which inherit its `fill`/`stroke` colors and `transform`. `composite_shape` also supports nesting mouse listeners, which check mouse click point containment against all nested shapes automatically.
10
+ - New `examples/basic_composite_shape.rb` with use of `shape` + drag and drop support for moving shapes and click support for changing shape colors
11
+ - Invert `Glimmer::LibUI::ControlProxy::KEYWORD_ALIASES` to enable adding multiple aliases per keyword
12
+ - Support `Glimmer::LibUI::Shape::KEYWORD_ALIASES` to enable adding multiple aliases per keyword
13
+ - Small update for `examples/button_counter.rb`
14
+
3
15
  ## 0.7.8
4
16
 
5
17
  - Upgrade to `perfect-shape` gem version 1.0.8 to fix a crashing issue in `examples/shape_coloring.rb`