Forcing doc publish

This commit is contained in:
Tig
2025-06-12 13:18:36 -06:00
parent bd9a7561a0
commit 6cb7ed5956
6 changed files with 14 additions and 8 deletions

View File

@@ -1,7 +1,8 @@
# Cross-Platform Driver Model
# v1 Cross-Platform Driver Model
**These are the v1 API docs**. The v2 API docs are [here](https://gui-cs.github.io/Terminal.GuiV2Docs/).
> [!NOTE]
> This is the v1 API documentation. For v2 go here: https://gui-cs.github.io/Terminal.Gui
**Terminal.Gui** has support for [ncurses](https://github.com/gui-cs/Terminal.Gui/blob/master/Terminal.Gui/ConsoleDrivers/CursesDriver/CursesDriver.cs), [`System.Console`](https://github.com/gui-cs/Terminal.Gui/blob/master/Terminal.Gui/ConsoleDrivers/NetDriver.cs), and a full [Win32 Console](https://github.com/gui-cs/Terminal.Gui/blob/master/Terminal.Gui/ConsoleDrivers/WindowsDriver.cs) front-end.

View File

@@ -1,7 +1,8 @@
Keyboard Event Processing
=========================
**These are the v1 API docs**. The v2 API docs are [here](https://gui-cs.github.io/Terminal.GuiV2Docs/).
> [!NOTE]
> This is the v1 API documentation. For v2 go here: https://gui-cs.github.io/Terminal.Gui
**Terminal.Gui** respects common Linux, Mac, and Windows keyboard idioms. For example, clipboard operations use the familiar `Control/Command-C, X, V` model. `CTRL-Q` is used for exiting views (and apps).

View File

@@ -1,6 +1,7 @@
# Terminal.Gui API Overview
**These are the v1 API docs**. The v2 API docs are [here](https://gui-cs.github.io/Terminal.GuiV2Docs/).
> [!NOTE]
> This is the v1 API documentation. For v2 go here: https://gui-cs.github.io/Terminal.Gui
`Terminal.Gui` is a library intended to create console-based
applications using C#. The framework has been designed to make it

View File

@@ -1,6 +1,7 @@
# Table View
**These are the v1 API docs**. The v2 API docs are [here](https://gui-cs.github.io/Terminal.GuiV2Docs/).
> [!NOTE]
> This is the v1 API documentation. For v2 go here: https://gui-cs.github.io/Terminal.Gui
This control supports viewing and editing tabular data. It provides a view of a [System.DataTable](https://docs.microsoft.com/en-us/dotnet/api/system.data.datatable?view=net-5.0).

View File

@@ -1,6 +1,7 @@
# Tree View
**These are the v1 API docs**. The v2 API docs are [here](https://gui-cs.github.io/Terminal.GuiV2Docs/).
> [!NOTE]
> This is the v1 API documentation. For v2 go here: https://gui-cs.github.io/Terminal.Gui
TreeView is a control for navigating hierarchical objects. It comes in two forms `TreeView` and `TreeView<T>`.

View File

@@ -1,6 +1,7 @@
*Terminal.Gui* provides a rich set of views and controls for building terminal user interfaces:
*Terminal.Gui v1* provides a rich set of views and controls for building terminal user interfaces:
**These are the v1 API docs**. The v2 API docs are [here](https://gui-cs.github.io/Terminal.GuiV2Docs/).
> [!NOTE]
> This is the v1 API documentation. For v2 go here: https://gui-cs.github.io/Terminal.Gui
* [Button](~/api/Terminal.Gui.Button.yml) - A View that provides an item that invokes an System.Action when activated by the user.
* [CheckBox](~/api/Terminal.Gui.CheckBox.yml) - Shows an on/off toggle that the user can set.