glimmer-dsl-tk 0.0.24 → 0.0.28

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: 406613fff26324b7f91ddbaea11f01f90241b883f99a7732beb27a097eaae24d
4
- data.tar.gz: d2e0828831b9cb7a6b017be648253972ad1cb8e8c48fa20046e6a3bd4b0b59f5
3
+ metadata.gz: 2da9cdf30a1b710a0122d360320ffe0300a1a325eba5cf35f4749005673b2f9d
4
+ data.tar.gz: c58af78a953f2feb85dd639595e3a47ea69bcba2097f155124e3597c48080d88
5
5
  SHA512:
6
- metadata.gz: 9ba903e6e9d4e611e7c7f17c94f902a6a33945e07ab46136c30003ad5189b707a6485ab4f7c472503699ead75119b20d237e9bda1484f32373354dc74ba8e90a
7
- data.tar.gz: c4d5f2c7f8338e3fdfc0452e97d7f0498b7b2ded75a586272f11cfadc61b71ee6db197d2b76441d2c2f925914ff61e6577d8fef36c106426267bd7a23c3d3d5f
6
+ metadata.gz: 7e3faf577f5abc1ca7b9e0597fc5e36f7b917c5afc3dbcc0bee99d8168ab5b30a5f571d73a495f7ca86c2e574e4c6e6272d0b83853081020d1ebce9c2b3d6f9c
7
+ data.tar.gz: 741c9d95b80cff4c7666d78ce7ad0600e9227d5808982e5ea8a5728c39ad0e717148746febc5c57ba7c3d3896e4815ef096d7d41e3b6c52e46f566f5c0053353
data/CHANGELOG.md CHANGED
@@ -1,5 +1,42 @@
1
1
  # Change Log
2
2
 
3
+ ## 0.0.28
4
+
5
+ - Hello, Drag and Drop!
6
+ - Improve Hello, Text! (toolbar buttons: font family, font size, cut, copy, paste, undo, redo)
7
+ - Drag & Drop support
8
+ - Update default dimensions of Meta-Sample root window to 1280x720
9
+ - Have any widget with a `font` attribute (like `text`) support pre-defined fonts like `'caption'` and `'heading'` (just like `label`)
10
+
11
+ ## 0.0.27
12
+
13
+ - Improve Hello, Text! (toolbar buttons: bold, italic, underline)
14
+ - Set correct `wrap 'word'` attribute for `text` widget in Hello, Text!
15
+ - Default `text` widget to `wrap = 'none'`
16
+ - Default `text` widget to `font = {family: 'Courier New'}`
17
+ - Fix issue with unbolding text in `text` widget when selecting multiple lines with an empty line
18
+
19
+ ## 0.0.26
20
+
21
+ - Ensure spinbox data-binding updates on text key changes (without incrementing/decrementing)
22
+ - Optimize `text=` attribute setter on `text` widget when setting a text value that includes all previous text by having it not delete and reinsert, yet append instead.
23
+ - Support font attribute for arbitrary fonts with terse syntax (`font 'times 12 bold'` not `font TkFont.new('times 12 bold')`)
24
+ - Support a quicker way of tagging (instead of the two-step process of tagging with a keyword and then configuring the keyword style) (e.g. `text.tag(5.0, 6.0, :background=>'yellow', :font=>'TkFixedFont', :relief=>'raised')`)
25
+ - Support styles (via `style` keyword or with attribute defaulting to style when not available) and ability to define and apply a style in one shot
26
+ - Support `TextProxy#toggle_format` (+ `TextProxy#add_format` & `TextProxy#remove_format`) to be able to toggle a tag format option on or off for `text` widget in one shot instead of having to apply a tag and then configure a tag format
27
+ - Hello, Text! (a word processor with a toolbar having foreground color and background color)
28
+
29
+ ## 0.0.25
30
+
31
+ - Elaborate, Meta-Sample
32
+ - Hello, Spinbox!
33
+ - Support `spinbox` `command {}` and `on('increment') {}` / `on('decrement') {}`
34
+ - Support `spinbox` `format` attribute (e.g. `format '%0.2f'`
35
+ - Make `grid sticky: 'nsew', column_weight: 1` the default for all widgets (column weight is only applied to the first widget in a series of siblings)
36
+ - Support `text` widget with `text` attribute/data-binding just like `entry`
37
+ - Set `background '#ececec' if OS.mac?` on `root` by default
38
+ - Support `'modified'`/`'selected'` event bindings for `text` widget
39
+
3
40
  ## 0.0.24
4
41
 
5
42
  - Hello, Entry!