glimmer-dsl-libui 0.0.7 → 0.0.11

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: db236ce703f8fbdab45930d36dca47f2303faf3405fd3bd037bbcab261b79245
4
- data.tar.gz: ac097ae80240402e741d38b08f8b1c5e6941582c9e2b17fadf29d5c76971419d
3
+ metadata.gz: 22947befdd94073071547600efd1434fe98babc87c1fb35a169c9133e7979653
4
+ data.tar.gz: c7733269d49a56c24c13c3df6df4efc680882f12e62926a9169f5114a412af0a
5
5
  SHA512:
6
- metadata.gz: d32551f5df4bd763f1c6cee6a52c706972658ee3507e5d619152672679a1b9f499653da26b2581d7d35cd92aa40439f956900681d5c9b8e1b233db71a32cb8bd
7
- data.tar.gz: def3355ba0e07c7f72d1deede04233932cbb175e4142fe77d1e243b95eb960849e123e729f14be5d27a94a16bc4c4060d65c75df22c2c7f44cc2e87e2350db48
6
+ metadata.gz: d0c881484a837ddc71738e8e91f75881da6de87773703d88172f6d2a13626382d7eaee749ba6ef09f175e90f937a91d248462268780783d34b1a6e65584097da
7
+ data.tar.gz: f484ecb4e1b16c21899b3263d18d736925752519e6271c611c8ac2ef4639884e8cc057661a7440824cc1df1dacb595226563b9a1343f2b25586358c0340c92cd
data/CHANGELOG.md CHANGED
@@ -1,5 +1,33 @@
1
1
  # Change Log
2
2
 
3
+ ## 0.0.11
4
+
5
+ - New examples/basic_color.rb
6
+ - Support `color_button` `color` property
7
+ - Proper destroy of controls (deleting from parent `box`, `window`, or `group` first)
8
+ - On the Mac only, if no menu is specified, add a Quit menu item automatically to allow quitting with CMD+Q
9
+
10
+ ## 0.0.10
11
+
12
+ - Support examples/font_button.rb
13
+ - Support `font_button` control
14
+ - Add File -> Quit menu item to examples/meta_example.rb
15
+ - Glimmer Style Guide added to README.md
16
+
17
+ ## 0.0.9
18
+
19
+ - Build a meta-example (example of examples)
20
+
21
+ ## 0.0.8
22
+
23
+ - Add `?` suffixed aliases to all boolean property methods
24
+ - Make C bool properties return boolean in Ruby (not `1` or `0`)
25
+ - Support passing boolean values to C bool properties in addition to `1` or `0`
26
+ - Support passing boolean values to C bool constructor args in addition to `1` or `0`
27
+ - Update all examples to utilize booleans
28
+ - Make `window` properties `title`=`'Glimmer'`, `content_size`=`150`,`150` & `has_menubar`=`1` if not specified as args in constructor
29
+ - Have string properties (e.g. `text` and `title`) return `String` not fiddle pointer
30
+
3
31
  ## 0.0.7
4
32
 
5
33
  - Make `padded 1` the default in `horizontal_box` and `vertical_box` to achieve nicer looking GUI by default