glimmer-dsl-libui 0.2.18 → 0.2.22

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: c52fe6bf6dd2ed5494e9bc372628d340379cfdbfd8e2d19617c4813324e47a91
4
- data.tar.gz: d713e9293141c0c7d74d0be00319126fccad50c7aea6d787fe1cb1774b8547a6
3
+ metadata.gz: 9ed417f87bfb329535969efe60a61a444d59c7b0e2bdb68196ecf29642b9d628
4
+ data.tar.gz: b0cb2a08fe3ef7d666408bc2dbfa9f6a7ada5151257b55aca2cd11abda09253d
5
5
  SHA512:
6
- metadata.gz: d10eb3c9fff91f1a6881189b6ae17735986aff25f256eefc9c88ab1f4b8c11a20837ebf10f9735d02dc86418ba9471032bb2992e9f74e72fd9a446ff9116359d
7
- data.tar.gz: 7706f38cf41de97fd1a740ecaf150f0852d1974872e3dd95e0006df03927d081add8d06b342fb0c7b966c79c0134c1d591cfdff499bf5d951470fb7701a131b5
6
+ metadata.gz: 12e49121d599a00cdf5c3e6638081c8c3d2c6aea263428a1966ce221949d8602fe27c5a03f7506809e5ce877465c5b4b03b909909b8e8c2bba39e698b25f25da
7
+ data.tar.gz: c0e345c1c9e3d1348a6add04910ecd6a4b58934094d2b688253688e8aa860af00613a0c275aac6ace4a97e46f7341b66dc2eebeec511eaa6e36feb4bcfe8d19b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,30 @@
1
1
  # Change Log
2
2
 
3
+ ## 0.2.22
4
+
5
+ - examples/snake.rb implemented test-first
6
+
7
+ ## 0.2.21
8
+
9
+ - examples/tic_tac_toe.rb
10
+ - `Glimmer::LibUI::enum_names` provides all possible enum names to use with `Glimmer::LibUI::enum_symbols(enum_name)`
11
+ - Document all `Glimmer::LibUI` custom operations
12
+ - Fix issue with retrieving `Glimmer::LibUI::enum_symbols` for `:at` enum name
13
+
14
+ ## 0.2.20
15
+
16
+ - Improve examples/tetris.rb with menus, high score dialog, and options
17
+ - Prevent examples/tetris.rb `window` from being resized
18
+ - Support `window` `resizable` property (`resizable false` means one cannot resize `window`)
19
+ - Support calling `window.content_size = [x, y]` as an alternative to `window.set_content_size(x, y)`
20
+ - Fix issue with hooking `on_content_size_changed` listener to `window`
21
+ - Fix issue with using `window` `content_size` property getter
22
+
23
+ ## 0.2.19
24
+
25
+ - Improve examples/tetris.rb with a score board (indicating next Tetromino, score, level, and lines)
26
+ - Add instant down action to examples/tetris.rb upon hitting the space button
27
+
3
28
  ## 0.2.18
4
29
 
5
30
  - Support `polygon` (closed figure of lines), `polyline` (open figure of lines), and `polybezier` (open figure of beziers) shape keywords to use under `path`