rich_stdout 1.0.8
rich_stdout: ^1.0.8 copied to clipboard
A library that provides functions for modifying the console output in Dart. It currently supports colouring, bolding, italicising, and underlining text. It also supports hiding and showing the cursor, [...]
1.0.0 #
- Initial version.
- Implemented
Terminalclass with methods for styling text output, includingprint,error,warning,success, andinfo. - Added cursor manipulation methods:
moveCursor,moveCursorUp,moveCursorDown,moveCursorLeft, andmoveCursorRight. - Included
clear,clearLine,hideCursor, andshowCursormethods for terminal management. - Developed
inputmethod with customizable input checks. - Introduced
Ansiclass withconstructmethod for generating ANSI escape codes.
1.0.2 #
- Added
rowsandcolumns
1.0.3 #
- Changed name of
rowsandcolumnstowidthandheight - Updated the
endOfFile - Added new property
newLineItem
1.0.4 #
- Bug fix
heightandwidthhad each others values
1.0.5 #
- Fixing issue with a new line when initialising
Terminal - Added the ability to put in a custom
IOSink(default isstdout) for the output, howeverwidthandheightare still tied tostdout
1.0.6 #
- Bug fix with an extra new line when no lines have been outputted with the
endOfFilemethod
1.0.7 #
- Bug fix with stdout pipelines being unable to read number of lines or columns, now if not there, set to zero
1.0.8 #
- Changing an issue with
ANSIsColour, to set it todefaultForegroundoversetDefaultwhich was incorrect