Browse Source

fixes #1048 - BrighCyan to BrightCyan (#1129)

* fixes #1048 - BrighCyan to BrightCyan

* added relnote

* tweaked relnote
Charlie Kindel 4 years ago
parent
commit
1cf2ce1985

+ 1 - 1
Terminal.Gui/ConsoleDrivers/CursesDriver/CursesDriver.cs

@@ -834,7 +834,7 @@ namespace Terminal.Gui {
 				return Curses.COLOR_BLUE | Curses.A_BOLD;
 			case Color.BrightGreen:
 				return Curses.COLOR_GREEN | Curses.A_BOLD;
-			case Color.BrighCyan:
+			case Color.BrightCyan:
 				return Curses.COLOR_CYAN | Curses.A_BOLD;
 			case Color.BrightRed:
 				return Curses.COLOR_RED | Curses.A_BOLD;

+ 1 - 1
Terminal.Gui/Core/ConsoleDriver.cs

@@ -63,7 +63,7 @@ namespace Terminal.Gui {
 		/// <summary>
 		/// The bright cyan color.
 		/// </summary>
-		BrighCyan,
+		BrightCyan,
 		/// <summary>
 		/// The bright red color.
 		/// </summary>

+ 4 - 1
Terminal.Gui/Terminal.Gui.csproj

@@ -17,10 +17,13 @@
     <Summary>Application framework for creating modern console applications using .NET</Summary>
     <Title>Terminal.Gui is a framework for creating console user interfaces</Title>
     <PackageReleaseNotes>
+      v1.0.???
+      * Fixes #1048 - BrighCyan to BrightCyan spelling
+
       v1.0.0-beta.8
       * Now using MinVer to generate version numbers from git tags.
       * Updated publish-to-nuget to work with minver
-      
+
       v1.0.0-pre.9
       * NEW CONTROL: TreeView - Thanks @tznind!
       * Fixes #1066. View sizing across the various terminals has been fixed; works in Windows Terminal again - thanks @bdisp