Skip to content

Commit 4cd6511

Browse files
committed
Updated doc links
1 parent 258824d commit 4cd6511

File tree

22 files changed

+107
-107
lines changed

22 files changed

+107
-107
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ Great care has been provided thus far in ensuring **Terminal.Gui** has great [AP
141141

142142
### Defining Events
143143

144-
See https://gui-cs.github.io/Terminal.GuiV2Docs/docs/events.html
144+
See https://gui-cs.github.io/Terminal.Gui/docs/events.html
145145

146146

147147
### Defining new `View` classes

Examples/UICatalog/Resources/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://gui-cs.github.io/Terminal.GuiV2Docs/schemas/tui-config-schema.json",
2+
"$schema": "https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json",
33
"FileDialog.MaxSearchResults": 10000,
44
"FileDialogStyle.DefaultUseColors": false,
55
"FileDialogStyle.DefaultUseUnicodeCharacters": false,

Examples/UICatalog/UICatalogTop.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ private MenuBarv2 CreateMenuBar ()
127127
new MenuItemv2 (
128128
"_Documentation",
129129
"",
130-
() => OpenUrl ("https://gui-cs.github.io/Terminal.GuiV2Docs"),
130+
() => OpenUrl ("https://gui-cs.github.io/Terminal.Gui"),
131131
Key.F1
132132
),
133133
new MenuItemv2 (

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![License](https://img.shields.io/github/license/gui-cs/gui.cs.svg)](LICENSE)
66
![Bugs](https://img.shields.io/github/issues/gui-cs/gui.cs/bug)
77

8-
# Terminal.Gui
8+
# Terminal.Gui v2
99

1010
The premier toolkit for building rich console apps for Windows, the Mac, and Linux/Unix.
1111

Terminal.Gui/Configuration/ConfigurationManager.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ namespace Terminal.Gui.Configuration;
1313

1414
/// <summary>
1515
/// Provides settings and configuration management for Terminal.Gui applications. See the Configuration Deep Dive for
16-
/// more information: <see href="https://gui-cs.github.io/Terminal.GuiV2Docs/docs/config.html"/>.
16+
/// more information: <see href="https://gui-cs.github.io/Terminal.Gui/docs/config.html"/>.
1717
/// <para>
1818
/// Users can set Terminal.Gui settings on a global or per-application basis by providing JSON formatted
1919
/// configuration files. The configuration files can be placed in at <c>.tui</c> folder in the user's home
@@ -23,7 +23,7 @@ namespace Terminal.Gui.Configuration;
2323
/// </para>
2424
/// <para>
2525
/// Settings are defined in JSON format, according to this schema:
26-
/// https://gui-cs.github.io/Terminal.GuiV2Docs/schemas/tui-config-schema.json
26+
/// https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json
2727
/// </para>
2828
/// <para>
2929
/// Settings that will apply to all applications (global settings) reside in files named <c>config.json</c>.

Terminal.Gui/Configuration/SettingsScope.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ namespace Terminal.Gui.Configuration;
1212
/// <example>
1313
/// <code>
1414
/// {
15-
/// "$schema" : "https://gui-cs.github.io/Terminal.GuiV2Docs/schemas/tui-config-schema.json",
15+
/// "$schema" : "https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json",
1616
/// "Application.UseSystemConsole" : true,
1717
/// "Theme" : "Default",
1818
/// "Themes": {
@@ -42,5 +42,5 @@ public SettingsScope ()
4242
/// <summary>Points to our JSON schema.</summary>
4343
[JsonInclude]
4444
[JsonPropertyName ("$schema")]
45-
public string Schema { get; set; } = "https://gui-cs.github.io/Terminal.GuiV2Docs/schemas/tui-config-schema.json";
45+
public string Schema { get; set; } = "https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json";
4646
}

Terminal.Gui/Drawing/Scheme.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ namespace Terminal.Gui.Drawing;
2222
/// Use <see cref="SchemeManager"/> to manage available schemes and apply them to views.
2323
/// </para>
2424
/// <para>
25-
/// See <see href="https://gui-cs.github.io/Terminal.GuiV2Docs/docs/drawing.html"/> for more information.
25+
/// See <see href="https://gui-cs.github.io/Terminal.Gui/docs/drawing.html"/> for more information.
2626
/// </para>
2727
/// </summary>
2828
/// <remarks>

Terminal.Gui/Input/Command.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ namespace Terminal.Gui.Input;
1515
/// <see cref="Application"/> supports a subset of these commands by default, which can be overriden via <see cref="Application.KeyBindings"/>.
1616
/// </para>
1717
/// <para>
18-
/// See the Commands Deep Dive for more information: <see href="https://gui-cs.github.io/Terminal.GuiV2Docs/docs/command.html"/>.
18+
/// See the Commands Deep Dive for more information: <see href="https://gui-cs.github.io/Terminal.Gui/docs/command.html"/>.
1919
/// </para>
2020
/// </remarks>
2121
public enum Command

Terminal.Gui/Resources/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
// note that not all values here will be recreated (e.g. the Light and Dark themes and any property initialized
1111
// null).
1212
//
13-
"$schema": "https://gui-cs.github.io/Terminal.GuiV2Docs/schemas/tui-config-schema.json",
13+
"$schema": "https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json",
1414

1515
// Set this to true in a .config file to be loaded to cause JSON parsing errors
1616
// to throw exceptions.

Terminal.Gui/ViewBase/Layout/ViewArrangement.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
/// <remarks>
99
/// <para>
1010
/// See the View Arrangement Deep Dive for more information:
11-
/// <see href="https://gui-cs.github.io/Terminal.GuiV2Docs/docs/arrangement.html"/>
11+
/// <see href="https://gui-cs.github.io/Terminal.Gui/docs/arrangement.html"/>
1212
/// </para>
1313
/// <para>
1414
/// Sizing or moving a view is only possible if the <see cref="View"/> is part of a <see cref="View.SuperView"/>

0 commit comments

Comments
 (0)