glimmer-dsl-libui 0.3.1 → 0.3.5

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: 74fca1540788e27b3b5086a888b83f0fe13e296c54eb6faf4ed244ee8e659484
4
- data.tar.gz: 0ce0c22598269dea07489049462f3b94a16e75fc68dcb1fc61f69f1ad66686a0
3
+ metadata.gz: 43de106828bf48e1f04b2257f20ffb4248d5b65401accade19826fdf7cb851af
4
+ data.tar.gz: 0247ccd9451013b36972f44e9512337f8a1b275536a8dfc047534c0320720e69
5
5
  SHA512:
6
- metadata.gz: e449f830e5cdf53aae5bcd490644b5f6611f080353f455a833b17c75dc2f2dd3feacac53fc584aff06d38f7b6f9665b423818d81f6e42523b0549ac029269170
7
- data.tar.gz: 78eb5db52c86d37166f32a91fee303d6cbd3ba91e9add0cd97c6ff6db14d85348a947fdf53bfd9e254a66bff819308844eb9669ebd7affe3c9d7c46cc08729f4
6
+ metadata.gz: c429f9ca63a7a4d0e236d9299ca9810454091865e2a22395aa6fe1aaeb0b3637a61fa6bf368f830c60098fe697ee8b54dba68db67ab0593e3d58f7420ffa9503
7
+ data.tar.gz: 11f519d6473637baa392f65478f86e60c6643bf782738bd680a35739cf94b236f981c349c60451ac69b2531ed51f1b9b88b0c326a065ac71b608c16f7095d9d1
data/CHANGELOG.md CHANGED
@@ -1,5 +1,36 @@
1
1
  # Change Log
2
2
 
3
+ ## 0.3.5
4
+
5
+ - Fixed Area Gallery example (all versions) after a recent refactoring broke it
6
+
7
+ ## 0.3.4
8
+
9
+ - New examples/basic_scrolling_area.rb
10
+ - Smart defaults for `scrolling_area` control + convenience `width` and `height` attributes
11
+ - Simplify examples/basic_area.rb (all versions) by nesting shapes directly under `area`
12
+ - Support `#content {}` method in `figure` to be able to reopen a `figure`'s content to add more shapes in.
13
+
14
+ ## 0.3.3
15
+
16
+ - Support nesting shapes directly under `area` to represent paths having one shape, and nesting `fill`/`stroke` within the shapes (not `path`)
17
+ - Simplify examples/area_gallery.rb (all versions) by nesting shapes directly under `area`
18
+ - Simplify examples/basic_transform.rb by nesting shapes directly under `area` (and provide original version as 2nd version)
19
+ - Simplify examples/color_the_circles.rb by nesting shapes directly under `area`
20
+ - Simplify examples/dynamic_area.rb (all versions) by nesting shapes directly under `area`
21
+ - Simplify examples/histogram.rb (all versions) by nesting shapes directly under `area`
22
+ - Simplify examples/tetris.rb by nesting shapes directly under `area`
23
+ - Simplify examples/tic_tac_toe.rb by nesting shapes directly under `area`
24
+ - Simplify examples/snake.rb by nesting shapes directly under `area`
25
+ - Add a second tab to examples/meta_example.rb to fit more examples
26
+ - Upgrade glimmer to 2.5.0
27
+ - Fix issue in examples/tic_tac_toe.rb permitting change of symbol in marked area
28
+ - Update Style Guide and add an example for each bullet point
29
+
30
+ ## 0.3.2
31
+
32
+ - Fix issue with attempting to free `image` as an object from memory by mistake when used as a control (not an object for `table`)
33
+
3
34
  ## 0.3.1
4
35
 
5
36
  - Support building `image_column` `image` objects in a `table` via `file` property (simplify through automation of use of `image_part` for `.png` image files given that `chunky_png` is now included in the gem)