Skip to content

Commit c58c215

Browse files
committed
Feature: 'clip' command can now open text in the OS's default viewer.
1 parent c433e74 commit c58c215

File tree

96 files changed

+145
-126
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

96 files changed

+145
-126
lines changed

DTC.Core

Submodule DTC.Core updated 71 files

G33kShell.Desktop/Console/3D/ChequeredSceneBackground.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
//
1010
// THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND.
1111
using System;
12-
using CSharp.Core;
13-
using CSharp.Core.Extensions;
12+
using DTC.Core;
13+
using DTC.Core.Extensions;
1414
using JetBrains.Annotations;
1515

1616
namespace G33kShell.Desktop.Console._3D;

G33kShell.Desktop/Console/3D/Scene3D.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@
1111
//#define VIEW_Z_BUFFER
1212

1313
#if VIEW_Z_BUFFER
14-
using CSharp.Core;
14+
using DTC.Core;
1515
#endif
1616

1717
using System;
1818
using System.Collections.Generic;
1919
using System.Linq;
2020
using System.Numerics;
21-
using CSharp.Core.Extensions;
21+
using DTC.Core.Extensions;
2222
using JetBrains.Annotations;
2323

2424
namespace G33kShell.Desktop.Console._3D;

G33kShell.Desktop/Console/3D/SceneBackground.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
//
1010
// THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND.
1111
using System;
12-
using CSharp.Core;
12+
using DTC.Core;
1313
using JetBrains.Annotations;
1414

1515
namespace G33kShell.Desktop.Console._3D;

G33kShell.Desktop/Console/Attr.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
// THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND.
1111

1212
using System.Diagnostics;
13-
using CSharp.Core;
13+
using DTC.Core;
1414

1515
namespace G33kShell.Desktop.Console;
1616

G33kShell.Desktop/Console/Controls/AnimatedCanvas.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
using System;
1212
using System.Diagnostics;
1313
using System.Threading.Tasks;
14-
using CSharp.Core;
14+
using DTC.Core;
1515

1616
namespace G33kShell.Desktop.Console.Controls;
1717

G33kShell.Desktop/Console/Controls/Image.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
using System.Diagnostics;
1313
using System.IO;
1414
using System.Linq;
15-
using CSharp.Core;
16-
using CSharp.Core.Extensions;
15+
using DTC.Core;
16+
using DTC.Core.Extensions;
1717
using SkiaSharp;
1818

1919
namespace G33kShell.Desktop.Console.Controls;

G33kShell.Desktop/Console/Controls/ProgressBar.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
//
1010
// THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND.
1111
using System.Diagnostics;
12-
using CSharp.Core.Extensions;
12+
using DTC.Core.Extensions;
1313

1414
namespace G33kShell.Desktop.Console.Controls;
1515

G33kShell.Desktop/Console/Controls/RandomScreensaver.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
using System;
1212
using System.Diagnostics;
1313
using System.Linq;
14-
using CSharp.Core.Extensions;
14+
using DTC.Core.Extensions;
1515
using G33kShell.Desktop.Console.Screensavers;
1616
using JetBrains.Annotations;
1717

G33kShell.Desktop/Console/Controls/TextBox.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
using System.Threading.Tasks;
1919
using Avalonia;
2020
using Avalonia.Input;
21-
using CSharp.Core.Extensions;
21+
using DTC.Core.Extensions;
2222
using G33kShell.Desktop.Console.Events;
2323

2424
namespace G33kShell.Desktop.Console.Controls;

0 commit comments

Comments
 (0)