diff --git a/ANSITerm/ANSITerm.csproj b/ANSITerm/ANSITerm.csproj index c4a8d6d..09266b5 100644 --- a/ANSITerm/ANSITerm.csproj +++ b/ANSITerm/ANSITerm.csproj @@ -1,16 +1,16 @@  - 0.1.0 + 0.1.1 ANSITerm david-tamar ANSI escape codes and true color formatting for .NET's console. 2019 David Tamar https://github.com/david-tamar/ANSITerm - https://github.com/david-tamar/ansi-console.net/blob/master/LICENSE + https://github.com/david-tamar/ANSITerm/blob/master/LICENSE https://github.com/david-tamar/ANSITerm git console; ansi; terminal; escape codes - The git repository includes a test project, examples and documentation. + Bugfix in ResetStyles. netstandard2.0;netcoreapp2.2 true Tamar.ANSITerm diff --git a/ANSITerm/Console.cs b/ANSITerm/Console.cs index 95a6aaf..1b66b37 100644 --- a/ANSITerm/Console.cs +++ b/ANSITerm/Console.cs @@ -371,6 +371,8 @@ public static void ResetStyle() SGR[3] = false; // Italic SGR[4] = false; // Underline SGR[5] = false; // Blink + SGR[6] = false; // Rapid + SGR[7] = false; // Reverse UpdateSGR(); }