소스 검색

Forcing doc publish

Tig 3 달 전
부모
커밋
6cb7ed5956
6개의 변경된 파일14개의 추가작업 그리고 8개의 파일을 삭제
  1. 3 2
      docfx/docs/drivers.md
  2. 2 1
      docfx/docs/keyboard.md
  3. 2 1
      docfx/docs/overview.md
  4. 2 1
      docfx/docs/tableview.md
  5. 2 1
      docfx/docs/treeview.md
  6. 3 2
      docfx/docs/views.md

+ 3 - 2
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.
 

+ 2 - 1
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).
 

+ 2 - 1
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

+ 2 - 1
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).
 

+ 2 - 1
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<T>`.
 

+ 3 - 2
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.