├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml ├── stale.yml └── workflows │ ├── ci.yml │ └── codeql-analysis.yml ├── .gitignore ├── Directory.Build.props ├── Image Sort.svg ├── Image-Sort-Screenshot.gif ├── Image-Sort-Screenshot.png ├── Image-Sort.sln ├── LICENSE ├── README.md ├── appveyor.yml ├── docs ├── CNAME ├── English_get-it-from-MS_InvariantCulture_Default.png ├── _config.yml ├── google1896f4f871f455a4.html ├── help.md ├── help │ └── help.de.md ├── index.md ├── privacy_policy.md ├── ror.xml ├── sitemap.html └── sitemap.xml ├── src ├── ImageSort.Localization │ ├── ImageSort.Localization.csproj │ ├── KeyBindingNames.Designer.cs │ ├── KeyBindingNames.de-DE.resx │ ├── KeyBindingNames.resx │ ├── Text.Designer.cs │ ├── Text.de-DE.resx │ └── Text.resx ├── ImageSort.MSIX │ ├── ImageSort.MSIX.wapproj │ ├── Images │ │ ├── LargeTile.scale-100.png │ │ ├── LargeTile.scale-125.png │ │ ├── LargeTile.scale-150.png │ │ ├── LargeTile.scale-200.png │ │ ├── LargeTile.scale-400.png │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SmallTile.scale-100.png │ │ ├── SmallTile.scale-125.png │ │ ├── SmallTile.scale-150.png │ │ ├── SmallTile.scale-200.png │ │ ├── SmallTile.scale-400.png │ │ ├── SplashScreen.scale-100.png │ │ ├── SplashScreen.scale-125.png │ │ ├── SplashScreen.scale-150.png │ │ ├── SplashScreen.scale-200.png │ │ ├── SplashScreen.scale-400.png │ │ ├── Square150x150Logo.scale-100.png │ │ ├── Square150x150Logo.scale-125.png │ │ ├── Square150x150Logo.scale-150.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square150x150Logo.scale-400.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-16.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-24.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-256.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-32.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-48.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-32.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ │ ├── Square44x44Logo.scale-100.png │ │ ├── Square44x44Logo.scale-125.png │ │ ├── Square44x44Logo.scale-150.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.scale-400.png │ │ ├── Square44x44Logo.targetsize-16.png │ │ ├── Square44x44Logo.targetsize-24.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-256.png │ │ ├── Square44x44Logo.targetsize-32.png │ │ ├── Square44x44Logo.targetsize-48.png │ │ ├── StoreLogo.backup.png │ │ ├── StoreLogo.scale-100.png │ │ ├── StoreLogo.scale-125.png │ │ ├── StoreLogo.scale-150.png │ │ ├── StoreLogo.scale-200.png │ │ ├── StoreLogo.scale-400.png │ │ ├── Wide310x150Logo.scale-100.png │ │ ├── Wide310x150Logo.scale-125.png │ │ ├── Wide310x150Logo.scale-150.png │ │ ├── Wide310x150Logo.scale-200.png │ │ └── Wide310x150Logo.scale-400.png │ └── Package.appxmanifest ├── ImageSort.WPF │ ├── App.xaml │ ├── App.xaml.cs │ ├── Converters │ │ ├── PathToBitmapImageConverter.cs │ │ └── PathToFilenameConverter.cs │ ├── FileSystem │ │ ├── FileOperationApiWrapper.cs │ │ ├── ImageLoading.cs │ │ └── RecycleBin.cs │ ├── FolderIcons │ │ └── ShellFileLoader.cs │ ├── Icons │ │ ├── Image Sort.ico │ │ └── Image Sort.png │ ├── ImageSort.WPF.csproj │ ├── Interop.Shell32.dll │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── SettingsManagement │ │ ├── GeneralSettingsGroupView.xaml │ │ ├── GeneralSettingsGroupView.xaml.cs │ │ ├── GeneralSettingsGroupViewModel.cs │ │ ├── MetadataPanelSettings.cs │ │ ├── PinnedFolderSettingsViewModel.cs │ │ ├── SettingsHelper.cs │ │ ├── SettingsView.xaml │ │ ├── SettingsView.xaml.cs │ │ ├── ShortCutManagement │ │ │ ├── Hotkey.cs │ │ │ ├── HotkeyEditor.xaml │ │ │ ├── HotkeyEditor.xaml.cs │ │ │ ├── HotkeyEditorControl.xaml │ │ │ ├── HotkeyEditorControl.xaml.cs │ │ │ ├── KeyBindingsSettingsGroupView.xaml │ │ │ ├── KeyBindingsSettingsGroupView.xaml.cs │ │ │ └── KeybindingsSettingsGroupViewModel.cs │ │ └── WindowPosition │ │ │ └── WindowPositionSettingsViewModel.cs │ ├── Styles │ │ ├── Controls.xaml │ │ ├── GroupBox.xaml │ │ └── HotkeyEditor.xaml │ └── Views │ │ ├── ActionsView.xaml │ │ ├── ActionsView.xaml.cs │ │ ├── Credits │ │ ├── CreditsWindow.xaml │ │ ├── CreditsWindow.xaml.cs │ │ ├── UsedLibraryView.xaml │ │ └── UsedLibraryView.xaml.cs │ │ ├── FolderTreeItemView.xaml │ │ ├── FolderTreeItemView.xaml.cs │ │ ├── FoldersView.xaml │ │ ├── FoldersView.xaml.cs │ │ ├── ImagesView.xaml │ │ ├── ImagesView.xaml.cs │ │ ├── InputBox.xaml │ │ ├── InputBox.xaml.cs │ │ ├── Metadata │ │ ├── MetadataFieldView.xaml │ │ ├── MetadataFieldView.xaml.cs │ │ ├── MetadataSectionView.xaml │ │ ├── MetadataSectionView.xaml.cs │ │ ├── MetadataView.xaml │ │ └── MetadataView.xaml.cs │ │ └── WindowHelper.cs ├── ImageSort.WindowsSetup │ ├── Image Sort.ico │ ├── ImageSort.WindowsSetup.wixproj │ ├── License.rtf │ ├── Product.wxs │ ├── delete_explorer_context_menu.bat │ └── exclude-imagesort.exe.xslt ├── ImageSort.WindowsUpdater │ ├── GitHubUpdateFetcher.cs │ ├── ImageSort.WindowsUpdater.csproj │ └── InstallerRunner.cs └── ImageSort │ ├── Actions │ ├── DeleteAction.cs │ ├── IReversibleAction.cs │ ├── MoveAction.cs │ └── RenameAction.cs │ ├── DependencyManagement │ └── DependencyRegistrationHelper.cs │ ├── FileSystem │ ├── FileRestorationNotPossibleException.cs │ ├── FullAccessFileSystem.cs │ ├── FullAccessFileSystemMetadataExtractor.cs │ ├── IFileSystem.cs │ ├── IMetadataExtractor.cs │ └── IRecycleBin.cs │ ├── Helpers │ ├── PathHelper.cs │ └── StringHelper.cs │ ├── ImageSort.csproj │ ├── SettingsManagement │ ├── SettingsGroupViewModelBase.cs │ └── SettingsViewModel.cs │ └── ViewModels │ ├── ActionsViewModel.cs │ ├── FolderTreeItemViewModel.cs │ ├── FoldersViewModel.cs │ ├── ImagesViewModel.cs │ ├── MainViewModel.cs │ └── Metadata │ ├── MetadataFieldViewModel.cs │ ├── MetadataFieldViewModelFactory.cs │ ├── MetadataSectionViewModel.cs │ ├── MetadataSectionViewModelFactory.cs │ └── MetadataViewModel.cs └── tests ├── ImageSort.UnitTests ├── Actions │ ├── DeleteActionTests.cs │ ├── MoveActionTests.cs │ └── RenameActionTests.cs ├── ImageSort.UnitTests.csproj ├── SettingsManagement │ ├── SettingsGroupViewModelBaseTests.cs │ └── SettingsViewModelTests.cs └── ViewModels │ ├── ActionsViewModelTest.cs │ ├── FolderTreeItemViewModelTests.cs │ ├── FoldersViewModelTests.cs │ ├── ImagesViewModelTests.cs │ ├── MainViewModelTests.cs │ └── MetadataViewModelTests.cs └── ImageSort.WPF.UiTests ├── AppCollection.cs ├── AppFixture.cs ├── ControlHelper.cs ├── FileActionsTests.cs ├── FolderActionsTests.cs ├── ImageSort.WPF.UiTests.csproj ├── MockState ├── Subfolder 1 │ ├── Subsubfolder │ │ └── mock in subsubfolder.jpg │ └── mock in subfolder.jpg ├── Subfolder 2 │ └── mock in subfolder 2.jpg ├── mock 1.jpg ├── mock 2.jpg ├── mock 3.jpg ├── mock 4.png ├── mock 5.jpg ├── mock 6.jpg └── mock 7.jpg ├── SearchTests.cs ├── SetupTeardownHelper.cs └── WindowHelper.cs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/.gitignore -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Image Sort.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/Image Sort.svg -------------------------------------------------------------------------------- /Image-Sort-Screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/Image-Sort-Screenshot.gif -------------------------------------------------------------------------------- /Image-Sort-Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/Image-Sort-Screenshot.png -------------------------------------------------------------------------------- /Image-Sort.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/Image-Sort.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/appveyor.yml -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | imagesort.org -------------------------------------------------------------------------------- /docs/English_get-it-from-MS_InvariantCulture_Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/docs/English_get-it-from-MS_InvariantCulture_Default.png -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/google1896f4f871f455a4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/docs/google1896f4f871f455a4.html -------------------------------------------------------------------------------- /docs/help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/docs/help.md -------------------------------------------------------------------------------- /docs/help/help.de.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/docs/help/help.de.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/privacy_policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/docs/privacy_policy.md -------------------------------------------------------------------------------- /docs/ror.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/docs/ror.xml -------------------------------------------------------------------------------- /docs/sitemap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/docs/sitemap.html -------------------------------------------------------------------------------- /docs/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/docs/sitemap.xml -------------------------------------------------------------------------------- /src/ImageSort.Localization/ImageSort.Localization.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.Localization/ImageSort.Localization.csproj -------------------------------------------------------------------------------- /src/ImageSort.Localization/KeyBindingNames.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.Localization/KeyBindingNames.Designer.cs -------------------------------------------------------------------------------- /src/ImageSort.Localization/KeyBindingNames.de-DE.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.Localization/KeyBindingNames.de-DE.resx -------------------------------------------------------------------------------- /src/ImageSort.Localization/KeyBindingNames.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.Localization/KeyBindingNames.resx -------------------------------------------------------------------------------- /src/ImageSort.Localization/Text.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.Localization/Text.Designer.cs -------------------------------------------------------------------------------- /src/ImageSort.Localization/Text.de-DE.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.Localization/Text.de-DE.resx -------------------------------------------------------------------------------- /src/ImageSort.Localization/Text.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.Localization/Text.resx -------------------------------------------------------------------------------- /src/ImageSort.MSIX/ImageSort.MSIX.wapproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/ImageSort.MSIX.wapproj -------------------------------------------------------------------------------- /src/ImageSort.MSIX/Images/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/Images/LargeTile.scale-100.png -------------------------------------------------------------------------------- /src/ImageSort.MSIX/Images/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/Images/LargeTile.scale-125.png -------------------------------------------------------------------------------- /src/ImageSort.MSIX/Images/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/Images/LargeTile.scale-150.png -------------------------------------------------------------------------------- /src/ImageSort.MSIX/Images/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/Images/LargeTile.scale-200.png -------------------------------------------------------------------------------- /src/ImageSort.MSIX/Images/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/Images/LargeTile.scale-400.png -------------------------------------------------------------------------------- /src/ImageSort.MSIX/Images/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/Images/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /src/ImageSort.MSIX/Images/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/Images/SmallTile.scale-100.png -------------------------------------------------------------------------------- /src/ImageSort.MSIX/Images/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/Images/SmallTile.scale-125.png -------------------------------------------------------------------------------- /src/ImageSort.MSIX/Images/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/Images/SmallTile.scale-150.png -------------------------------------------------------------------------------- /src/ImageSort.MSIX/Images/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/Images/SmallTile.scale-200.png -------------------------------------------------------------------------------- /src/ImageSort.MSIX/Images/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/Images/SmallTile.scale-400.png -------------------------------------------------------------------------------- /src/ImageSort.MSIX/Images/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/Images/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /src/ImageSort.MSIX/Images/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/Images/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /src/ImageSort.MSIX/Images/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/Images/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /src/ImageSort.MSIX/Images/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/Images/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /src/ImageSort.MSIX/Images/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/Images/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /src/ImageSort.MSIX/Images/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/Images/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /src/ImageSort.MSIX/Images/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/Images/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /src/ImageSort.MSIX/Images/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/Images/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /src/ImageSort.MSIX/Images/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/Images/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/ImageSort.MSIX/Images/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/Images/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /src/ImageSort.MSIX/Images/Square44x44Logo.altform-lightunplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/Images/Square44x44Logo.altform-lightunplated_targetsize-16.png -------------------------------------------------------------------------------- /src/ImageSort.MSIX/Images/Square44x44Logo.altform-lightunplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/Images/Square44x44Logo.altform-lightunplated_targetsize-24.png -------------------------------------------------------------------------------- /src/ImageSort.MSIX/Images/Square44x44Logo.altform-lightunplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/Images/Square44x44Logo.altform-lightunplated_targetsize-256.png -------------------------------------------------------------------------------- /src/ImageSort.MSIX/Images/Square44x44Logo.altform-lightunplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/Images/Square44x44Logo.altform-lightunplated_targetsize-32.png -------------------------------------------------------------------------------- /src/ImageSort.MSIX/Images/Square44x44Logo.altform-lightunplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/Images/Square44x44Logo.altform-lightunplated_targetsize-48.png -------------------------------------------------------------------------------- /src/ImageSort.MSIX/Images/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/Images/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /src/ImageSort.MSIX/Images/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/Images/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /src/ImageSort.MSIX/Images/Square44x44Logo.altform-unplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/Images/Square44x44Logo.altform-unplated_targetsize-32.png -------------------------------------------------------------------------------- /src/ImageSort.MSIX/Images/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/Images/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /src/ImageSort.MSIX/Images/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/Images/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /src/ImageSort.MSIX/Images/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/Images/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /src/ImageSort.MSIX/Images/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/Images/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /src/ImageSort.MSIX/Images/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/Images/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /src/ImageSort.MSIX/Images/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/Images/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /src/ImageSort.MSIX/Images/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/Images/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /src/ImageSort.MSIX/Images/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/Images/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /src/ImageSort.MSIX/Images/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/Images/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /src/ImageSort.MSIX/Images/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/Images/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /src/ImageSort.MSIX/Images/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/Images/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /src/ImageSort.MSIX/Images/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/Images/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /src/ImageSort.MSIX/Images/StoreLogo.backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/Images/StoreLogo.backup.png -------------------------------------------------------------------------------- /src/ImageSort.MSIX/Images/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/Images/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /src/ImageSort.MSIX/Images/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/Images/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /src/ImageSort.MSIX/Images/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/Images/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /src/ImageSort.MSIX/Images/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/Images/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /src/ImageSort.MSIX/Images/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/Images/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /src/ImageSort.MSIX/Images/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/Images/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /src/ImageSort.MSIX/Images/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/Images/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /src/ImageSort.MSIX/Images/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/Images/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /src/ImageSort.MSIX/Images/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/Images/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/ImageSort.MSIX/Images/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/Images/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /src/ImageSort.MSIX/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.MSIX/Package.appxmanifest -------------------------------------------------------------------------------- /src/ImageSort.WPF/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/App.xaml -------------------------------------------------------------------------------- /src/ImageSort.WPF/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/App.xaml.cs -------------------------------------------------------------------------------- /src/ImageSort.WPF/Converters/PathToBitmapImageConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/Converters/PathToBitmapImageConverter.cs -------------------------------------------------------------------------------- /src/ImageSort.WPF/Converters/PathToFilenameConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/Converters/PathToFilenameConverter.cs -------------------------------------------------------------------------------- /src/ImageSort.WPF/FileSystem/FileOperationApiWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/FileSystem/FileOperationApiWrapper.cs -------------------------------------------------------------------------------- /src/ImageSort.WPF/FileSystem/ImageLoading.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/FileSystem/ImageLoading.cs -------------------------------------------------------------------------------- /src/ImageSort.WPF/FileSystem/RecycleBin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/FileSystem/RecycleBin.cs -------------------------------------------------------------------------------- /src/ImageSort.WPF/FolderIcons/ShellFileLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/FolderIcons/ShellFileLoader.cs -------------------------------------------------------------------------------- /src/ImageSort.WPF/Icons/Image Sort.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/Icons/Image Sort.ico -------------------------------------------------------------------------------- /src/ImageSort.WPF/Icons/Image Sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/Icons/Image Sort.png -------------------------------------------------------------------------------- /src/ImageSort.WPF/ImageSort.WPF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/ImageSort.WPF.csproj -------------------------------------------------------------------------------- /src/ImageSort.WPF/Interop.Shell32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/Interop.Shell32.dll -------------------------------------------------------------------------------- /src/ImageSort.WPF/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/MainWindow.xaml -------------------------------------------------------------------------------- /src/ImageSort.WPF/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/ImageSort.WPF/SettingsManagement/GeneralSettingsGroupView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/SettingsManagement/GeneralSettingsGroupView.xaml -------------------------------------------------------------------------------- /src/ImageSort.WPF/SettingsManagement/GeneralSettingsGroupView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/SettingsManagement/GeneralSettingsGroupView.xaml.cs -------------------------------------------------------------------------------- /src/ImageSort.WPF/SettingsManagement/GeneralSettingsGroupViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/SettingsManagement/GeneralSettingsGroupViewModel.cs -------------------------------------------------------------------------------- /src/ImageSort.WPF/SettingsManagement/MetadataPanelSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/SettingsManagement/MetadataPanelSettings.cs -------------------------------------------------------------------------------- /src/ImageSort.WPF/SettingsManagement/PinnedFolderSettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/SettingsManagement/PinnedFolderSettingsViewModel.cs -------------------------------------------------------------------------------- /src/ImageSort.WPF/SettingsManagement/SettingsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/SettingsManagement/SettingsHelper.cs -------------------------------------------------------------------------------- /src/ImageSort.WPF/SettingsManagement/SettingsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/SettingsManagement/SettingsView.xaml -------------------------------------------------------------------------------- /src/ImageSort.WPF/SettingsManagement/SettingsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/SettingsManagement/SettingsView.xaml.cs -------------------------------------------------------------------------------- /src/ImageSort.WPF/SettingsManagement/ShortCutManagement/Hotkey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/SettingsManagement/ShortCutManagement/Hotkey.cs -------------------------------------------------------------------------------- /src/ImageSort.WPF/SettingsManagement/ShortCutManagement/HotkeyEditor.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/SettingsManagement/ShortCutManagement/HotkeyEditor.xaml -------------------------------------------------------------------------------- /src/ImageSort.WPF/SettingsManagement/ShortCutManagement/HotkeyEditor.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/SettingsManagement/ShortCutManagement/HotkeyEditor.xaml.cs -------------------------------------------------------------------------------- /src/ImageSort.WPF/SettingsManagement/ShortCutManagement/HotkeyEditorControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/SettingsManagement/ShortCutManagement/HotkeyEditorControl.xaml -------------------------------------------------------------------------------- /src/ImageSort.WPF/SettingsManagement/ShortCutManagement/HotkeyEditorControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/SettingsManagement/ShortCutManagement/HotkeyEditorControl.xaml.cs -------------------------------------------------------------------------------- /src/ImageSort.WPF/SettingsManagement/ShortCutManagement/KeyBindingsSettingsGroupView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/SettingsManagement/ShortCutManagement/KeyBindingsSettingsGroupView.xaml -------------------------------------------------------------------------------- /src/ImageSort.WPF/SettingsManagement/ShortCutManagement/KeyBindingsSettingsGroupView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/SettingsManagement/ShortCutManagement/KeyBindingsSettingsGroupView.xaml.cs -------------------------------------------------------------------------------- /src/ImageSort.WPF/SettingsManagement/ShortCutManagement/KeybindingsSettingsGroupViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/SettingsManagement/ShortCutManagement/KeybindingsSettingsGroupViewModel.cs -------------------------------------------------------------------------------- /src/ImageSort.WPF/SettingsManagement/WindowPosition/WindowPositionSettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/SettingsManagement/WindowPosition/WindowPositionSettingsViewModel.cs -------------------------------------------------------------------------------- /src/ImageSort.WPF/Styles/Controls.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/Styles/Controls.xaml -------------------------------------------------------------------------------- /src/ImageSort.WPF/Styles/GroupBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/Styles/GroupBox.xaml -------------------------------------------------------------------------------- /src/ImageSort.WPF/Styles/HotkeyEditor.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/Styles/HotkeyEditor.xaml -------------------------------------------------------------------------------- /src/ImageSort.WPF/Views/ActionsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/Views/ActionsView.xaml -------------------------------------------------------------------------------- /src/ImageSort.WPF/Views/ActionsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/Views/ActionsView.xaml.cs -------------------------------------------------------------------------------- /src/ImageSort.WPF/Views/Credits/CreditsWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/Views/Credits/CreditsWindow.xaml -------------------------------------------------------------------------------- /src/ImageSort.WPF/Views/Credits/CreditsWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/Views/Credits/CreditsWindow.xaml.cs -------------------------------------------------------------------------------- /src/ImageSort.WPF/Views/Credits/UsedLibraryView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/Views/Credits/UsedLibraryView.xaml -------------------------------------------------------------------------------- /src/ImageSort.WPF/Views/Credits/UsedLibraryView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/Views/Credits/UsedLibraryView.xaml.cs -------------------------------------------------------------------------------- /src/ImageSort.WPF/Views/FolderTreeItemView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/Views/FolderTreeItemView.xaml -------------------------------------------------------------------------------- /src/ImageSort.WPF/Views/FolderTreeItemView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/Views/FolderTreeItemView.xaml.cs -------------------------------------------------------------------------------- /src/ImageSort.WPF/Views/FoldersView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/Views/FoldersView.xaml -------------------------------------------------------------------------------- /src/ImageSort.WPF/Views/FoldersView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/Views/FoldersView.xaml.cs -------------------------------------------------------------------------------- /src/ImageSort.WPF/Views/ImagesView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/Views/ImagesView.xaml -------------------------------------------------------------------------------- /src/ImageSort.WPF/Views/ImagesView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/Views/ImagesView.xaml.cs -------------------------------------------------------------------------------- /src/ImageSort.WPF/Views/InputBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/Views/InputBox.xaml -------------------------------------------------------------------------------- /src/ImageSort.WPF/Views/InputBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/Views/InputBox.xaml.cs -------------------------------------------------------------------------------- /src/ImageSort.WPF/Views/Metadata/MetadataFieldView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/Views/Metadata/MetadataFieldView.xaml -------------------------------------------------------------------------------- /src/ImageSort.WPF/Views/Metadata/MetadataFieldView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/Views/Metadata/MetadataFieldView.xaml.cs -------------------------------------------------------------------------------- /src/ImageSort.WPF/Views/Metadata/MetadataSectionView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/Views/Metadata/MetadataSectionView.xaml -------------------------------------------------------------------------------- /src/ImageSort.WPF/Views/Metadata/MetadataSectionView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/Views/Metadata/MetadataSectionView.xaml.cs -------------------------------------------------------------------------------- /src/ImageSort.WPF/Views/Metadata/MetadataView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/Views/Metadata/MetadataView.xaml -------------------------------------------------------------------------------- /src/ImageSort.WPF/Views/Metadata/MetadataView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/Views/Metadata/MetadataView.xaml.cs -------------------------------------------------------------------------------- /src/ImageSort.WPF/Views/WindowHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WPF/Views/WindowHelper.cs -------------------------------------------------------------------------------- /src/ImageSort.WindowsSetup/Image Sort.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WindowsSetup/Image Sort.ico -------------------------------------------------------------------------------- /src/ImageSort.WindowsSetup/ImageSort.WindowsSetup.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WindowsSetup/ImageSort.WindowsSetup.wixproj -------------------------------------------------------------------------------- /src/ImageSort.WindowsSetup/License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WindowsSetup/License.rtf -------------------------------------------------------------------------------- /src/ImageSort.WindowsSetup/Product.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WindowsSetup/Product.wxs -------------------------------------------------------------------------------- /src/ImageSort.WindowsSetup/delete_explorer_context_menu.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WindowsSetup/delete_explorer_context_menu.bat -------------------------------------------------------------------------------- /src/ImageSort.WindowsSetup/exclude-imagesort.exe.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WindowsSetup/exclude-imagesort.exe.xslt -------------------------------------------------------------------------------- /src/ImageSort.WindowsUpdater/GitHubUpdateFetcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WindowsUpdater/GitHubUpdateFetcher.cs -------------------------------------------------------------------------------- /src/ImageSort.WindowsUpdater/ImageSort.WindowsUpdater.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WindowsUpdater/ImageSort.WindowsUpdater.csproj -------------------------------------------------------------------------------- /src/ImageSort.WindowsUpdater/InstallerRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort.WindowsUpdater/InstallerRunner.cs -------------------------------------------------------------------------------- /src/ImageSort/Actions/DeleteAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort/Actions/DeleteAction.cs -------------------------------------------------------------------------------- /src/ImageSort/Actions/IReversibleAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort/Actions/IReversibleAction.cs -------------------------------------------------------------------------------- /src/ImageSort/Actions/MoveAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort/Actions/MoveAction.cs -------------------------------------------------------------------------------- /src/ImageSort/Actions/RenameAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort/Actions/RenameAction.cs -------------------------------------------------------------------------------- /src/ImageSort/DependencyManagement/DependencyRegistrationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort/DependencyManagement/DependencyRegistrationHelper.cs -------------------------------------------------------------------------------- /src/ImageSort/FileSystem/FileRestorationNotPossibleException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort/FileSystem/FileRestorationNotPossibleException.cs -------------------------------------------------------------------------------- /src/ImageSort/FileSystem/FullAccessFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort/FileSystem/FullAccessFileSystem.cs -------------------------------------------------------------------------------- /src/ImageSort/FileSystem/FullAccessFileSystemMetadataExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort/FileSystem/FullAccessFileSystemMetadataExtractor.cs -------------------------------------------------------------------------------- /src/ImageSort/FileSystem/IFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort/FileSystem/IFileSystem.cs -------------------------------------------------------------------------------- /src/ImageSort/FileSystem/IMetadataExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort/FileSystem/IMetadataExtractor.cs -------------------------------------------------------------------------------- /src/ImageSort/FileSystem/IRecycleBin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort/FileSystem/IRecycleBin.cs -------------------------------------------------------------------------------- /src/ImageSort/Helpers/PathHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort/Helpers/PathHelper.cs -------------------------------------------------------------------------------- /src/ImageSort/Helpers/StringHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort/Helpers/StringHelper.cs -------------------------------------------------------------------------------- /src/ImageSort/ImageSort.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort/ImageSort.csproj -------------------------------------------------------------------------------- /src/ImageSort/SettingsManagement/SettingsGroupViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort/SettingsManagement/SettingsGroupViewModelBase.cs -------------------------------------------------------------------------------- /src/ImageSort/SettingsManagement/SettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort/SettingsManagement/SettingsViewModel.cs -------------------------------------------------------------------------------- /src/ImageSort/ViewModels/ActionsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort/ViewModels/ActionsViewModel.cs -------------------------------------------------------------------------------- /src/ImageSort/ViewModels/FolderTreeItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort/ViewModels/FolderTreeItemViewModel.cs -------------------------------------------------------------------------------- /src/ImageSort/ViewModels/FoldersViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort/ViewModels/FoldersViewModel.cs -------------------------------------------------------------------------------- /src/ImageSort/ViewModels/ImagesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort/ViewModels/ImagesViewModel.cs -------------------------------------------------------------------------------- /src/ImageSort/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /src/ImageSort/ViewModels/Metadata/MetadataFieldViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort/ViewModels/Metadata/MetadataFieldViewModel.cs -------------------------------------------------------------------------------- /src/ImageSort/ViewModels/Metadata/MetadataFieldViewModelFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort/ViewModels/Metadata/MetadataFieldViewModelFactory.cs -------------------------------------------------------------------------------- /src/ImageSort/ViewModels/Metadata/MetadataSectionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort/ViewModels/Metadata/MetadataSectionViewModel.cs -------------------------------------------------------------------------------- /src/ImageSort/ViewModels/Metadata/MetadataSectionViewModelFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort/ViewModels/Metadata/MetadataSectionViewModelFactory.cs -------------------------------------------------------------------------------- /src/ImageSort/ViewModels/Metadata/MetadataViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/src/ImageSort/ViewModels/Metadata/MetadataViewModel.cs -------------------------------------------------------------------------------- /tests/ImageSort.UnitTests/Actions/DeleteActionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/tests/ImageSort.UnitTests/Actions/DeleteActionTests.cs -------------------------------------------------------------------------------- /tests/ImageSort.UnitTests/Actions/MoveActionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/tests/ImageSort.UnitTests/Actions/MoveActionTests.cs -------------------------------------------------------------------------------- /tests/ImageSort.UnitTests/Actions/RenameActionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/tests/ImageSort.UnitTests/Actions/RenameActionTests.cs -------------------------------------------------------------------------------- /tests/ImageSort.UnitTests/ImageSort.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/tests/ImageSort.UnitTests/ImageSort.UnitTests.csproj -------------------------------------------------------------------------------- /tests/ImageSort.UnitTests/SettingsManagement/SettingsGroupViewModelBaseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/tests/ImageSort.UnitTests/SettingsManagement/SettingsGroupViewModelBaseTests.cs -------------------------------------------------------------------------------- /tests/ImageSort.UnitTests/SettingsManagement/SettingsViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/tests/ImageSort.UnitTests/SettingsManagement/SettingsViewModelTests.cs -------------------------------------------------------------------------------- /tests/ImageSort.UnitTests/ViewModels/ActionsViewModelTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/tests/ImageSort.UnitTests/ViewModels/ActionsViewModelTest.cs -------------------------------------------------------------------------------- /tests/ImageSort.UnitTests/ViewModels/FolderTreeItemViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/tests/ImageSort.UnitTests/ViewModels/FolderTreeItemViewModelTests.cs -------------------------------------------------------------------------------- /tests/ImageSort.UnitTests/ViewModels/FoldersViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/tests/ImageSort.UnitTests/ViewModels/FoldersViewModelTests.cs -------------------------------------------------------------------------------- /tests/ImageSort.UnitTests/ViewModels/ImagesViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/tests/ImageSort.UnitTests/ViewModels/ImagesViewModelTests.cs -------------------------------------------------------------------------------- /tests/ImageSort.UnitTests/ViewModels/MainViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/tests/ImageSort.UnitTests/ViewModels/MainViewModelTests.cs -------------------------------------------------------------------------------- /tests/ImageSort.UnitTests/ViewModels/MetadataViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/tests/ImageSort.UnitTests/ViewModels/MetadataViewModelTests.cs -------------------------------------------------------------------------------- /tests/ImageSort.WPF.UiTests/AppCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/tests/ImageSort.WPF.UiTests/AppCollection.cs -------------------------------------------------------------------------------- /tests/ImageSort.WPF.UiTests/AppFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/tests/ImageSort.WPF.UiTests/AppFixture.cs -------------------------------------------------------------------------------- /tests/ImageSort.WPF.UiTests/ControlHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/tests/ImageSort.WPF.UiTests/ControlHelper.cs -------------------------------------------------------------------------------- /tests/ImageSort.WPF.UiTests/FileActionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/tests/ImageSort.WPF.UiTests/FileActionsTests.cs -------------------------------------------------------------------------------- /tests/ImageSort.WPF.UiTests/FolderActionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/tests/ImageSort.WPF.UiTests/FolderActionsTests.cs -------------------------------------------------------------------------------- /tests/ImageSort.WPF.UiTests/ImageSort.WPF.UiTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/tests/ImageSort.WPF.UiTests/ImageSort.WPF.UiTests.csproj -------------------------------------------------------------------------------- /tests/ImageSort.WPF.UiTests/MockState/Subfolder 1/Subsubfolder/mock in subsubfolder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/tests/ImageSort.WPF.UiTests/MockState/Subfolder 1/Subsubfolder/mock in subsubfolder.jpg -------------------------------------------------------------------------------- /tests/ImageSort.WPF.UiTests/MockState/Subfolder 1/mock in subfolder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/tests/ImageSort.WPF.UiTests/MockState/Subfolder 1/mock in subfolder.jpg -------------------------------------------------------------------------------- /tests/ImageSort.WPF.UiTests/MockState/Subfolder 2/mock in subfolder 2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/tests/ImageSort.WPF.UiTests/MockState/Subfolder 2/mock in subfolder 2.jpg -------------------------------------------------------------------------------- /tests/ImageSort.WPF.UiTests/MockState/mock 1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/tests/ImageSort.WPF.UiTests/MockState/mock 1.jpg -------------------------------------------------------------------------------- /tests/ImageSort.WPF.UiTests/MockState/mock 2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/tests/ImageSort.WPF.UiTests/MockState/mock 2.jpg -------------------------------------------------------------------------------- /tests/ImageSort.WPF.UiTests/MockState/mock 3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/tests/ImageSort.WPF.UiTests/MockState/mock 3.jpg -------------------------------------------------------------------------------- /tests/ImageSort.WPF.UiTests/MockState/mock 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/tests/ImageSort.WPF.UiTests/MockState/mock 4.png -------------------------------------------------------------------------------- /tests/ImageSort.WPF.UiTests/MockState/mock 5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/tests/ImageSort.WPF.UiTests/MockState/mock 5.jpg -------------------------------------------------------------------------------- /tests/ImageSort.WPF.UiTests/MockState/mock 6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/tests/ImageSort.WPF.UiTests/MockState/mock 6.jpg -------------------------------------------------------------------------------- /tests/ImageSort.WPF.UiTests/MockState/mock 7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/tests/ImageSort.WPF.UiTests/MockState/mock 7.jpg -------------------------------------------------------------------------------- /tests/ImageSort.WPF.UiTests/SearchTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/tests/ImageSort.WPF.UiTests/SearchTests.cs -------------------------------------------------------------------------------- /tests/ImageSort.WPF.UiTests/SetupTeardownHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/tests/ImageSort.WPF.UiTests/SetupTeardownHelper.cs -------------------------------------------------------------------------------- /tests/ImageSort.WPF.UiTests/WindowHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lolle2000la/Image-Sort/HEAD/tests/ImageSort.WPF.UiTests/WindowHelper.cs --------------------------------------------------------------------------------