fusesource / jansi

Jansi is a small java library that allows you to use ANSI escape sequences to format your console output which works even on windows.
http://fusesource.github.io/jansi/
Apache License 2.0
1.11k stars 140 forks source link

Correct support for the bright colors on windows - regression fix #99

Closed jycchoi closed 6 years ago

jycchoi commented 6 years ago

Fix regression issue introduced in Jansi 1.16.

The escape sequence ESC[1;30m (change to bright black foreground) cannot be rendered correctly since version 1.16 due to the second rendition parameter 30 overwrite the change made by the first parameter 1, resulting incorrectly in normal black.

May also fix issue #94.