glimmer-dsl-libui 0.2.2 → 0.2.6

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: e2d658816439f96cc50c56c93adb7a41798defb44470f47101d65d64fc09bb0d
4
- data.tar.gz: 37abc1ee1f738d73110b9de2e5e9648c0f20d1a81fc928101b6f4d8bf5ca8e85
3
+ metadata.gz: c673025a7a4676538178064f6fb3db7c98eb35f2c2b8c0bf7eb75627d4810309
4
+ data.tar.gz: b3c7a7c67edc0566e542cbdad854a5340cba70c61ac36611a5279095b7710248
5
5
  SHA512:
6
- metadata.gz: c7cbb8b5b0a37fef0d7ac89e4ddc7a18a73d9be0d82dbc58d801cc4a4bc1504dd60f803c8268083eb96fc52c2e807cbd300689a3744c9f43c7b5f1f15c778902
7
- data.tar.gz: 63cfe0c72200e81b196e5cc4fa47473239bc2919db52c027abc5f62ea8de48573a793174d6d61fd2852cc2e19bbb0a5466f0fb6a881af7075bb1e8307c364384
6
+ metadata.gz: 49254ae087358b968b0479dd4ccc1909e03e532e8ad3671432dedd96079d7487f9fb7bdfd3f3f20edd53475389e0553b4676f7fceacd04b130444914254afcd9
7
+ data.tar.gz: f40187fed7f069bf214c16b287b87848e9815a79c72ddb78dd47f9df567d40ceef432dc800ba74ee7247d6f1a0a32e81b65d863e860f2ccec7ea6c20d11a97eb
data/CHANGELOG.md CHANGED
@@ -1,5 +1,39 @@
1
1
  # Change Log
2
2
 
3
+ ## 0.2.6
4
+
5
+ - Support `string` control property: `open_type_features`
6
+ - Auto-free attributed string objects from memory
7
+
8
+ ## 0.2.5
9
+
10
+ - Support attributed `string` `underline_color` property (built-in enum symbols and custom color)
11
+
12
+ ## 0.2.4
13
+
14
+ - Support examples/custom_draw_text.rb
15
+ - Support stable `text` control nestable under `area`
16
+ - Support `string` control property: `background`
17
+ - Support `string` control property: `font`
18
+ - Support `string` control property: `underline`
19
+ - Enhance `combobox` to accept `String` value for `selected` item instead of just `Integer` index
20
+ - Add `selected_item` read-only property to `combobox` to return selected item `String` value
21
+ - Fix `color` property support for `string` to accept 255-based rgb values
22
+ - Fix issue with alternating string colors in examples/basic_draw_text.rb
23
+
24
+ ## 0.2.3
25
+
26
+ - Update examples/midi_player.rb to read sounds locally from gem
27
+ - Support examples/basic_draw_text.rb
28
+ - Support dynamic `text` control to be called in `area` `on_draw` listener
29
+ - Support `text` control `default_font` property
30
+ - Support `string` control nestable under `text` to represent an attributed/unattributed string (depending on nestable properties)
31
+ - Support `string` control property: `color`
32
+ - Support enum symbols for `align` property of `text` control
33
+ - Support enum symbols for `:italic` font descriptor key (in addition to numbers)
34
+ - Support enum symbols for `:stretch` font descriptor key (in addition to numbers)
35
+ - Support enum symbols for `:weight` font descriptor key (in addition to numbers)
36
+
3
37
  ## 0.2.2
4
38
 
5
39
  - Automatically add `vertical_box` parent to `area` if it did not have a box parent (otherwise, it seems not to show up on Linux, even when directly under `grid`)