Recommended laptops

https://store.acer.com/en-us/aspire-7-laptop-a715-42g-r20c A bit less screen, a bit slower but more portable:https://www.lenovo.com/us/en/laptops/ideapad/ideapad-500-series/IdeaPad-5-14ARE05/p/81YM0002US

Keyboard event mode for key release detection.

ToyGraphics v0.8.6.5 supports new keyboard mode allowing you to detect not only when the user pressed a key but also when they released it. You can read ToyGraphics guide and look at the demonstrations: https://github.com/anysolo/toyGraphics-demos/blob/master/src/main/kotlin/demos/animation2.kt https://github.com/anysolo/toyGraphics-demos/blob/master/src/main/kotlin/demos/keyboard4.kt

Rotating images.

Starting from version 0.8.2, ToyGraphics library supports drawing rotated images. Please check guide and API doc. Bellow an example: package com.anysolo.toyGraphics.samples import com.anysolo.toyGraphics.* fun main() { val wnd = Window(300, 300, buffered = true, background = Pal16.black) val image = Read more…