glimmer-dsl-libui 0.5.4 → 0.5.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +17 -0
- data/README.md +475 -50
- data/VERSION +1 -1
- data/examples/class_based_custom_controls.rb +121 -0
- data/examples/{method_based_custom_keyword.rb → method_based_custom_controls.rb} +4 -4
- data/examples/{method_based_custom_keyword2.rb → method_based_custom_controls2.rb} +4 -4
- data/glimmer-dsl-libui.gemspec +0 -0
- data/lib/glimmer/dsl/libui/custom_control_expression.rb +59 -0
- data/lib/glimmer/dsl/libui/dsl.rb +1 -0
- data/lib/glimmer/dsl/libui/property_expression.rb +2 -1
- data/lib/glimmer/libui/custom_control.rb +252 -0
- data/lib/glimmer/libui/custom_window.rb +61 -0
- data/lib/glimmer/proc_tracker.rb +39 -0
- data/lib/glimmer-dsl-libui/ext/glimmer.rb +7 -0
- data/lib/glimmer-dsl-libui.rb +1 -1
- metadata +28 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a5ccd1c22e43fbb8401dff62f07008895ad88522452f079112998d0e10f58d72
|
4
|
+
data.tar.gz: 9820c416164d39189ca3d6cfc90076b566b68b3c5e50b293e85d97edd2d4d04b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 545d81430224a9e197ddc4cd15168af5a3cd5f0d24c20f405bb5db3bbe499e38fa0339697e254dd100d7a76aa733fc98f7c3d3f9a8f824dc45a0fc13c4651b24
|
7
|
+
data.tar.gz: 41f91f675dab3a0ecc4004ddc6670db3770127e03dce01143c5be0996894abe9960ee7c6c2ef89166f88faaa6529e24a437821f6b59ce4f764a6c3f7407313cd
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,22 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
+
## 0.5.7
|
4
|
+
|
5
|
+
- Support Custom Window keywords (aka Applications) using `Glimmer::LibUI::CustomWindow` or alias of `Glimmer::LibUI::Application`
|
6
|
+
- Refactor examples/class_based_custom_controls.rb to use `Glimmer::LibUI::Application` (alias: `Glimmer::LibUI::CustomWindow`)
|
7
|
+
|
8
|
+
## 0.5.6
|
9
|
+
|
10
|
+
- Upgrade to glimmer 2.7.1 and document its support for keyed data-binding
|
11
|
+
- Support class-based custom controls
|
12
|
+
- examples/class_based_custom_controls.rb example
|
13
|
+
- Rename examples/method_based_custom_keyword.rb example to examples/method_based_custom_controls.rb
|
14
|
+
|
15
|
+
## 0.5.5
|
16
|
+
|
17
|
+
- Upgrade to libui 0.0.15 (with official Mac ARM64 support)
|
18
|
+
- Update [README](/README.md) with [Area Animation](/README.md#area-animation) `spinner` custom control
|
19
|
+
|
3
20
|
## 0.5.4
|
4
21
|
|
5
22
|
- Support `figure` `bounding_box` (minx, miny, width, height), `contain?` method (checking if shape contains point inside) and `include?` method (checking on outline if stroked and inside if filled?)
|