glimmer-dsl-libui 0.2.13 → 0.2.14
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -0
- data/README.md +205 -167
- data/VERSION +1 -1
- data/examples/area_gallery.rb +13 -15
- data/examples/area_gallery2.rb +22 -24
- data/examples/area_gallery3.rb +13 -15
- data/examples/area_gallery4.rb +22 -24
- data/examples/{color_the_shapes.rb → color_the_circles.rb} +37 -38
- data/examples/meta_example.rb +12 -8
- data/glimmer-dsl-libui.gemspec +0 -0
- data/lib/glimmer/dsl/libui/control_expression.rb +2 -0
- data/lib/glimmer/libui/control_proxy/area_proxy.rb +37 -4
- data/lib/glimmer/libui/control_proxy.rb +17 -2
- data/lib/glimmer/libui/shape/arc.rb +5 -1
- data/lib/glimmer/libui/shape/circle.rb +5 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3fc5e2f1b4c01af406703b74785af4a3469d604ff06a798a3577895e0850645c
|
4
|
+
data.tar.gz: 307dda9b6070a9c01a26a76590172f3a04c73f48998a462b5e334fc8cf2bde6d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 232c835f1aa07097e7e190053adbc5f3572c4a9e77f94ad17d2b01fe47ff092c2722ad7236669bbff8a231dc5ba9908498173f4ad949e321f942f0d037ce4fc6
|
7
|
+
data.tar.gz: 250349d677f9e5bcadb961747707370d9d67bb6d3bdd48a8990887eda2ee7db22905c2898d63bef4fc40b958ec1c8d25541af625991e36ab5c6b49d7766398fa
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
+
## 0.2.14
|
4
|
+
|
5
|
+
- Revise examples/meta_example.rb to avoid blocking upon launching examples, thus permitting launching multiple examples at the same time
|
6
|
+
- Automatically provide shifted `:key` characters in `area_key_event` provided in `area` key listeners `on_key_event`, `on_key_down`, and `on_key_up` given that libui does not support out of the box (e.g. `!` for SHIFT+1)
|
7
|
+
- Support `message_box` as an alias for `msg_box` (and `message_box_error` for `msg_box_error` too)
|
8
|
+
- Tolerate `nil` input for any widget `String` attributes (e.g. `entry` `text` attribute)
|
9
|
+
- Fix issue regarding `arc`s and `circle`s on Windows by auto-starting a figure if not started already (on Mac and Linux that is not needed)
|
10
|
+
- Fix Color The Shapes (Circles) and rename back to Color The Circles due to fixing `circle` support on Windows
|
11
|
+
|
3
12
|
## 0.2.13
|
4
13
|
|
5
14
|
- Rename examples/color_the_circles.rb to examples/color_the_shapes.rb to fix/make compatible with Windows by rendering only Squares on Windows, but Squares and Circles on Mac/Linux
|