glimmer-dsl-libui 0.2.23 → 0.3.2

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: 3e33c97761bce7909c5a48df2689cb8bd0a4745ac68a24c814c4938c36eb08e0
4
- data.tar.gz: 604b2d6439ed510f6e30bae8f431c09fcd348f14afa71fa4707a3de0d71cae33
3
+ metadata.gz: 2ed68bb2e66a4360184bea96a6fcfdfc4a13bdab5bb18861c536250b2e877a84
4
+ data.tar.gz: 5d17577d31c8d1ad76f7e1c05acfbfb92c02ba70371a25907ebce882a177a2d0
5
5
  SHA512:
6
- metadata.gz: 66603e770e6135e08ea785ef46ac9158c6f14b1c3966175c7116f9a81cc3dbbfcc2ee495f16d367976174b2f8f0d9013640731713db3c9be65dd5b973dba12b5
7
- data.tar.gz: 94ca555082c61042dd24ba0a36b75b5b401b8c63ef0c0f5acff6b3fcb2f822dd37e61ab3cd3660b5e657896a8209afe09760cf8c7fc9a092d00a6666d43a1c96
6
+ metadata.gz: 119b53a76cfe2c401087e8199b2625e527241911d04b6952ff161eae743e18dce8a7e4ea05ade7cb5ecb4753db8b48d7df7e5a52c09eb21e5eee186d1bccd833
7
+ data.tar.gz: 5236ce0bd94c52a1d25ea60587221e6ec8fe352f8a3e7e6abe48980b430fd1002256dd1b85ece3c6c6300a77955156e82445be58767197747fa1b82073b080e4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # Change Log
2
2
 
3
+ ## 0.3.2
4
+
5
+ - Fix issue with attempting to free `image` as an object from memory by mistake when used as a control (not an object for `table`)
6
+
7
+ ## 0.3.1
8
+
9
+ - 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)
10
+ - Support Web URL as `image` control `file` property
11
+ - Add `key_code` as alias to `key_value` in `area_key_event` `Hash`
12
+ - Fix issue with editing `text_color_column` in `table` having `editable true` property
13
+ - Fix issue with editing `checkbox_text_column` text in `table` having `editable true` or `editable_text true` property
14
+
15
+ ## 0.3.0
16
+
17
+ - Upgrade to glimmer 2.4.1
18
+ - Add `chunky_png` gem to support `.png` images natively
19
+ - New `image` Glimmer custom control that can be nested under `area` to render an image (it is not part of LibUI, so it has some performance caveats, but is better than nothing and is fast with smaller image width/height)
20
+
21
+ ## 0.2.24
22
+
23
+ - Support hex colors as `String` with `'#'` prefix (e.g. '#ffaa92')
24
+
3
25
  ## 0.2.23
4
26
 
5
27
  - Improve examples/tetris.rb by having high score dialog pause the game if running and resume after closed