Skip to content

Commit

Permalink
fixes gui-cs#1048 - BrighCyan to BrightCyan (gui-cs#1129)
Browse files Browse the repository at this point in the history
* fixes gui-cs#1048 - BrighCyan to BrightCyan

* added relnote

* tweaked relnote
  • Loading branch information
tig committed Mar 9, 2021
1 parent b783a8f commit 1cf2ce1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Terminal.Gui/ConsoleDrivers/CursesDriver/CursesDriver.cs
Expand Up @@ -834,7 +834,7 @@ static int MapColor (Color color)
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;
Expand Down
2 changes: 1 addition & 1 deletion Terminal.Gui/Core/ConsoleDriver.cs
Expand Up @@ -63,7 +63,7 @@ public enum Color {
/// <summary>
/// The bright cyan color.
/// </summary>
BrighCyan,
BrightCyan,
/// <summary>
/// The bright red color.
/// </summary>
Expand Down
5 changes: 4 additions & 1 deletion Terminal.Gui/Terminal.Gui.csproj
Expand Up @@ -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
Expand Down

0 comments on commit 1cf2ce1

Please sign in to comment.