glimmer-dsl-libui 0.0.6 → 0.0.10

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: 602cf477d5809c99e64e46f2e51a66f1610364a28402b568cc6fe97cf5666115
4
- data.tar.gz: 3a45bca62165d28c11d8f9ee9e0c281c986c499b9df9ffb889214cb4a2240974
3
+ metadata.gz: 709fb51692fedecbca6438b288711c2fb7f3a71cb5ce5f5f16e1a5c9629bc5fb
4
+ data.tar.gz: 2706858ead6f7bf47f042be22cc40b0546706de8c4c7cfbfdf7457aeb007fa3a
5
5
  SHA512:
6
- metadata.gz: 696a6c43d9b75fa8692d74121d6674dc0b3a040cf47401721007ed6a4865372a67dc46df96bdf63d167a2b3b5187c3ca4139a365fa7942d537f85ed6287f8908
7
- data.tar.gz: 1b9480211e41aa30fa51f3936d44b3597c5c30d535ccead178504bb7b9c3ed2f3dbc61ae838b81e2c6d2e3fe8a6e4d30a8406fdce81e800398972564699dff63
6
+ metadata.gz: 8b501a86cf85fb6b1c488580b76336765cf1d2fbdf864edf16e3587bba80710a900a05186e0c9e3f67a667ab64fbaf3ebcf1ec54c4ebbfb8e41ddd7b77f93555
7
+ data.tar.gz: 5e1f94ad2479f71d54a163d69d6c266eac9f361909e3c305e04afc073c882178ac1dba80fbc9927a7037a93593000eb469e0c7a9e0342003ced8cf349ddfd6ae
data/CHANGELOG.md CHANGED
@@ -1,5 +1,35 @@
1
1
  # Change Log
2
2
 
3
+ ## 0.0.10
4
+
5
+ - Support examples/font_button.rb
6
+ - Support `font_button` control
7
+ - Add File -> Quit menu item to examples/meta_example.rb
8
+ - Glimmer Style Guide added to README.md
9
+
10
+ ## 0.0.9
11
+
12
+ - Build a meta-example (example of examples)
13
+
14
+ ## 0.0.8
15
+
16
+ - Add `?` suffixed aliases to all boolean property methods
17
+ - Make C bool properties return boolean in Ruby (not `1` or `0`)
18
+ - Support passing boolean values to C bool properties in addition to `1` or `0`
19
+ - Support passing boolean values to C bool constructor args in addition to `1` or `0`
20
+ - Update all examples to utilize booleans
21
+ - Make `window` properties `title`=`'Glimmer'`, `content_size`=`150`,`150` & `has_menubar`=`1` if not specified as args in constructor
22
+ - Have string properties (e.g. `text` and `title`) return `String` not fiddle pointer
23
+
24
+ ## 0.0.7
25
+
26
+ - Make `padded 1` the default in `horizontal_box` and `vertical_box` to achieve nicer looking GUI by default
27
+ - Make `margined 1` the default in `group` to achieve nicer looking GUI by default
28
+ - Destroy main window upon hitting quit on quit menu item
29
+ - Rename `ControlProxy::all_controls` to `ControlProxy::all_control_proxies` to more accurately describe its contents
30
+ - Add `ControlProxy::main_window_proxy` method to retrieve main window proxy
31
+ - Define a `#window_proxy` method on `ControlProxy` to retrieve `window` control proxy for any control
32
+
3
33
  ## 0.0.6
4
34
 
5
35
  - Make listener block provide Ruby proxy object as optional argument (not Fiddle pointer)