Skip to content

Commit 17eb63e

Browse files
committed
Merge branch 'develop' of github.com:gui-cs/Terminal.Gui into develop
2 parents a3d984a + 9735e08 commit 17eb63e

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ dotnet run
3939

4040
_The Documentation matches the most recent Nuget release from the `main` branch ([![Version](https://img.shields.io/nuget/v/Terminal.Gui.svg)](https://www.nuget.org/packages/Terminal.Gui))_
4141

42-
See the [`Terminal.Gui/` README](https://github.com/gui-cs/Terminal.Gui/tree/master/Terminal.Gui) for an overview of how the library is structured. The [Conceptual Documentation](https://gui-cs.github.io/Terminal.Gui/articles/index.html) provides insight into core concepts.
42+
See the [`Terminal.Gui/` README](https://github.com/gui-cs/Terminal.Gui/tree/master/Terminal.Gui) for an overview of how the library is structured. The [Conceptual Documentation](https://gui-cs.github.io/Terminal.Gui/docs/index.html) provides insight into core concepts.
4343

4444
## Features
4545

ReactiveExample/ReactiveExample.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</PropertyGroup>
1212
<ItemGroup>
1313
<PackageReference Include="ReactiveUI.Fody" Version="19.5.41" />
14-
<PackageReference Include="ReactiveUI" Version="20.0.1" />
14+
<PackageReference Include="ReactiveUI" Version="20.1.1" />
1515
<PackageReference Include="ReactiveMarbles.ObservableEvents.SourceGenerator" Version="1.3.1" PrivateAssets="all" />
1616
</ItemGroup>
1717
<ItemGroup>

Terminal.Gui/ConsoleDrivers/CursesDriver/CursesDriver.cs

+1
Original file line numberDiff line numberDiff line change
@@ -505,6 +505,7 @@ void ProcessInput ()
505505
keyHandler (key);
506506
} else {
507507
k = Key.Esc;
508+
keyDownHandler (new KeyEvent (k, MapKeyModifiers (k)));
508509
keyHandler (new KeyEvent (k, MapKeyModifiers (k)));
509510
}
510511
} else if (wch == Curses.KeyTab) {

UnitTests/UnitTests.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<DefineConstants>TRACE;DEBUG_IDISPOSABLE</DefineConstants>
1919
</PropertyGroup>
2020
<ItemGroup>
21-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
21+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
2222
<PackageReference Include="ReportGenerator" Version="5.2.5" />
2323
<PackageReference Include="System.Collections" Version="4.3.0" />
2424
<PackageReference Include="xunit" Version="2.8.0" />

0 commit comments

Comments
 (0)