├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── release.yml │ └── wiki.yml ├── .gitignore ├── .nojekyll ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── NeatShift ├── .gitattributes ├── .gitignore ├── Icon │ └── icon.png ├── LICENSE.txt ├── NeatShift.sln ├── NeatShift │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── Converters │ │ ├── BooleanToNumberConverter.cs │ │ ├── CountToVisibilityConverter.cs │ │ └── FileTypeToSymbolConverter.cs │ ├── Models │ │ ├── FileSystemItem.cs │ │ ├── NeatSavesOperation.cs │ │ ├── NeatSavesSettings.cs │ │ ├── RestorePoint.cs │ │ └── Settings.cs │ ├── NeatShift.csproj │ ├── ProgressDialog.Designer.cs │ ├── ProgressDialog.cs │ ├── ProgressDialog.resx │ ├── Properties │ │ ├── GlobalSuppressions.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Services │ │ ├── AdminManager.cs │ │ ├── AppLogger.cs │ │ ├── FileOperationService.cs │ │ ├── IFileOperationService.cs │ │ ├── INeatSavesService.cs │ │ ├── IOHelper.cs │ │ ├── IOOperation.cs │ │ ├── ISettingsService.cs │ │ ├── ISystemRestoreService.cs │ │ ├── NativeMethods.cs │ │ ├── NeatSavesService.cs │ │ ├── PendingMoveManager.cs │ │ ├── RecentLocationsService.cs │ │ ├── SettingsService.cs │ │ ├── SystemRestoreService.cs │ │ └── UpdateService.cs │ ├── Version.cs │ ├── ViewModels │ │ ├── ErrorDetailsDialogViewModel.cs │ │ ├── FileBrowserViewModel.cs │ │ ├── MainWindowViewModel.cs │ │ ├── NeatSavesManagementViewModel.cs │ │ ├── RestorePointViewModel.cs │ │ └── SafetyChoiceViewModel.cs │ ├── Views │ │ ├── AdminPromptDialog.xaml │ │ ├── AdminPromptDialog.xaml.cs │ │ ├── BooleanToAccentConverter.cs │ │ ├── BooleanToArrowConverter.cs │ │ ├── BooleanToGlyphConverter.cs │ │ ├── BooleanToNumberConverter.cs │ │ ├── BooleanToSelectionModeConverter.cs │ │ ├── BooleanToSymbolConverter.cs │ │ ├── BooleanToViewIconConverter.cs │ │ ├── BooleanToVisibilityConverter.cs │ │ ├── ContactDialog.xaml │ │ ├── ContactDialog.xaml.cs │ │ ├── ErrorDetailsDialog.xaml │ │ ├── ErrorDetailsDialog.xaml.cs │ │ ├── FeatureRequestDialog.xaml │ │ ├── FeatureRequestDialog.xaml.cs │ │ ├── FileBrowserControl.xaml │ │ ├── FileBrowserControl.xaml.cs │ │ ├── GuideStep.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── NeatSavesManagementBlock.xaml │ │ ├── NeatSavesManagementBlock.xaml.cs │ │ ├── NeatSavesManagementDialog.xaml │ │ ├── NeatSavesManagementDialog.xaml.cs │ │ ├── RestorePointDialog.xaml │ │ ├── RestorePointDialog.xaml.cs │ │ ├── SafetyChoiceDialog.xaml │ │ ├── SafetyChoiceDialog.xaml.cs │ │ ├── SettingsDialog.xaml │ │ ├── SettingsDialog.xaml.cs │ │ ├── SortColumnVisibilityConverter.cs │ │ ├── SymbolicLinkInfoDialog.xaml │ │ ├── SymbolicLinkInfoDialog.xaml.cs │ │ ├── SymbolicLinksDialog.xaml │ │ └── SymbolicLinksDialog.xaml.cs │ ├── app.manifest │ ├── icon.ico │ └── packages.config └── README.md ├── README.md ├── Refimages ├── darkmode.png ├── file-explorer.png ├── lightmode.png └── safety-net.png ├── SECURITY.md ├── icon.ico ├── privacy-policy.md └── wiki ├── FAQ.md ├── Home.md ├── Installation.md ├── Security-and-Verification.md ├── Usage-Guide.md └── _Sidebar.md /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/wiki.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/.github/workflows/wiki.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/.gitignore -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/LICENSE -------------------------------------------------------------------------------- /NeatShift/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/.gitattributes -------------------------------------------------------------------------------- /NeatShift/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/.gitignore -------------------------------------------------------------------------------- /NeatShift/Icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/Icon/icon.png -------------------------------------------------------------------------------- /NeatShift/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/LICENSE.txt -------------------------------------------------------------------------------- /NeatShift/NeatShift.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift.sln -------------------------------------------------------------------------------- /NeatShift/NeatShift/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/App.config -------------------------------------------------------------------------------- /NeatShift/NeatShift/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/App.xaml -------------------------------------------------------------------------------- /NeatShift/NeatShift/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/App.xaml.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/Converters/BooleanToNumberConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Converters/BooleanToNumberConverter.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/Converters/CountToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Converters/CountToVisibilityConverter.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/Converters/FileTypeToSymbolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Converters/FileTypeToSymbolConverter.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/Models/FileSystemItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Models/FileSystemItem.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/Models/NeatSavesOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Models/NeatSavesOperation.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/Models/NeatSavesSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Models/NeatSavesSettings.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/Models/RestorePoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Models/RestorePoint.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/Models/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Models/Settings.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/NeatShift.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/NeatShift.csproj -------------------------------------------------------------------------------- /NeatShift/NeatShift/ProgressDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/ProgressDialog.Designer.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/ProgressDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/ProgressDialog.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/ProgressDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/ProgressDialog.resx -------------------------------------------------------------------------------- /NeatShift/NeatShift/Properties/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Properties/GlobalSuppressions.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Properties/Resources.resx -------------------------------------------------------------------------------- /NeatShift/NeatShift/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Properties/Settings.settings -------------------------------------------------------------------------------- /NeatShift/NeatShift/Services/AdminManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Services/AdminManager.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/Services/AppLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Services/AppLogger.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/Services/FileOperationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Services/FileOperationService.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/Services/IFileOperationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Services/IFileOperationService.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/Services/INeatSavesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Services/INeatSavesService.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/Services/IOHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Services/IOHelper.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/Services/IOOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Services/IOOperation.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/Services/ISettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Services/ISettingsService.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/Services/ISystemRestoreService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Services/ISystemRestoreService.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/Services/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Services/NativeMethods.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/Services/NeatSavesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Services/NeatSavesService.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/Services/PendingMoveManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Services/PendingMoveManager.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/Services/RecentLocationsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Services/RecentLocationsService.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/Services/SettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Services/SettingsService.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/Services/SystemRestoreService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Services/SystemRestoreService.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/Services/UpdateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Services/UpdateService.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/Version.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Version.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/ViewModels/ErrorDetailsDialogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/ViewModels/ErrorDetailsDialogViewModel.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/ViewModels/FileBrowserViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/ViewModels/FileBrowserViewModel.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/ViewModels/MainWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/ViewModels/MainWindowViewModel.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/ViewModels/NeatSavesManagementViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/ViewModels/NeatSavesManagementViewModel.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/ViewModels/RestorePointViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/ViewModels/RestorePointViewModel.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/ViewModels/SafetyChoiceViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/ViewModels/SafetyChoiceViewModel.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/Views/AdminPromptDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Views/AdminPromptDialog.xaml -------------------------------------------------------------------------------- /NeatShift/NeatShift/Views/AdminPromptDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Views/AdminPromptDialog.xaml.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/Views/BooleanToAccentConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Views/BooleanToAccentConverter.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/Views/BooleanToArrowConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Views/BooleanToArrowConverter.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/Views/BooleanToGlyphConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Views/BooleanToGlyphConverter.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/Views/BooleanToNumberConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Views/BooleanToNumberConverter.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/Views/BooleanToSelectionModeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Views/BooleanToSelectionModeConverter.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/Views/BooleanToSymbolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Views/BooleanToSymbolConverter.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/Views/BooleanToViewIconConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Views/BooleanToViewIconConverter.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/Views/BooleanToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Views/BooleanToVisibilityConverter.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/Views/ContactDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Views/ContactDialog.xaml -------------------------------------------------------------------------------- /NeatShift/NeatShift/Views/ContactDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Views/ContactDialog.xaml.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/Views/ErrorDetailsDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Views/ErrorDetailsDialog.xaml -------------------------------------------------------------------------------- /NeatShift/NeatShift/Views/ErrorDetailsDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Views/ErrorDetailsDialog.xaml.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/Views/FeatureRequestDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Views/FeatureRequestDialog.xaml -------------------------------------------------------------------------------- /NeatShift/NeatShift/Views/FeatureRequestDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Views/FeatureRequestDialog.xaml.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/Views/FileBrowserControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Views/FileBrowserControl.xaml -------------------------------------------------------------------------------- /NeatShift/NeatShift/Views/FileBrowserControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Views/FileBrowserControl.xaml.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/Views/GuideStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Views/GuideStep.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/Views/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Views/MainWindow.xaml -------------------------------------------------------------------------------- /NeatShift/NeatShift/Views/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Views/MainWindow.xaml.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/Views/NeatSavesManagementBlock.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Views/NeatSavesManagementBlock.xaml -------------------------------------------------------------------------------- /NeatShift/NeatShift/Views/NeatSavesManagementBlock.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Views/NeatSavesManagementBlock.xaml.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/Views/NeatSavesManagementDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Views/NeatSavesManagementDialog.xaml -------------------------------------------------------------------------------- /NeatShift/NeatShift/Views/NeatSavesManagementDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Views/NeatSavesManagementDialog.xaml.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/Views/RestorePointDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Views/RestorePointDialog.xaml -------------------------------------------------------------------------------- /NeatShift/NeatShift/Views/RestorePointDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Views/RestorePointDialog.xaml.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/Views/SafetyChoiceDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Views/SafetyChoiceDialog.xaml -------------------------------------------------------------------------------- /NeatShift/NeatShift/Views/SafetyChoiceDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Views/SafetyChoiceDialog.xaml.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/Views/SettingsDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Views/SettingsDialog.xaml -------------------------------------------------------------------------------- /NeatShift/NeatShift/Views/SettingsDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Views/SettingsDialog.xaml.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/Views/SortColumnVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Views/SortColumnVisibilityConverter.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/Views/SymbolicLinkInfoDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Views/SymbolicLinkInfoDialog.xaml -------------------------------------------------------------------------------- /NeatShift/NeatShift/Views/SymbolicLinkInfoDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Views/SymbolicLinkInfoDialog.xaml.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/Views/SymbolicLinksDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Views/SymbolicLinksDialog.xaml -------------------------------------------------------------------------------- /NeatShift/NeatShift/Views/SymbolicLinksDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/Views/SymbolicLinksDialog.xaml.cs -------------------------------------------------------------------------------- /NeatShift/NeatShift/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/app.manifest -------------------------------------------------------------------------------- /NeatShift/NeatShift/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/icon.ico -------------------------------------------------------------------------------- /NeatShift/NeatShift/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/NeatShift/packages.config -------------------------------------------------------------------------------- /NeatShift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/NeatShift/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/README.md -------------------------------------------------------------------------------- /Refimages/darkmode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/Refimages/darkmode.png -------------------------------------------------------------------------------- /Refimages/file-explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/Refimages/file-explorer.png -------------------------------------------------------------------------------- /Refimages/lightmode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/Refimages/lightmode.png -------------------------------------------------------------------------------- /Refimages/safety-net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/Refimages/safety-net.png -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/SECURITY.md -------------------------------------------------------------------------------- /icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/icon.ico -------------------------------------------------------------------------------- /privacy-policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/privacy-policy.md -------------------------------------------------------------------------------- /wiki/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/wiki/FAQ.md -------------------------------------------------------------------------------- /wiki/Home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/wiki/Home.md -------------------------------------------------------------------------------- /wiki/Installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/wiki/Installation.md -------------------------------------------------------------------------------- /wiki/Security-and-Verification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/wiki/Security-and-Verification.md -------------------------------------------------------------------------------- /wiki/Usage-Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/wiki/Usage-Guide.md -------------------------------------------------------------------------------- /wiki/_Sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytexGrid/NeatShift/HEAD/wiki/_Sidebar.md --------------------------------------------------------------------------------