From 46227cfa99dca1c5cd399dbe510f088f4cfdaded Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 May 2024 14:48:22 +0000 Subject: [PATCH 1/4] Bump ReactiveUI from 20.0.1 to 20.1.1 Bumps [ReactiveUI](https://github.com/reactiveui/reactiveui) from 20.0.1 to 20.1.1. - [Release notes](https://github.com/reactiveui/reactiveui/releases) - [Commits](https://github.com/reactiveui/reactiveui/compare/20.0.1...20.1.1) --- updated-dependencies: - dependency-name: ReactiveUI dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- ReactiveExample/ReactiveExample.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReactiveExample/ReactiveExample.csproj b/ReactiveExample/ReactiveExample.csproj index 9e4037cc4..7aaf02444 100644 --- a/ReactiveExample/ReactiveExample.csproj +++ b/ReactiveExample/ReactiveExample.csproj @@ -11,7 +11,7 @@ - + From f9d683ca725b93d8705c00be51f6209fae779c3a Mon Sep 17 00:00:00 2001 From: David Nelson Date: Mon, 20 May 2024 12:37:24 -0500 Subject: [PATCH 2/4] Fix incorrect link to Conceptual Documentation --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f54b58bf8..7326a9232 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ dotnet run _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))_ -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. +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. ## Features From 53d88eb539d7bcf3e2bdd11cd4870f520b80d4d1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 22 May 2024 14:57:53 +0000 Subject: [PATCH 3/4] --- updated-dependencies: - dependency-name: Microsoft.NET.Test.Sdk dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- UnitTests/UnitTests.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UnitTests/UnitTests.csproj b/UnitTests/UnitTests.csproj index e1aa2dbd9..4060018c0 100644 --- a/UnitTests/UnitTests.csproj +++ b/UnitTests/UnitTests.csproj @@ -18,7 +18,7 @@ TRACE;DEBUG_IDISPOSABLE - + From a423836fc16ce1dad615df34d8ac42a6ee396c4f Mon Sep 17 00:00:00 2001 From: BDisp Date: Wed, 29 May 2024 14:45:45 +0100 Subject: [PATCH 4/4] Fixes #3496. Escape Key not invoking OnKeyDown on Unix. --- Terminal.Gui/ConsoleDrivers/CursesDriver/CursesDriver.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Terminal.Gui/ConsoleDrivers/CursesDriver/CursesDriver.cs b/Terminal.Gui/ConsoleDrivers/CursesDriver/CursesDriver.cs index b908708d6..0247b5671 100644 --- a/Terminal.Gui/ConsoleDrivers/CursesDriver/CursesDriver.cs +++ b/Terminal.Gui/ConsoleDrivers/CursesDriver/CursesDriver.cs @@ -505,6 +505,7 @@ namespace Terminal.Gui { keyHandler (key); } else { k = Key.Esc; + keyDownHandler (new KeyEvent (k, MapKeyModifiers (k))); keyHandler (new KeyEvent (k, MapKeyModifiers (k))); } } else if (wch == Curses.KeyTab) {