glimmer-dsl-libui 0.2.16 → 0.2.20

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8a31446583d7ac10399c0049f7735ad4de97be8142d71acb34bc97606e945754
4
- data.tar.gz: d613addf5ba20feb610d43531288d9c50080d42f2873c14e5195d59b48735021
3
+ metadata.gz: 70f45c14b2e19345bb8ca1a16409260ef9835daf69053febcc6e28309a58618d
4
+ data.tar.gz: 06e4d212588dff9195b6cc6df82bcca4f6c1fcc1f401abc5d174ef88aa20164a
5
5
  SHA512:
6
- metadata.gz: c6bcfd1c455419275e95922115f8e82b9b0918834eab9ad1bf9b975d4ada823806c8822cc9b5f09b032673caca53f8084abed53d53e642d76b13deaa7ad11347
7
- data.tar.gz: d149dc38cfa8456b4557d351ca25e0968daf20dc0a52b0faa9ee66ef2b1f046da8002bd7bf06dd154f1754730a2adc0b4796eb13172ef0cfa040bc1b0dd421a7
6
+ metadata.gz: 18a072c532d014a9849e96c6add0a7279200384c11478c99c2271e6f34cd30c2035d751f4644e8eb1f78f847497d1be0126c795efc32582ce22727c0b71ab029
7
+ data.tar.gz: efe76c9b3c7439eb27b2b8c1159a5d133966b8282b130c983544bf60b1df41134267dbdc59a3b08e94d6491dffbe9e0a9d54a9afcad89701f68e3c17fbd6bcc4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,31 @@
1
1
  # Change Log
2
2
 
3
+ ## 0.2.20
4
+
5
+ - Improve examples/tetris.rb with menus, high score dialog, and options
6
+ - Prevent examples/tetris.rb `window` from being resized
7
+ - Support `window` `resizable` property (`resizable false` means one cannot resize `window`)
8
+ - Support calling `window.content_size = [x, y]` as an alternative to `window.set_content_size(x, y)`
9
+ - Fix issue with hooking `on_content_size_changed` listener to `window`
10
+ - Fix issue with using `window` `content_size` property getter
11
+
12
+ ## 0.2.19
13
+
14
+ - Improve examples/tetris.rb with a score board (indicating next Tetromino, score, level, and lines)
15
+ - Add instant down action to examples/tetris.rb upon hitting the space button
16
+
17
+ ## 0.2.18
18
+
19
+ - Support `polygon` (closed figure of lines), `polyline` (open figure of lines), and `polybezier` (open figure of beziers) shape keywords to use under `path`
20
+ - Improve examples/tetris.rb with bevel block 3D look and restarting upon game over
21
+ - Update examples/area_gallery.rb to add uses of `polygon`, `polyline`, and `polybezier`
22
+ - Refactor examples/histogram.rb to utilize new `polygon` and `polyline` keywords
23
+ - Support `area` `request_auto_redraw`, `pause_auto_redraw`, and `resume_auto_redraw`, operations, and `auto_redraw_enabled` property.
24
+
25
+ ## 0.2.17
26
+
27
+ - Tetris example - basic version with simple color squares
28
+
3
29
  ## 0.2.16
4
30
 
5
31
  - Document all examples with Windows screenshots