Skip to content
This repository has been archived by the owner on Oct 8, 2022. It is now read-only.

v2.1.0

Compare
Choose a tag to compare
@vladdeSV vladdeSV released this 19 Nov 11:21
· 349 commits to develop since this release

Bugfixes

  • POSIX: space-key presses are now registered.

Changes

  • πŸŒ€ The dark color variants inenum Color, suffixed with _dark, are now deprecated in favor of the Dark suffix
    • ex. Color.red_dark β†’ Color.redDark
  • πŸŒ€ fg and bg are deprecated in favor of foreground and background respectively
    • ex. Color.blue.fg β†’ Color.blue.foreground
  • ⚠️ fg and bg are no longer data types, but rather functions which take enum Color as a parameter. This might cause problems if fg and bg were stored as types. Use ForegroundColor and BackgroundColor respectively instead.