Commit c58c215
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- G33kShell.Desktop
- Console
- 3D
- Controls
- Events
- Screensavers
- AI
- Asteroids
- Pong
- Snake
- Views
- Skins
- Terminal
- Commands
- Controls
- ViewModels
- Views
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- CSharp.Core/ActionConsolidator.cs-69
- CSharp.Core/Commands/FileOpenCommand.cs-65
- CSharp.Core/UI/ConfirmationDialog.axaml-41
- CSharp.Core/UI/DialogService.cs-45
- CSharp.Core/UI/MessageDialog.axaml-34
- DTC.Core/AI/NeuralNetwork.cs+4-2
- DTC.Core/ActionConsolidator.cs+55
- DTC.Core/Animation.cs+3-1
- DTC.Core/Commands/CommandBase.cs+2-1
- DTC.Core/Commands/FileOpenCommand.cs+43
- DTC.Core/Commands/FileSaveCommand.cs+7-30
- DTC.Core/Commands/RelayCommand.cs+3-1
- DTC.Core/CompressedDataStore.cs+4-2
- DTC.Core/Converters/BytesToUiStringConverter.cs+34
- DTC.Core/Converters/FileInfoToLeafNameConverter.cs+4-2
- DTC.Core/Converters/MarkdownToInlinesConverter.cs+4-2
- DTC.Core/Converters/RiskToBrushConverter.cs+25
- DTC.Core/DTC.Core.csproj+10-1
- DTC.Core/Direction.cs+1-1
- DTC.Core/Extensions/ApplicationExtensions.cs+1-1
- DTC.Core/Extensions/AssemblyExtensions.cs+3-1
- DTC.Core/Extensions/BrushExtensions.cs+2-1
- DTC.Core/Extensions/ByteExtensions.cs+1-1
- DTC.Core/Extensions/DirectoryInfoExtensions.cs+52-5
- DTC.Core/Extensions/EnumerableExtensions.cs+7-2
- DTC.Core/Extensions/FastLinq.cs+49-1
- DTC.Core/Extensions/FileInfoExtensions.cs+16-1
- DTC.Core/Extensions/FileSystemInfoExtensions.cs+4-1
- DTC.Core/Extensions/ListExtensions.cs+4-1
- DTC.Core/Extensions/NumberExtensions.cs+8-40
- DTC.Core/Extensions/RandomExtensions.cs+53
- DTC.Core/Extensions/StorageItemExtensions.cs+2-1
- DTC.Core/Extensions/StringExtensions.cs+6-4
- DTC.Core/Extensions/TempDirectoryExtensions.cs+3-1
- DTC.Core/Extensions/TempFileExtensions.cs+3-1
- DTC.Core/Extensions/UrlExtensions.cs+2-1
- DTC.Core/Extensions/WindowExtensions.cs+3-1
- DTC.Core/ImageProcessing/FaceFinder.cs+7-2
- DTC.Core/ImageProcessing/WebCam.cs+4-1
- DTC.Core/IntPoint.cs+3-1
- DTC.Core/JsonConverters/DirectoryInfoConverter.cs+4-2
- DTC.Core/JsonConverters/FileInfoConverter.cs+4-2
- DTC.Core/KeyboardLayoutChecker.cs+2-1
- DTC.Core/LazyDisposer.cs+4-1
- DTC.Core/Logger.cs+4-2
- DTC.Core/LruCache.cs+4-1
- DTC.Core/PeriodicAction.cs+5-1
- DTC.Core/ProgressToken.cs+62
- DTC.Core/RGB.cs+1-1
- DTC.Core/Settings/UserSettingsBase.cs+7-3
- DTC.Core/TempDirectory.cs+5-2
- DTC.Core/TempFile.cs+4-2
- DTC.Core/UI/AppCloseHandler.cs+1-1
- DTC.Core/UI/BusyDialog.axaml+34
- DTC.Core/UI/BusyDialog.axaml.cs+40
- DTC.Core/UI/ConfirmationDialog.axaml+44
- DTC.Core/UI/ConfirmationDialog.axaml.cs+1-1
- DTC.Core/UI/DialogService.cs+143
- DTC.Core/UI/FolderTree.axaml+23
- DTC.Core/UI/FolderTree.axaml.cs+52
- DTC.Core/UI/FolderTreeNode.cs+164
- DTC.Core/UI/FolderTreeRoot.cs+52
- DTC.Core/UI/IDialogService.cs+26
- DTC.Core/UI/MessageDialog.axaml+37
- DTC.Core/UI/MessageDialog.axaml.cs+1-1
- DTC.Core/UI/OneShotDispatcherTimer.cs+2-1
- DTC.Core/UI/ShaderControl.cs+5-1
- DTC.Core/UnitTesting/TestsBase.cs+4-2
- DTC.Core/Validators/HexStringAttribute.cs+1-1
- DTC.Core/ViewModels/MruFiles.cs+7-3
- DTC.Core/ViewModels/ViewModelBase.cs+2-1
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
12 | | - | |
13 | | - | |
| 12 | + | |
| 13 | + | |
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
11 | 11 | | |
12 | 12 | | |
13 | 13 | | |
14 | | - | |
| 14 | + | |
15 | 15 | | |
16 | 16 | | |
17 | 17 | | |
18 | 18 | | |
19 | 19 | | |
20 | 20 | | |
21 | | - | |
| 21 | + | |
22 | 22 | | |
23 | 23 | | |
24 | 24 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
12 | | - | |
| 12 | + | |
13 | 13 | | |
14 | 14 | | |
15 | 15 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
10 | 10 | | |
11 | 11 | | |
12 | 12 | | |
13 | | - | |
| 13 | + | |
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
11 | 11 | | |
12 | 12 | | |
13 | 13 | | |
14 | | - | |
| 14 | + | |
15 | 15 | | |
16 | 16 | | |
17 | 17 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
12 | 12 | | |
13 | 13 | | |
14 | 14 | | |
15 | | - | |
16 | | - | |
| 15 | + | |
| 16 | + | |
17 | 17 | | |
18 | 18 | | |
19 | 19 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
12 | | - | |
| 12 | + | |
13 | 13 | | |
14 | 14 | | |
15 | 15 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
11 | 11 | | |
12 | 12 | | |
13 | 13 | | |
14 | | - | |
| 14 | + | |
15 | 15 | | |
16 | 16 | | |
17 | 17 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
18 | 18 | | |
19 | 19 | | |
20 | 20 | | |
21 | | - | |
| 21 | + | |
22 | 22 | | |
23 | 23 | | |
24 | 24 | | |
| |||
0 commit comments