├── .gitignore ├── README.md └── src ├── SorterExpress.sln └── SorterExpress ├── App.config ├── AssemblyInfo.cs ├── Classes ├── Actions │ ├── Action.cs │ ├── DuplicateActions │ │ ├── DeleteBothSides.cs │ │ ├── DuplicateAction.cs │ │ ├── IgnoreSide.cs │ │ ├── KeepSide.cs │ │ ├── RemovedDuplicate.cs │ │ └── Skip.cs │ └── SortActions │ │ ├── Delete.cs │ │ ├── Move.cs │ │ └── SortAction.cs ├── Duplicate.cs ├── EnumHelper.cs ├── FFMPEGProcess.cs ├── FFProbeProcess.cs ├── FFWorker.cs ├── FileDetails.cs ├── FilePrint.cs ├── FileType.cs ├── IgnoreType.cs ├── Logs.cs ├── Prefs.cs ├── RBindingList.cs ├── Settings │ ├── DuplicateSearchSettings.cs │ ├── Settings.cs │ ├── SorterExpressSettings.cs │ ├── Subfolder.cs │ └── VideoSettings.cs ├── Shortcut.cs ├── Side.cs ├── SortableBindingList │ ├── PropertyComparer.cs │ └── SortableBindingList.cs └── SubfolderInfo.cs ├── Controllers ├── DuplicatesFormController.cs └── SortController.cs ├── Controls ├── LoadingPanel.Designer.cs ├── LoadingPanel.cs ├── LoadingPanel.resx ├── MediaViewer.Designer.cs ├── MediaViewer.cs ├── MediaViewer.resx ├── ScrollPanel.cs ├── ScrollingListBox.cs ├── ScrollingListBox.resx ├── SubfolderButton.cs ├── SubfolderPanel.Designer.cs ├── SubfolderPanel.cs ├── SubfolderPanel.resx ├── TagPanel.Designer.cs ├── TagPanel.cs ├── TagPanel.resx ├── UpdateView.Designer.cs ├── UpdateView.cs ├── UpdateView.resx └── VideoPositionTrackBar.cs ├── Forms ├── AddDirectoryForm.Designer.cs ├── AddDirectoryForm.cs ├── AddDirectoryForm.resx ├── AllInOneForm.Designer.cs ├── AllInOneForm.cs ├── AllInOneForm.resx ├── DuplicateSearchIgnoredForm.Designer.cs ├── DuplicateSearchIgnoredForm.cs ├── DuplicateSearchIgnoredForm.resx ├── DuplicatesForm.Designer.cs ├── DuplicatesForm.cs ├── DuplicatesForm.resx ├── DuplicatesMassOperationForm.Designer.cs ├── DuplicatesMassOperationForm.cs ├── DuplicatesMassOperationForm.resx ├── GetStringMessageBox.Designer.cs ├── GetStringMessageBox.cs ├── GetStringMessageBox.resx ├── LocateVLCForm.Designer.cs ├── LocateVLCForm.cs ├── LocateVLCForm.resx ├── MassTagForm.Designer.cs ├── MassTagForm.cs ├── MassTagForm.resx ├── RenameTagForm.Designer.cs ├── RenameTagForm.cs ├── RenameTagForm.resx ├── SettingsForm.Designer.cs ├── SettingsForm.cs ├── SettingsForm.resx ├── SortForm.Designer.cs ├── SortForm.cs ├── Sortform.resx ├── TagsListForm.Designer.cs ├── TagsListForm.cs ├── TagsListForm.resx ├── ViewForm.Designer.cs ├── ViewForm.cs ├── ViewForm.resx ├── WelcomeForm.Designer.cs ├── WelcomeForm.cs └── WelcomeForm.resx ├── Icon2Blue.ico ├── Icon3Blue.ico ├── IconOld.ico ├── Icons ├── alert.png ├── clipboard.png ├── close.png ├── down.png ├── file-grey.png ├── file.png ├── folder-grey.png ├── folder.png ├── question.png ├── rename.png ├── settings-wrench.png └── world.png ├── ImageExtensions.cs ├── MACTrackBarLib.dll ├── Models └── DuplicatesFormModel.cs ├── Program.cs ├── Properties ├── DataSources │ ├── SorterExpress.Controllers.DuplicatesFormModel.datasource │ ├── SorterExpress.Controllers.DuplicatesFormModel1.datasource │ ├── SorterExpress.Controllers.SortController.datasource │ ├── SorterExpress.Controls.LoadingPanel.datasource │ ├── SorterExpress.Controls.MediaViewer.datasource │ └── SorterExpress.Forms.TagsListModel.datasource ├── PublishProfiles │ └── FolderProfile.pubxml ├── Resources.Designer.cs └── Resources.resx ├── RemoveContextMenuOptions.reg ├── SetupContextMenuOptionsTemplate.reg ├── SorterExpress.csproj ├── Todo List and Notes.txt ├── Utilities.cs ├── ffmpeg.exe └── ffprobe.exe /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/README.md -------------------------------------------------------------------------------- /src/SorterExpress.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress.sln -------------------------------------------------------------------------------- /src/SorterExpress/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/App.config -------------------------------------------------------------------------------- /src/SorterExpress/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/SorterExpress/Classes/Actions/Action.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Classes/Actions/Action.cs -------------------------------------------------------------------------------- /src/SorterExpress/Classes/Actions/DuplicateActions/DeleteBothSides.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Classes/Actions/DuplicateActions/DeleteBothSides.cs -------------------------------------------------------------------------------- /src/SorterExpress/Classes/Actions/DuplicateActions/DuplicateAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Classes/Actions/DuplicateActions/DuplicateAction.cs -------------------------------------------------------------------------------- /src/SorterExpress/Classes/Actions/DuplicateActions/IgnoreSide.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Classes/Actions/DuplicateActions/IgnoreSide.cs -------------------------------------------------------------------------------- /src/SorterExpress/Classes/Actions/DuplicateActions/KeepSide.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Classes/Actions/DuplicateActions/KeepSide.cs -------------------------------------------------------------------------------- /src/SorterExpress/Classes/Actions/DuplicateActions/RemovedDuplicate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Classes/Actions/DuplicateActions/RemovedDuplicate.cs -------------------------------------------------------------------------------- /src/SorterExpress/Classes/Actions/DuplicateActions/Skip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Classes/Actions/DuplicateActions/Skip.cs -------------------------------------------------------------------------------- /src/SorterExpress/Classes/Actions/SortActions/Delete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Classes/Actions/SortActions/Delete.cs -------------------------------------------------------------------------------- /src/SorterExpress/Classes/Actions/SortActions/Move.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Classes/Actions/SortActions/Move.cs -------------------------------------------------------------------------------- /src/SorterExpress/Classes/Actions/SortActions/SortAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Classes/Actions/SortActions/SortAction.cs -------------------------------------------------------------------------------- /src/SorterExpress/Classes/Duplicate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Classes/Duplicate.cs -------------------------------------------------------------------------------- /src/SorterExpress/Classes/EnumHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Classes/EnumHelper.cs -------------------------------------------------------------------------------- /src/SorterExpress/Classes/FFMPEGProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Classes/FFMPEGProcess.cs -------------------------------------------------------------------------------- /src/SorterExpress/Classes/FFProbeProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Classes/FFProbeProcess.cs -------------------------------------------------------------------------------- /src/SorterExpress/Classes/FFWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Classes/FFWorker.cs -------------------------------------------------------------------------------- /src/SorterExpress/Classes/FileDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Classes/FileDetails.cs -------------------------------------------------------------------------------- /src/SorterExpress/Classes/FilePrint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Classes/FilePrint.cs -------------------------------------------------------------------------------- /src/SorterExpress/Classes/FileType.cs: -------------------------------------------------------------------------------- 1 | namespace SorterExpress 2 | { 3 | public enum FileType { Image, Video, Other }; 4 | } 5 | -------------------------------------------------------------------------------- /src/SorterExpress/Classes/IgnoreType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Classes/IgnoreType.cs -------------------------------------------------------------------------------- /src/SorterExpress/Classes/Logs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Classes/Logs.cs -------------------------------------------------------------------------------- /src/SorterExpress/Classes/Prefs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Classes/Prefs.cs -------------------------------------------------------------------------------- /src/SorterExpress/Classes/RBindingList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Classes/RBindingList.cs -------------------------------------------------------------------------------- /src/SorterExpress/Classes/Settings/DuplicateSearchSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Classes/Settings/DuplicateSearchSettings.cs -------------------------------------------------------------------------------- /src/SorterExpress/Classes/Settings/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Classes/Settings/Settings.cs -------------------------------------------------------------------------------- /src/SorterExpress/Classes/Settings/SorterExpressSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Classes/Settings/SorterExpressSettings.cs -------------------------------------------------------------------------------- /src/SorterExpress/Classes/Settings/Subfolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Classes/Settings/Subfolder.cs -------------------------------------------------------------------------------- /src/SorterExpress/Classes/Settings/VideoSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Classes/Settings/VideoSettings.cs -------------------------------------------------------------------------------- /src/SorterExpress/Classes/Shortcut.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Classes/Shortcut.cs -------------------------------------------------------------------------------- /src/SorterExpress/Classes/Side.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Classes/Side.cs -------------------------------------------------------------------------------- /src/SorterExpress/Classes/SortableBindingList/PropertyComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Classes/SortableBindingList/PropertyComparer.cs -------------------------------------------------------------------------------- /src/SorterExpress/Classes/SortableBindingList/SortableBindingList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Classes/SortableBindingList/SortableBindingList.cs -------------------------------------------------------------------------------- /src/SorterExpress/Classes/SubfolderInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Classes/SubfolderInfo.cs -------------------------------------------------------------------------------- /src/SorterExpress/Controllers/DuplicatesFormController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Controllers/DuplicatesFormController.cs -------------------------------------------------------------------------------- /src/SorterExpress/Controllers/SortController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Controllers/SortController.cs -------------------------------------------------------------------------------- /src/SorterExpress/Controls/LoadingPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Controls/LoadingPanel.Designer.cs -------------------------------------------------------------------------------- /src/SorterExpress/Controls/LoadingPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Controls/LoadingPanel.cs -------------------------------------------------------------------------------- /src/SorterExpress/Controls/LoadingPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Controls/LoadingPanel.resx -------------------------------------------------------------------------------- /src/SorterExpress/Controls/MediaViewer.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Controls/MediaViewer.Designer.cs -------------------------------------------------------------------------------- /src/SorterExpress/Controls/MediaViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Controls/MediaViewer.cs -------------------------------------------------------------------------------- /src/SorterExpress/Controls/MediaViewer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Controls/MediaViewer.resx -------------------------------------------------------------------------------- /src/SorterExpress/Controls/ScrollPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Controls/ScrollPanel.cs -------------------------------------------------------------------------------- /src/SorterExpress/Controls/ScrollingListBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Controls/ScrollingListBox.cs -------------------------------------------------------------------------------- /src/SorterExpress/Controls/ScrollingListBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Controls/ScrollingListBox.resx -------------------------------------------------------------------------------- /src/SorterExpress/Controls/SubfolderButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Controls/SubfolderButton.cs -------------------------------------------------------------------------------- /src/SorterExpress/Controls/SubfolderPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Controls/SubfolderPanel.Designer.cs -------------------------------------------------------------------------------- /src/SorterExpress/Controls/SubfolderPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Controls/SubfolderPanel.cs -------------------------------------------------------------------------------- /src/SorterExpress/Controls/SubfolderPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Controls/SubfolderPanel.resx -------------------------------------------------------------------------------- /src/SorterExpress/Controls/TagPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Controls/TagPanel.Designer.cs -------------------------------------------------------------------------------- /src/SorterExpress/Controls/TagPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Controls/TagPanel.cs -------------------------------------------------------------------------------- /src/SorterExpress/Controls/TagPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Controls/TagPanel.resx -------------------------------------------------------------------------------- /src/SorterExpress/Controls/UpdateView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Controls/UpdateView.Designer.cs -------------------------------------------------------------------------------- /src/SorterExpress/Controls/UpdateView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Controls/UpdateView.cs -------------------------------------------------------------------------------- /src/SorterExpress/Controls/UpdateView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Controls/UpdateView.resx -------------------------------------------------------------------------------- /src/SorterExpress/Controls/VideoPositionTrackBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Controls/VideoPositionTrackBar.cs -------------------------------------------------------------------------------- /src/SorterExpress/Forms/AddDirectoryForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Forms/AddDirectoryForm.Designer.cs -------------------------------------------------------------------------------- /src/SorterExpress/Forms/AddDirectoryForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Forms/AddDirectoryForm.cs -------------------------------------------------------------------------------- /src/SorterExpress/Forms/AddDirectoryForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Forms/AddDirectoryForm.resx -------------------------------------------------------------------------------- /src/SorterExpress/Forms/AllInOneForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Forms/AllInOneForm.Designer.cs -------------------------------------------------------------------------------- /src/SorterExpress/Forms/AllInOneForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Forms/AllInOneForm.cs -------------------------------------------------------------------------------- /src/SorterExpress/Forms/AllInOneForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Forms/AllInOneForm.resx -------------------------------------------------------------------------------- /src/SorterExpress/Forms/DuplicateSearchIgnoredForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Forms/DuplicateSearchIgnoredForm.Designer.cs -------------------------------------------------------------------------------- /src/SorterExpress/Forms/DuplicateSearchIgnoredForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Forms/DuplicateSearchIgnoredForm.cs -------------------------------------------------------------------------------- /src/SorterExpress/Forms/DuplicateSearchIgnoredForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Forms/DuplicateSearchIgnoredForm.resx -------------------------------------------------------------------------------- /src/SorterExpress/Forms/DuplicatesForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Forms/DuplicatesForm.Designer.cs -------------------------------------------------------------------------------- /src/SorterExpress/Forms/DuplicatesForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Forms/DuplicatesForm.cs -------------------------------------------------------------------------------- /src/SorterExpress/Forms/DuplicatesForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Forms/DuplicatesForm.resx -------------------------------------------------------------------------------- /src/SorterExpress/Forms/DuplicatesMassOperationForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Forms/DuplicatesMassOperationForm.Designer.cs -------------------------------------------------------------------------------- /src/SorterExpress/Forms/DuplicatesMassOperationForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Forms/DuplicatesMassOperationForm.cs -------------------------------------------------------------------------------- /src/SorterExpress/Forms/DuplicatesMassOperationForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Forms/DuplicatesMassOperationForm.resx -------------------------------------------------------------------------------- /src/SorterExpress/Forms/GetStringMessageBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Forms/GetStringMessageBox.Designer.cs -------------------------------------------------------------------------------- /src/SorterExpress/Forms/GetStringMessageBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Forms/GetStringMessageBox.cs -------------------------------------------------------------------------------- /src/SorterExpress/Forms/GetStringMessageBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Forms/GetStringMessageBox.resx -------------------------------------------------------------------------------- /src/SorterExpress/Forms/LocateVLCForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Forms/LocateVLCForm.Designer.cs -------------------------------------------------------------------------------- /src/SorterExpress/Forms/LocateVLCForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Forms/LocateVLCForm.cs -------------------------------------------------------------------------------- /src/SorterExpress/Forms/LocateVLCForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Forms/LocateVLCForm.resx -------------------------------------------------------------------------------- /src/SorterExpress/Forms/MassTagForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Forms/MassTagForm.Designer.cs -------------------------------------------------------------------------------- /src/SorterExpress/Forms/MassTagForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Forms/MassTagForm.cs -------------------------------------------------------------------------------- /src/SorterExpress/Forms/MassTagForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Forms/MassTagForm.resx -------------------------------------------------------------------------------- /src/SorterExpress/Forms/RenameTagForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Forms/RenameTagForm.Designer.cs -------------------------------------------------------------------------------- /src/SorterExpress/Forms/RenameTagForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Forms/RenameTagForm.cs -------------------------------------------------------------------------------- /src/SorterExpress/Forms/RenameTagForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Forms/RenameTagForm.resx -------------------------------------------------------------------------------- /src/SorterExpress/Forms/SettingsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Forms/SettingsForm.Designer.cs -------------------------------------------------------------------------------- /src/SorterExpress/Forms/SettingsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Forms/SettingsForm.cs -------------------------------------------------------------------------------- /src/SorterExpress/Forms/SettingsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Forms/SettingsForm.resx -------------------------------------------------------------------------------- /src/SorterExpress/Forms/SortForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Forms/SortForm.Designer.cs -------------------------------------------------------------------------------- /src/SorterExpress/Forms/SortForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Forms/SortForm.cs -------------------------------------------------------------------------------- /src/SorterExpress/Forms/Sortform.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Forms/Sortform.resx -------------------------------------------------------------------------------- /src/SorterExpress/Forms/TagsListForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Forms/TagsListForm.Designer.cs -------------------------------------------------------------------------------- /src/SorterExpress/Forms/TagsListForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Forms/TagsListForm.cs -------------------------------------------------------------------------------- /src/SorterExpress/Forms/TagsListForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Forms/TagsListForm.resx -------------------------------------------------------------------------------- /src/SorterExpress/Forms/ViewForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Forms/ViewForm.Designer.cs -------------------------------------------------------------------------------- /src/SorterExpress/Forms/ViewForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Forms/ViewForm.cs -------------------------------------------------------------------------------- /src/SorterExpress/Forms/ViewForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Forms/ViewForm.resx -------------------------------------------------------------------------------- /src/SorterExpress/Forms/WelcomeForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Forms/WelcomeForm.Designer.cs -------------------------------------------------------------------------------- /src/SorterExpress/Forms/WelcomeForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Forms/WelcomeForm.cs -------------------------------------------------------------------------------- /src/SorterExpress/Forms/WelcomeForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Forms/WelcomeForm.resx -------------------------------------------------------------------------------- /src/SorterExpress/Icon2Blue.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Icon2Blue.ico -------------------------------------------------------------------------------- /src/SorterExpress/Icon3Blue.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Icon3Blue.ico -------------------------------------------------------------------------------- /src/SorterExpress/IconOld.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/IconOld.ico -------------------------------------------------------------------------------- /src/SorterExpress/Icons/alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Icons/alert.png -------------------------------------------------------------------------------- /src/SorterExpress/Icons/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Icons/clipboard.png -------------------------------------------------------------------------------- /src/SorterExpress/Icons/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Icons/close.png -------------------------------------------------------------------------------- /src/SorterExpress/Icons/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Icons/down.png -------------------------------------------------------------------------------- /src/SorterExpress/Icons/file-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Icons/file-grey.png -------------------------------------------------------------------------------- /src/SorterExpress/Icons/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Icons/file.png -------------------------------------------------------------------------------- /src/SorterExpress/Icons/folder-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Icons/folder-grey.png -------------------------------------------------------------------------------- /src/SorterExpress/Icons/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Icons/folder.png -------------------------------------------------------------------------------- /src/SorterExpress/Icons/question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Icons/question.png -------------------------------------------------------------------------------- /src/SorterExpress/Icons/rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Icons/rename.png -------------------------------------------------------------------------------- /src/SorterExpress/Icons/settings-wrench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Icons/settings-wrench.png -------------------------------------------------------------------------------- /src/SorterExpress/Icons/world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Icons/world.png -------------------------------------------------------------------------------- /src/SorterExpress/ImageExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/ImageExtensions.cs -------------------------------------------------------------------------------- /src/SorterExpress/MACTrackBarLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/MACTrackBarLib.dll -------------------------------------------------------------------------------- /src/SorterExpress/Models/DuplicatesFormModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Models/DuplicatesFormModel.cs -------------------------------------------------------------------------------- /src/SorterExpress/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Program.cs -------------------------------------------------------------------------------- /src/SorterExpress/Properties/DataSources/SorterExpress.Controllers.DuplicatesFormModel.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Properties/DataSources/SorterExpress.Controllers.DuplicatesFormModel.datasource -------------------------------------------------------------------------------- /src/SorterExpress/Properties/DataSources/SorterExpress.Controllers.DuplicatesFormModel1.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Properties/DataSources/SorterExpress.Controllers.DuplicatesFormModel1.datasource -------------------------------------------------------------------------------- /src/SorterExpress/Properties/DataSources/SorterExpress.Controllers.SortController.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Properties/DataSources/SorterExpress.Controllers.SortController.datasource -------------------------------------------------------------------------------- /src/SorterExpress/Properties/DataSources/SorterExpress.Controls.LoadingPanel.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Properties/DataSources/SorterExpress.Controls.LoadingPanel.datasource -------------------------------------------------------------------------------- /src/SorterExpress/Properties/DataSources/SorterExpress.Controls.MediaViewer.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Properties/DataSources/SorterExpress.Controls.MediaViewer.datasource -------------------------------------------------------------------------------- /src/SorterExpress/Properties/DataSources/SorterExpress.Forms.TagsListModel.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Properties/DataSources/SorterExpress.Forms.TagsListModel.datasource -------------------------------------------------------------------------------- /src/SorterExpress/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Properties/PublishProfiles/FolderProfile.pubxml -------------------------------------------------------------------------------- /src/SorterExpress/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/SorterExpress/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Properties/Resources.resx -------------------------------------------------------------------------------- /src/SorterExpress/RemoveContextMenuOptions.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | [-HKEY_CLASSES_ROOT\Directory\Background\shell\SorterExpress] -------------------------------------------------------------------------------- /src/SorterExpress/SetupContextMenuOptionsTemplate.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/SetupContextMenuOptionsTemplate.reg -------------------------------------------------------------------------------- /src/SorterExpress/SorterExpress.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/SorterExpress.csproj -------------------------------------------------------------------------------- /src/SorterExpress/Todo List and Notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Todo List and Notes.txt -------------------------------------------------------------------------------- /src/SorterExpress/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/Utilities.cs -------------------------------------------------------------------------------- /src/SorterExpress/ffmpeg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/ffmpeg.exe -------------------------------------------------------------------------------- /src/SorterExpress/ffprobe.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Issung/SorterExpress/HEAD/src/SorterExpress/ffprobe.exe --------------------------------------------------------------------------------