diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index dd156ff92..76defbb7f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -141,7 +141,7 @@ Great care has been provided thus far in ensuring **Terminal.Gui** has great [AP ### Defining Events -See https://gui-cs.github.io/Terminal.GuiV2Docs/docs/events.html +See https://gui-cs.github.io/Terminal.Gui/docs/events.html ### Defining new `View` classes diff --git a/Examples/UICatalog/Resources/config.json b/Examples/UICatalog/Resources/config.json index 6a7b47b3e..916743d23 100644 --- a/Examples/UICatalog/Resources/config.json +++ b/Examples/UICatalog/Resources/config.json @@ -1,5 +1,5 @@ { - "$schema": "https://gui-cs.github.io/Terminal.GuiV2Docs/schemas/tui-config-schema.json", + "$schema": "https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json", "FileDialog.MaxSearchResults": 10000, "FileDialogStyle.DefaultUseColors": false, "FileDialogStyle.DefaultUseUnicodeCharacters": false, diff --git a/Examples/UICatalog/UICatalogTop.cs b/Examples/UICatalog/UICatalogTop.cs index f574713c9..ad87b0a12 100644 --- a/Examples/UICatalog/UICatalogTop.cs +++ b/Examples/UICatalog/UICatalogTop.cs @@ -127,7 +127,7 @@ public class UICatalogTop : Toplevel new MenuItemv2 ( "_Documentation", "", - () => OpenUrl ("https://gui-cs.github.io/Terminal.GuiV2Docs"), + () => OpenUrl ("https://gui-cs.github.io/Terminal.Gui"), Key.F1 ), new MenuItemv2 ( diff --git a/README.md b/README.md index b086462f3..d88a0c809 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ [![License](https://img.shields.io/github/license/gui-cs/gui.cs.svg)](LICENSE) ![Bugs](https://img.shields.io/github/issues/gui-cs/gui.cs/bug) -# Terminal.Gui +# Terminal.Gui v2 The premier toolkit for building rich console apps for Windows, the Mac, and Linux/Unix. diff --git a/Terminal.Gui/Configuration/ConfigurationManager.cs b/Terminal.Gui/Configuration/ConfigurationManager.cs index c082ab564..48da4d3c0 100644 --- a/Terminal.Gui/Configuration/ConfigurationManager.cs +++ b/Terminal.Gui/Configuration/ConfigurationManager.cs @@ -13,7 +13,7 @@ namespace Terminal.Gui.Configuration; /// /// Provides settings and configuration management for Terminal.Gui applications. See the Configuration Deep Dive for -/// more information: . +/// more information: . /// /// Users can set Terminal.Gui settings on a global or per-application basis by providing JSON formatted /// configuration files. The configuration files can be placed in at .tui folder in the user's home @@ -23,7 +23,7 @@ namespace Terminal.Gui.Configuration; /// /// /// Settings are defined in JSON format, according to this schema: -/// https://gui-cs.github.io/Terminal.GuiV2Docs/schemas/tui-config-schema.json +/// https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json /// /// /// Settings that will apply to all applications (global settings) reside in files named config.json. diff --git a/Terminal.Gui/Configuration/SettingsScope.cs b/Terminal.Gui/Configuration/SettingsScope.cs index d2802c5f0..5feeb1131 100644 --- a/Terminal.Gui/Configuration/SettingsScope.cs +++ b/Terminal.Gui/Configuration/SettingsScope.cs @@ -12,7 +12,7 @@ namespace Terminal.Gui.Configuration; /// /// /// { -/// "$schema" : "https://gui-cs.github.io/Terminal.GuiV2Docs/schemas/tui-config-schema.json", +/// "$schema" : "https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json", /// "Application.UseSystemConsole" : true, /// "Theme" : "Default", /// "Themes": { @@ -42,5 +42,5 @@ public class SettingsScope : Scope /// Points to our JSON schema. [JsonInclude] [JsonPropertyName ("$schema")] - public string Schema { get; set; } = "https://gui-cs.github.io/Terminal.GuiV2Docs/schemas/tui-config-schema.json"; + public string Schema { get; set; } = "https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json"; } diff --git a/Terminal.Gui/Drawing/Scheme.cs b/Terminal.Gui/Drawing/Scheme.cs index 24aa49fd5..ff0933aac 100644 --- a/Terminal.Gui/Drawing/Scheme.cs +++ b/Terminal.Gui/Drawing/Scheme.cs @@ -22,7 +22,7 @@ namespace Terminal.Gui.Drawing; /// Use to manage available schemes and apply them to views. /// /// -/// See for more information. +/// See for more information. /// /// /// diff --git a/Terminal.Gui/Input/Command.cs b/Terminal.Gui/Input/Command.cs index 36800875d..ff779af7f 100644 --- a/Terminal.Gui/Input/Command.cs +++ b/Terminal.Gui/Input/Command.cs @@ -15,7 +15,7 @@ namespace Terminal.Gui.Input; /// supports a subset of these commands by default, which can be overriden via . /// /// -/// See the Commands Deep Dive for more information: . +/// See the Commands Deep Dive for more information: . /// /// public enum Command diff --git a/Terminal.Gui/Resources/config.json b/Terminal.Gui/Resources/config.json index b98bce47e..20b206e38 100644 --- a/Terminal.Gui/Resources/config.json +++ b/Terminal.Gui/Resources/config.json @@ -10,7 +10,7 @@ // note that not all values here will be recreated (e.g. the Light and Dark themes and any property initialized // null). // - "$schema": "https://gui-cs.github.io/Terminal.GuiV2Docs/schemas/tui-config-schema.json", + "$schema": "https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json", // Set this to true in a .config file to be loaded to cause JSON parsing errors // to throw exceptions. diff --git a/Terminal.Gui/ViewBase/Layout/ViewArrangement.cs b/Terminal.Gui/ViewBase/Layout/ViewArrangement.cs index 63a735c4b..95606f097 100644 --- a/Terminal.Gui/ViewBase/Layout/ViewArrangement.cs +++ b/Terminal.Gui/ViewBase/Layout/ViewArrangement.cs @@ -8,7 +8,7 @@ /// /// /// See the View Arrangement Deep Dive for more information: -/// +/// /// /// /// Sizing or moving a view is only possible if the is part of a diff --git a/Terminal.Gui/ViewBase/View.Arrangement.cs b/Terminal.Gui/ViewBase/View.Arrangement.cs index a0d1e01f7..baa1c76ff 100644 --- a/Terminal.Gui/ViewBase/View.Arrangement.cs +++ b/Terminal.Gui/ViewBase/View.Arrangement.cs @@ -8,7 +8,7 @@ public partial class View /// /// /// - /// See the View Arrangement Deep Dive for more information: + /// See the View Arrangement Deep Dive for more information: /// /// public ViewArrangement Arrangement { get; set; } diff --git a/Terminal.Gui/ViewBase/View.Command.cs b/Terminal.Gui/ViewBase/View.Command.cs index b6ea67ec7..10c3cd99f 100644 --- a/Terminal.Gui/ViewBase/View.Command.cs +++ b/Terminal.Gui/ViewBase/View.Command.cs @@ -325,7 +325,7 @@ public partial class View // Command APIs /// This version of AddCommand is for commands that require . /// /// - /// See the Commands Deep Dive for more information: . + /// See the Commands Deep Dive for more information: . /// /// /// The command. @@ -349,7 +349,7 @@ public partial class View // Command APIs /// /// /// - /// See the Commands Deep Dive for more information: . + /// See the Commands Deep Dive for more information: . /// /// /// The command. diff --git a/Terminal.Gui/ViewBase/View.Content.cs b/Terminal.Gui/ViewBase/View.Content.cs index f8b19d93b..cbb29308a 100644 --- a/Terminal.Gui/ViewBase/View.Content.cs +++ b/Terminal.Gui/ViewBase/View.Content.cs @@ -16,7 +16,7 @@ public partial class View /// /// /// See the View Layout Deep Dive for more information: - /// + /// /// /// /// Negative sizes are not supported. @@ -55,7 +55,7 @@ public partial class View /// /// a> /// - /// See the View Layout Deep Dive for more information: + /// See the View Layout Deep Dive for more information: /// /// /// If the content size was not explicitly set by , and the View has no visible subviews, will return the @@ -164,7 +164,7 @@ public partial class View /// /// /// - /// See the View Layout Deep Dive for more information: + /// See the View Layout Deep Dive for more information: /// /// /// @@ -313,7 +313,7 @@ public partial class View /// /// /// - /// See the View Layout Deep Dive for more information: + /// See the View Layout Deep Dive for more information: /// /// /// Positive values for the location indicate the visible area is offset into (down-and-right) the View's virtual diff --git a/Terminal.Gui/ViewBase/View.Drawing.cs b/Terminal.Gui/ViewBase/View.Drawing.cs index c581401a3..912133e78 100644 --- a/Terminal.Gui/ViewBase/View.Drawing.cs +++ b/Terminal.Gui/ViewBase/View.Drawing.cs @@ -41,7 +41,7 @@ public partial class View // Drawing APIs /// or set. /// /// - /// See the View Drawing Deep Dive for more information: . + /// See the View Drawing Deep Dive for more information: . /// /// public void Draw (DrawContext? context = null) diff --git a/Terminal.Gui/ViewBase/View.Layout.cs b/Terminal.Gui/ViewBase/View.Layout.cs index 9ec26a23a..41339fdf8 100644 --- a/Terminal.Gui/ViewBase/View.Layout.cs +++ b/Terminal.Gui/ViewBase/View.Layout.cs @@ -24,7 +24,7 @@ public partial class View // Layout APIs /// /// /// See the View Layout Deep Dive for more information: - /// + /// /// /// /// Frame is relative to the 's Content, which is bound by @@ -201,7 +201,7 @@ public partial class View // Layout APIs /// /// /// See the View Layout Deep Dive for more information: - /// + /// /// /// /// The position is relative to the 's Content, which is bound by @@ -244,7 +244,7 @@ public partial class View // Layout APIs /// /// /// See the View Layout Deep Dive for more information: - /// + /// /// /// /// The position is relative to the 's Content, which is bound by @@ -286,7 +286,7 @@ public partial class View // Layout APIs /// /// /// See the View Layout Deep Dive for more information: - /// + /// /// /// /// The dimension is relative to the 's Content, which is bound by @@ -332,7 +332,7 @@ public partial class View // Layout APIs /// /// /// See the View Layout Deep Dive for more information: - /// + /// /// /// /// The dimension is relative to the 's Content, which is bound by @@ -404,7 +404,7 @@ public partial class View // Layout APIs /// /// /// See the View Layout Deep Dive for more information: - /// + /// /// /// /// This method is intended to be called by the layout engine to @@ -433,7 +433,7 @@ public partial class View // Layout APIs /// /// /// See the View Layout Deep Dive for more information: - /// + /// /// /// /// This method is intended to be called by the layout engine to @@ -589,7 +589,7 @@ public partial class View // Layout APIs /// /// /// See the View Layout Deep Dive for more information: - /// + /// /// /// /// The position and dimensions of the view are indeterminate until the view has been initialized. Therefore, the diff --git a/Terminal.Gui/ViewBase/View.Navigation.cs b/Terminal.Gui/ViewBase/View.Navigation.cs index a3628f99a..27a69ce75 100644 --- a/Terminal.Gui/ViewBase/View.Navigation.cs +++ b/Terminal.Gui/ViewBase/View.Navigation.cs @@ -19,7 +19,7 @@ public partial class View // Focus and cross-view navigation management (TabStop /// /// /// See the View Navigation Deep Dive for more information: - /// + /// /// /// /// @@ -225,7 +225,7 @@ public partial class View // Focus and cross-view navigation management (TabStop /// /// /// See the View Navigation Deep Dive for more information: - /// + /// /// /// /// must also have set to . @@ -441,7 +441,7 @@ public partial class View // Focus and cross-view navigation management (TabStop /// /// /// See the View Navigation Deep Dive for more information: - /// + /// /// /// /// Only Views that are visible, enabled, and have set to are @@ -511,7 +511,7 @@ public partial class View // Focus and cross-view navigation management (TabStop /// /// /// See the View Navigation Deep Dive for more information: - /// + /// /// /// /// if the focus changed; false otherwise. @@ -1006,7 +1006,7 @@ public partial class View // Focus and cross-view navigation management (TabStop /// /// /// See the View Navigation Deep Dive for more information: - /// + /// /// /// /// /// diff --git a/Terminal.Gui/ViewBase/ViewportSettingsFlags.cs b/Terminal.Gui/ViewBase/ViewportSettingsFlags.cs index 5eee4493b..ba163b39f 100644 --- a/Terminal.Gui/ViewBase/ViewportSettingsFlags.cs +++ b/Terminal.Gui/ViewBase/ViewportSettingsFlags.cs @@ -5,7 +5,7 @@ /// /// /// See the Layout Deep Dive for more information: -/// +/// /// [Flags] public enum ViewportSettingsFlags diff --git a/Terminal.Gui/Views/Menu/MenuBarv2.cs b/Terminal.Gui/Views/Menu/MenuBarv2.cs index 5f1917861..7690e2b85 100644 --- a/Terminal.Gui/Views/Menu/MenuBarv2.cs +++ b/Terminal.Gui/Views/Menu/MenuBarv2.cs @@ -654,7 +654,7 @@ public class MenuBarv2 : Menuv2, IDesignable new MenuItemv2 { Title = "_Online Help...", - Action = () => MessageBox.Query ("Online Help", "https://gui-cs.github.io/Terminal.GuiV2Docs", "Ok") + Action = () => MessageBox.Query ("Online Help", "https://gui-cs.github.io/Terminal.Gui", "Ok") }, new MenuItemv2 { diff --git a/Terminal.Gui/Views/ScrollBar/ScrollBar.cs b/Terminal.Gui/Views/ScrollBar/ScrollBar.cs index c625962c0..7aadd2849 100644 --- a/Terminal.Gui/Views/ScrollBar/ScrollBar.cs +++ b/Terminal.Gui/Views/ScrollBar/ScrollBar.cs @@ -14,7 +14,7 @@ namespace Terminal.Gui.Views; /// /// /// -/// See the Scrolling Deep Dive. +/// See the Scrolling Deep Dive. /// /// /// By default, the built-in View scrollbars (/ diff --git a/Tests/UnitTests/Configuration/ConfigurationMangerTests.cs b/Tests/UnitTests/Configuration/ConfigurationMangerTests.cs index f6ae402e6..4e0774f1f 100644 --- a/Tests/UnitTests/Configuration/ConfigurationMangerTests.cs +++ b/Tests/UnitTests/Configuration/ConfigurationMangerTests.cs @@ -851,7 +851,7 @@ public class ConfigurationManagerTests (ITestOutputHelper output) // Arrange var json = @" { - ""$schema"": ""https://gui-cs.github.io/Terminal.GuiV2Docs/schemas/tui-config-schema.json"", + ""$schema"": ""https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json"", ""Application.QuitKey"": ""Alt-Z"", ""Theme"": ""Default"", ""Themes"": [ diff --git a/Tests/UnitTestsParallelizable/Configuration/SettingsScopeTests.cs b/Tests/UnitTestsParallelizable/Configuration/SettingsScopeTests.cs index 1493b1888..24a45c8dc 100644 --- a/Tests/UnitTestsParallelizable/Configuration/SettingsScopeTests.cs +++ b/Tests/UnitTestsParallelizable/Configuration/SettingsScopeTests.cs @@ -11,6 +11,6 @@ public class SettingsScopeTests // Act // Assert - Assert.Equal ("https://gui-cs.github.io/Terminal.GuiV2Docs/schemas/tui-config-schema.json", settingsScope.Schema); + Assert.Equal ("https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json", settingsScope.Schema); } } diff --git a/Tests/UnitTestsParallelizable/Views/TextViewTests.cs b/Tests/UnitTestsParallelizable/Views/TextViewTests.cs index ffe6a67e1..e3fc51d55 100644 --- a/Tests/UnitTestsParallelizable/Views/TextViewTests.cs +++ b/Tests/UnitTestsParallelizable/Views/TextViewTests.cs @@ -2125,27 +2125,27 @@ public class TextViewTests "|$=+´`~^<>£€¨", "")] [InlineData ( - "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.GuiV2Docs/schemas/tui-config-schema.json\"\r\n}", + "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}", false, - "\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.GuiV2Docs/schemas/tui-config-schema.json\"\r\n}", - " \"$schema\": \"https://gui-cs.github.io/Terminal.GuiV2Docs/schemas/tui-config-schema.json\"\r\n}", - "\"$schema\": \"https://gui-cs.github.io/Terminal.GuiV2Docs/schemas/tui-config-schema.json\"\r\n}", - "schema\": \"https://gui-cs.github.io/Terminal.GuiV2Docs/schemas/tui-config-schema.json\"\r\n}", - "\": \"https://gui-cs.github.io/Terminal.GuiV2Docs/schemas/tui-config-schema.json\"\r\n}", - "\"https://gui-cs.github.io/Terminal.GuiV2Docs/schemas/tui-config-schema.json\"\r\n}", - "https://gui-cs.github.io/Terminal.GuiV2Docs/schemas/tui-config-schema.json\"\r\n}", - "://gui-cs.github.io/Terminal.GuiV2Docs/schemas/tui-config-schema.json\"\r\n}", - "gui-cs.github.io/Terminal.GuiV2Docs/schemas/tui-config-schema.json\"\r\n}", - "-cs.github.io/Terminal.GuiV2Docs/schemas/tui-config-schema.json\"\r\n}", - "cs.github.io/Terminal.GuiV2Docs/schemas/tui-config-schema.json\"\r\n}", - ".github.io/Terminal.GuiV2Docs/schemas/tui-config-schema.json\"\r\n}", - "github.io/Terminal.GuiV2Docs/schemas/tui-config-schema.json\"\r\n}", - ".io/Terminal.GuiV2Docs/schemas/tui-config-schema.json\"\r\n}", - "io/Terminal.GuiV2Docs/schemas/tui-config-schema.json\"\r\n}", - "/Terminal.GuiV2Docs/schemas/tui-config-schema.json\"\r\n}", - "Terminal.GuiV2Docs/schemas/tui-config-schema.json\"\r\n}", - ".GuiV2Docs/schemas/tui-config-schema.json\"\r\n}", - "GuiV2Docs/schemas/tui-config-schema.json\"\r\n}", + "\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}", + " \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}", + "\"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}", + "schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}", + "\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}", + "\"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}", + "https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}", + "://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}", + "gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}", + "-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}", + "cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}", + ".github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}", + "github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}", + ".io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}", + "io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}", + "/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}", + "Terminal.Gui/schemas/tui-config-schema.json\"\r\n}", + ".Gui/schemas/tui-config-schema.json\"\r\n}", + "Gui/schemas/tui-config-schema.json\"\r\n}", "/schemas/tui-config-schema.json\"\r\n}", "schemas/tui-config-schema.json\"\r\n}", "/tui-config-schema.json\"\r\n}", @@ -2161,28 +2161,28 @@ public class TextViewTests "}", "")] [InlineData ( - "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.GuiV2Docs/schemas/tui-config-schema.json\"\r\n}", + "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}", true, - "\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.GuiV2Docs/schemas/tui-config-schema.json\"\r\n}", - " \"$schema\": \"https://gui-cs.github.io/Terminal.GuiV2Docs/schemas/tui-config-schema.json\"\r\n}", - "\"$schema\": \"https://gui-cs.github.io/Terminal.GuiV2Docs/schemas/tui-config-schema.json\"\r\n}", - "$schema\": \"https://gui-cs.github.io/Terminal.GuiV2Docs/schemas/tui-config-schema.json\"\r\n}", - "schema\": \"https://gui-cs.github.io/Terminal.GuiV2Docs/schemas/tui-config-schema.json\"\r\n}", - "\": \"https://gui-cs.github.io/Terminal.GuiV2Docs/schemas/tui-config-schema.json\"\r\n}", - "\"https://gui-cs.github.io/Terminal.GuiV2Docs/schemas/tui-config-schema.json\"\r\n}", - "https://gui-cs.github.io/Terminal.GuiV2Docs/schemas/tui-config-schema.json\"\r\n}", - "://gui-cs.github.io/Terminal.GuiV2Docs/schemas/tui-config-schema.json\"\r\n}", - "gui-cs.github.io/Terminal.GuiV2Docs/schemas/tui-config-schema.json\"\r\n}", - "-cs.github.io/Terminal.GuiV2Docs/schemas/tui-config-schema.json\"\r\n}", - "cs.github.io/Terminal.GuiV2Docs/schemas/tui-config-schema.json\"\r\n}", - ".github.io/Terminal.GuiV2Docs/schemas/tui-config-schema.json\"\r\n}", - "github.io/Terminal.GuiV2Docs/schemas/tui-config-schema.json\"\r\n}", - ".io/Terminal.GuiV2Docs/schemas/tui-config-schema.json\"\r\n}", - "io/Terminal.GuiV2Docs/schemas/tui-config-schema.json\"\r\n}", - "/Terminal.GuiV2Docs/schemas/tui-config-schema.json\"\r\n}", - "Terminal.GuiV2Docs/schemas/tui-config-schema.json\"\r\n}", - ".GuiV2Docs/schemas/tui-config-schema.json\"\r\n}", - "GuiV2Docs/schemas/tui-config-schema.json\"\r\n}", + "\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}", + " \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}", + "\"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}", + "$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}", + "schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}", + "\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}", + "\"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}", + "https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}", + "://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}", + "gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}", + "-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}", + "cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}", + ".github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}", + "github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}", + ".io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}", + "io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}", + "/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}", + "Terminal.Gui/schemas/tui-config-schema.json\"\r\n}", + ".Gui/schemas/tui-config-schema.json\"\r\n}", + "Gui/schemas/tui-config-schema.json\"\r\n}", "/schemas/tui-config-schema.json\"\r\n}", "schemas/tui-config-schema.json\"\r\n}", "/tui-config-schema.json\"\r\n}", @@ -2260,21 +2260,21 @@ public class TextViewTests "ºª", "")] [InlineData ( - "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.GuiV2Docs/schemas/tui-config-schema.json\"\r\n}", + "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}", false, - "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.GuiV2Docs/schemas/tui-config-schema.json\"\r\n", - "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.GuiV2Docs/schemas/tui-config-schema.json\"", - "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.GuiV2Docs/schemas/tui-config-schema.json", - "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.GuiV2Docs/schemas/tui-config-schema.", - "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.GuiV2Docs/schemas/tui-config-schema", - "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.GuiV2Docs/schemas/tui-config-", - "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.GuiV2Docs/schemas/tui-config", - "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.GuiV2Docs/schemas/tui-", - "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.GuiV2Docs/schemas/tui", - "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.GuiV2Docs/schemas/", - "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.GuiV2Docs/schemas", - "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.GuiV2Docs/", - "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.GuiV2Docs", + "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n", + "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"", + "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json", + "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.", + "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema", + "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-", + "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config", + "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-", + "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui", + "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/", + "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas", + "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/", + "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui", "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.", "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal", "{\r\n \"$schema\": \"https://gui-cs.github.io/", @@ -2296,21 +2296,21 @@ public class TextViewTests "{", "")] [InlineData ( - "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.GuiV2Docs/schemas/tui-config-schema.json\"\r\n}", + "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}", true, - "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.GuiV2Docs/schemas/tui-config-schema.json\"\r\n", - "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.GuiV2Docs/schemas/tui-config-schema.json\"", - "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.GuiV2Docs/schemas/tui-config-schema.json", - "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.GuiV2Docs/schemas/tui-config-schema.", - "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.GuiV2Docs/schemas/tui-config-schema", - "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.GuiV2Docs/schemas/tui-config-", - "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.GuiV2Docs/schemas/tui-config", - "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.GuiV2Docs/schemas/tui-", - "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.GuiV2Docs/schemas/tui", - "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.GuiV2Docs/schemas/", - "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.GuiV2Docs/schemas", - "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.GuiV2Docs/", - "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.GuiV2Docs", + "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n", + "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"", + "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json", + "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.", + "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema", + "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-", + "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config", + "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-", + "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui", + "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/", + "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas", + "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/", + "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui", "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.", "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal", "{\r\n \"$schema\": \"https://gui-cs.github.io/",