glimmer-dsl-libui 0.2.8 → 0.2.12
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 +4 -4
- data/CHANGELOG.md +28 -0
- data/README.md +472 -92
- data/VERSION +1 -1
- data/examples/area_gallery.rb +16 -8
- data/examples/area_gallery2.rb +26 -12
- data/examples/area_gallery3.rb +14 -6
- data/examples/area_gallery4.rb +26 -12
- data/examples/basic_draw_text2.rb +0 -1
- data/examples/basic_table_button.rb +1 -0
- data/examples/basic_table_progress_bar.rb +1 -1
- data/examples/color_button.rb +2 -0
- data/examples/editable_table.rb +2 -0
- data/examples/form.rb +12 -2
- data/examples/meta_example.rb +33 -18
- data/examples/method_based_custom_keyword.rb +97 -0
- data/glimmer-dsl-libui.gemspec +0 -0
- data/lib/glimmer/dsl/libui/string_expression.rb +9 -2
- data/lib/glimmer/libui/attributed_string.rb +12 -2
- data/lib/glimmer/libui/control_proxy/path_proxy.rb +31 -6
- data/lib/glimmer/libui/control_proxy/table_proxy.rb +13 -3
- data/lib/glimmer/libui.rb +1 -1
- metadata +12 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3aefaaeba868daf629c8ec07474b45a78f10c2dfb17ef5fc748b97dc3f00447c
|
4
|
+
data.tar.gz: eccf64a897d80f36e99f738c4cf528715c666ad80a86fa2c6abdb75d340edd39
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9bc9daeb504c2133ceadb0556ec29ff2264789c4d0c86a1958752106beed708912830692125c660579914d1cea67fe16827056add48f7d132ab67c9e814ab15e
|
7
|
+
data.tar.gz: ce7a85691919adb938b1eb3de235ca5fed5a9bfa4b484f649dff1a5a03ee7a46cabcd25cb7c54da9d86a60e215495e0e075f82c647f6e5125e491aa617491ef6
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,33 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
+
## 0.2.12
|
4
|
+
|
5
|
+
- Upgrade to glimmer 2.4.0
|
6
|
+
- Upgrade to LibUI 0.0.12
|
7
|
+
- Support passing `string` value as an argument to attributed `string` keyword
|
8
|
+
- Support setting `string` value as a property on attributed `string` keyword (automatically redrawing)
|
9
|
+
|
10
|
+
## 0.2.11
|
11
|
+
|
12
|
+
- Fix issue with running examples that rely on local assets from gem (they work fine from locally cloned project)
|
13
|
+
- Fix issue with not showing puts output in Basic Table Button and Editable Table examples when run from Meta Example
|
14
|
+
|
15
|
+
## 0.2.10
|
16
|
+
|
17
|
+
- New examples/method_based_custom_keyword.rb
|
18
|
+
- Update examples/form.rb to have two more fields
|
19
|
+
- Update color_button example to show how to preset initial color
|
20
|
+
- Support `path` `fill`/`stroke` `:type` of `:linear_gradient`
|
21
|
+
- Support `path` `fill`/`stroke` `:type` of `:radial_gradient`
|
22
|
+
- Add text to Area Gallery examples
|
23
|
+
- Update variable names in examples/meta_example.rb to be more meaningful
|
24
|
+
- Update examples/meta_example.rb to show terminal/command-line output for run examples
|
25
|
+
|
26
|
+
## 0.2.9
|
27
|
+
|
28
|
+
- Upgrade to glimmer 2.3.0
|
29
|
+
- Use glimmer 2.3.0 to support automatic table row change when performing a direct deep row/column update in `cell_rows` (e.g. `data[3][0] = 'new value'`) as opposed to a general shallow row update (e.g. `data[3] = ['new value', 'other new value']` <- already supported)
|
30
|
+
|
3
31
|
## 0.2.8
|
4
32
|
|
5
33
|
- Support `table` `on_changed` listener to report all changes (of operation type `:deleted`, `:changed`, `:inserted`)
|