glimmer-dsl-libui 0.2.21 → 0.3.0

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: 47a6ef9ebfc0564ae4489dc2981baad90d307aa8beaf0b109c8830370db4f02b
4
- data.tar.gz: 3752be2f3972bc7ab9c054444ff99934d4e1e2cb47bb7724059e69b96d6793b0
3
+ metadata.gz: 82c9b768b4dd09cbbad087d470016eaa80a667151f844a57aecf4c339d8bbfe5
4
+ data.tar.gz: 4c4b1a1fec0c78d61cb7d47ce79d93766f2ec3c94e2332e185e44b35ecd9dfd8
5
5
  SHA512:
6
- metadata.gz: e20361b29c5ccbe1f7a9de7a4929c7384d3db8ca8deafe016ee35e1f239dd2152500018919586e4ad173bb67bfb746fc2a062db449817d33a745a8871b82d455
7
- data.tar.gz: 98b75a7e30e0d05f79b7669e26d3f4afeeeaf19ed57e1acfb56a760c5eb052739f4f4d890840c47eb43b2b841e849f44dd727d0ba0bc06189cfea606cec38380
6
+ metadata.gz: abd5077dd154505ac5b97986baace9c72d61a734515f39cb9213161fbd16dff85e46af725b702edfc87fae6043288f4897b53b8c1d0671dc509e0c3ce3b222b2
7
+ data.tar.gz: cb2273302f43a0b4e2543ac75c08a51414013d50600d5ccf51406799fba6122ca5144cf8a26c018a594d8e8238e899976c9f8a4a0b00505be954164095726b16
data/CHANGELOG.md CHANGED
@@ -1,5 +1,29 @@
1
1
  # Change Log
2
2
 
3
+ ## 0.3.0
4
+
5
+ - Upgrade to glimmer 2.4.1
6
+ - Add `chunky_png` gem to support `.png` images natively
7
+ - New `image` Glimmer custom control that can be nested under `area` to render an image (it is not part of LibUI, so it has some performance caveats, but is better than nothing and is fast with smaller image width/height)
8
+
9
+ ## 0.2.24
10
+
11
+ - Support hex colors as `String` with `'#'` prefix (e.g. '#ffaa92')
12
+
13
+ ## 0.2.23
14
+
15
+ - Improve examples/tetris.rb by having high score dialog pause the game if running and resume after closed
16
+ - Adjust Area Gallery example text size to 11 in Windows/Linux
17
+ - Fix `Glimmer::LibUI::timer {}` behavior so that the block return value will not affect repetition outcome if it is `Integer` (only Booleans affect it)
18
+ - Fix Tetris down button for Windows (it was going too fast before making tetrominos invisible before they hit the bottom)
19
+ - Fix Tetris double-downs (or multiple downs) happening after game over (it was firing an additional down timer after game over by mistake before)
20
+ - Fix Tetris by prechecking Turn Left on Up radio menu item since it is the one selected upon launch of the game
21
+ - Fix Tic-Tac-Toe text-size for Windows/Linux
22
+
23
+ ## 0.2.22
24
+
25
+ - examples/snake.rb implemented test-first
26
+
3
27
  ## 0.2.21
4
28
 
5
29
  - examples/tic_tac_toe.rb