glimmer-dsl-libui 0.2.3 → 0.2.7

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: 7033d9033941a3dac53c927ae7ddfdd27127eb4286a936d36e86acb226e57f99
4
- data.tar.gz: e88c6c0fd4dd246e4f4f7d9f38cc3c8d10f31e0c3cbbd329de4bdd70b4618cf0
3
+ metadata.gz: 33e2f34a434ea4036e788ae6fee9b2329220f53b002357c5447cdf6d2421959b
4
+ data.tar.gz: d38442e11122157bb2aa1db6a7881a3bc0e353c40842ccfdc823a357cdf9a16e
5
5
  SHA512:
6
- metadata.gz: 97140fa3ac706b51f054a047d310172c7469eadca3b90307ff8174443c7f9655a6369e59e6f0ce68c52e7dc1189e5c53abd6654b89e0d5b52f2eed638f347d32
7
- data.tar.gz: 24687499c2bd93b4514d6e7d472e57a788d50315b944bc7289a871b7286b91e46e43fd7651b28b0f1ac4a074f80efdae385a1f3b6d3cdbeaab2cbf46cc0f4c30
6
+ metadata.gz: c0c9657f2d68852873bdbf8a294816a2bc684e5ca902e8c9c1d43d43ed0e313850ef127176470b29df0c000a4fe65465cc58948c0cfcdc182eef569c978fd72a
7
+ data.tar.gz: b13df322764b9bd8e4fd2259992d2eff0abe2ed1f4e7e144deb8d15d56ddaccd6eaaa78fa40715eaff89dddbd201a4a9f2f6d77fd9ab8692cbf325043161510e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,34 @@
1
1
  # Change Log
2
2
 
3
+ ## 0.2.7
4
+
5
+ - New examples/basic_table_color.rb
6
+ - Support `background_color_column` for `table`
7
+ - Support `text_color_column` for `table`
8
+ - Support `checkbox_text_color_column` for `table`
9
+ - Support `image_text_color_column` for `table`
10
+
11
+ ## 0.2.6
12
+
13
+ - Support `string` control property: `open_type_features`
14
+ - Auto-free attributed string objects from memory
15
+
16
+ ## 0.2.5
17
+
18
+ - Support attributed `string` `underline_color` property (built-in enum symbols and custom color)
19
+
20
+ ## 0.2.4
21
+
22
+ - Support examples/custom_draw_text.rb
23
+ - Support stable `text` control nestable under `area`
24
+ - Support `string` control property: `background`
25
+ - Support `string` control property: `font`
26
+ - Support `string` control property: `underline`
27
+ - Enhance `combobox` to accept `String` value for `selected` item instead of just `Integer` index
28
+ - Add `selected_item` read-only property to `combobox` to return selected item `String` value
29
+ - Fix `color` property support for `string` to accept 255-based rgb values
30
+ - Fix issue with alternating string colors in examples/basic_draw_text.rb
31
+
3
32
  ## 0.2.3
4
33
 
5
34
  - Update examples/midi_player.rb to read sounds locally from gem
@@ -7,7 +36,7 @@
7
36
  - Support dynamic `text` control to be called in `area` `on_draw` listener
8
37
  - Support `text` control `default_font` property
9
38
  - Support `string` control nestable under `text` to represent an attributed/unattributed string (depending on nestable properties)
10
- - Support `string` control property `color`
39
+ - Support `string` control property: `color`
11
40
  - Support enum symbols for `align` property of `text` control
12
41
  - Support enum symbols for `:italic` font descriptor key (in addition to numbers)
13
42
  - Support enum symbols for `:stretch` font descriptor key (in addition to numbers)