Skip to content

Commit ddc33a3

Browse files
authored
Merge pull request #325 from tui-cs/tig/rename-gui-cs-to-tui-cs
Rename internal references: gui-cs → tui-cs
2 parents d5e42cc + bffec65 commit ddc33a3

6 files changed

Lines changed: 9 additions & 9 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Ensure that you match the Terminal.Gui library version you reference to the desi
3333

3434
## Demo
3535

36-
![long-demo](https://github.com/gui-cs/TerminalGuiDesigner/assets/31306100/5df9f545-8c61-4655-bc0c-1e75d1c149d9)
36+
![long-demo](https://github.com/tui-cs/TerminalGuiDesigner/assets/31306100/5df9f545-8c61-4655-bc0c-1e75d1c149d9)
3737

3838
### Building
3939
----------------
@@ -204,7 +204,7 @@ italics are experimental and require passing the `-e` flag when starting applica
204204
- [ ] Copy/Paste preserve menu entries
205205
- [x] ProgressBar
206206
- [x] OptionSelector
207-
- [ ] [SplitContainer](https://github.com/gui-cs/Terminal.Gui/pull/2258) (Unreleased)
207+
- [ ] [SplitContainer](https://github.com/tui-cs/Terminal.Gui/pull/2258) (Unreleased)
208208
- [ ] Copy/Paste preserve split content panels
209209
- [x] StatusBar
210210
- [ ] Copy/Paste preserve menu entries

Showcase/Text.Designer.cs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/UI/Editor.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -974,7 +974,7 @@ private void CreateAndShowContextMenu(Mouse? m, Design? rightClicked)
974974
if (hasPropsItems)
975975
{
976976
// Also add to the submenu an 'All' version
977-
// Workaround for https://github.com/gui-cs/Terminal.Gui/issues/4876
977+
// Workaround for https://github.com/tui-cs/Terminal.Gui/issues/4876
978978
// Previously user could do it by selecting the root 'Properties' expandable
979979
// menu
980980
setPropsItems.Insert(0, new MenuItem() {
@@ -993,7 +993,7 @@ private void CreateAndShowContextMenu(Mouse? m, Design? rightClicked)
993993
Title = name,
994994
SubMenu = new Menu(setPropsItems)
995995
/*
996-
* No longer supported, see https://github.com/gui-cs/Terminal.Gui/issues/4876
996+
* No longer supported, see https://github.com/tui-cs/Terminal.Gui/issues/4876
997997
* ,Action = () =>
998998
{
999999
if (selected.Length == 1 || rightClicked != null)

src/ViewExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ public static void SetActualText(this View view, string text)
9999
/// keyword on this property.
100100
/// </para>
101101
/// <para>
102-
/// See https://github.com/gui-cs/Terminal.Gui/issues/1619 for more info.
102+
/// See https://github.com/tui-cs/Terminal.Gui/issues/1619 for more info.
103103
/// </para>
104104
/// </summary>
105105
/// <param name="view">The <see cref="View"/> whose text you want.</param>

src/ViewFactory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public static class ViewFactory
4444
typeof( Wizard ),
4545
typeof( WizardStep ),
4646

47-
// This is unstable when added directly as a view see https://github.com/gui-cs/Terminal.Gui/issues/3664
47+
// This is unstable when added directly as a view see https://github.com/tui-cs/Terminal.Gui/issues/3664
4848
typeof(Shortcut),
4949

5050
typeof(CharMap),

tests/MenuBarTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -547,9 +547,9 @@ public void TestMenuOperations( )
547547
Assume.That( OperationManager.Instance.UndoStackSize, Is.Zero );
548548
Assume.That( OperationManager.Instance.RedoStackSize, Is.Zero );
549549

550-
Assert.Warn( "MenuTracker.Instance.CurrentlyOpenMenuItem cannot be guaranteed null at this time. See https://github.com/gui-cs/TerminalGuiDesigner/issues/270" );
550+
Assert.Warn( "MenuTracker.Instance.CurrentlyOpenMenuItem cannot be guaranteed null at this time. See https://github.com/tui-cs/TerminalGuiDesigner/issues/270" );
551551
// TODO: Enable this pre-condition once MenuTracker changes are implemented.
552-
// See https://github.com/gui-cs/TerminalGuiDesigner/issues/270
552+
// See https://github.com/tui-cs/TerminalGuiDesigner/issues/270
553553
//Assume.That( MenuTracker.Instance.CurrentlyOpenMenuItem, Is.Null );
554554

555555
MenuTracker.Instance.Register( mbOut );

0 commit comments

Comments
 (0)