This repository has been archived by the owner on Oct 8, 2022. It is now read-only.
v2.1.0
Bugfixes
- POSIX:
space
-key presses are now registered.
Changes
- π The dark color variants in
enum Color
, suffixed with_dark
, are now deprecated in favor of theDark
suffix- ex.
Color.red_dark
βColor.redDark
- ex.
- π
fg
andbg
are deprecated in favor offoreground
andbackground
respectively- ex.
Color.blue.fg
βColor.blue.foreground
- ex.
β οΈ fg
andbg
are no longer data types, but rather functions which takeenum Color
as a parameter. This might cause problems iffg
andbg
were stored as types. UseForegroundColor
andBackgroundColor
respectively instead.