diff --git a/docfx/docs/drivers.md b/docfx/docs/drivers.md index ed6bddb98..46c0fed76 100644 --- a/docfx/docs/drivers.md +++ b/docfx/docs/drivers.md @@ -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. diff --git a/docfx/docs/keyboard.md b/docfx/docs/keyboard.md index ff9f7683b..d9108c7ad 100644 --- a/docfx/docs/keyboard.md +++ b/docfx/docs/keyboard.md @@ -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). diff --git a/docfx/docs/overview.md b/docfx/docs/overview.md index 09109926f..b2eb0884d 100644 --- a/docfx/docs/overview.md +++ b/docfx/docs/overview.md @@ -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 diff --git a/docfx/docs/tableview.md b/docfx/docs/tableview.md index 427887a3d..0e676c6e5 100644 --- a/docfx/docs/tableview.md +++ b/docfx/docs/tableview.md @@ -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). diff --git a/docfx/docs/treeview.md b/docfx/docs/treeview.md index d06318994..6dd1384c8 100644 --- a/docfx/docs/treeview.md +++ b/docfx/docs/treeview.md @@ -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`. diff --git a/docfx/docs/views.md b/docfx/docs/views.md index 86cff5522..1cd9c93de 100644 --- a/docfx/docs/views.md +++ b/docfx/docs/views.md @@ -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.