├── .gitattributes ├── .gitignore ├── Examples └── DragAndDropToDownload │ ├── DragAndDropToDownload.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── DragAndDropToDownload.xcworkspace │ └── contents.xcworkspacedata │ ├── DragAndDropToDownload │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ └── Main.storyboard │ ├── DragAndDropToDownload.entitlements │ ├── DragView.h │ ├── DragView.m │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m │ ├── Podfile │ ├── Podfile.lock │ └── Pods │ ├── Headers │ ├── Private │ │ └── MPOFinderFileDownloader │ │ │ ├── MPOFileDownloading.h │ │ │ ├── MPOFinderFileDownloadStatusUpdater.h │ │ │ ├── MPOFinderFileDownloader.h │ │ │ ├── MPOSimpleFileDownloader.h │ │ │ └── MPOThroughputHistory.h │ └── Public │ │ └── MPOFinderFileDownloader │ │ ├── MPOFileDownloading.h │ │ ├── MPOFinderFileDownloadStatusUpdater.h │ │ ├── MPOFinderFileDownloader.h │ │ ├── MPOSimpleFileDownloader.h │ │ └── MPOThroughputHistory.h │ ├── Local Podspecs │ └── MPOFinderFileDownloader.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ └── project.pbxproj │ └── Target Support Files │ ├── MPOFinderFileDownloader │ ├── MPOFinderFileDownloader-dummy.m │ ├── MPOFinderFileDownloader-prefix.pch │ └── MPOFinderFileDownloader.xcconfig │ └── Pods-DragAndDropToDownload │ ├── Pods-DragAndDropToDownload-acknowledgements.markdown │ ├── Pods-DragAndDropToDownload-acknowledgements.plist │ ├── Pods-DragAndDropToDownload-dummy.m │ ├── Pods-DragAndDropToDownload-frameworks.sh │ ├── Pods-DragAndDropToDownload-resources.sh │ ├── Pods-DragAndDropToDownload.debug.xcconfig │ └── Pods-DragAndDropToDownload.release.xcconfig ├── LICENSE ├── MPOFinderFileDownloader.podspec ├── MPOFinderFileDownloader ├── MPOFileDownloading.h ├── MPOFinderFileDownloadStatusUpdater.h ├── MPOFinderFileDownloadStatusUpdater.m ├── MPOFinderFileDownloader.h ├── MPOFinderFileDownloader.m ├── MPOSimpleFileDownloader.h ├── MPOSimpleFileDownloader.m ├── MPOThroughputHistory.h └── MPOThroughputHistory.m ├── README.md └── screenshot.gif /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naituw/MPOFinderFileDownloader/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naituw/MPOFinderFileDownloader/HEAD/.gitignore -------------------------------------------------------------------------------- /Examples/DragAndDropToDownload/DragAndDropToDownload.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naituw/MPOFinderFileDownloader/HEAD/Examples/DragAndDropToDownload/DragAndDropToDownload.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/DragAndDropToDownload/DragAndDropToDownload.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naituw/MPOFinderFileDownloader/HEAD/Examples/DragAndDropToDownload/DragAndDropToDownload.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/DragAndDropToDownload/DragAndDropToDownload.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naituw/MPOFinderFileDownloader/HEAD/Examples/DragAndDropToDownload/DragAndDropToDownload.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/DragAndDropToDownload/DragAndDropToDownload/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naituw/MPOFinderFileDownloader/HEAD/Examples/DragAndDropToDownload/DragAndDropToDownload/AppDelegate.h -------------------------------------------------------------------------------- /Examples/DragAndDropToDownload/DragAndDropToDownload/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naituw/MPOFinderFileDownloader/HEAD/Examples/DragAndDropToDownload/DragAndDropToDownload/AppDelegate.m -------------------------------------------------------------------------------- /Examples/DragAndDropToDownload/DragAndDropToDownload/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naituw/MPOFinderFileDownloader/HEAD/Examples/DragAndDropToDownload/DragAndDropToDownload/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/DragAndDropToDownload/DragAndDropToDownload/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naituw/MPOFinderFileDownloader/HEAD/Examples/DragAndDropToDownload/DragAndDropToDownload/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Examples/DragAndDropToDownload/DragAndDropToDownload/DragAndDropToDownload.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naituw/MPOFinderFileDownloader/HEAD/Examples/DragAndDropToDownload/DragAndDropToDownload/DragAndDropToDownload.entitlements -------------------------------------------------------------------------------- /Examples/DragAndDropToDownload/DragAndDropToDownload/DragView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naituw/MPOFinderFileDownloader/HEAD/Examples/DragAndDropToDownload/DragAndDropToDownload/DragView.h -------------------------------------------------------------------------------- /Examples/DragAndDropToDownload/DragAndDropToDownload/DragView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naituw/MPOFinderFileDownloader/HEAD/Examples/DragAndDropToDownload/DragAndDropToDownload/DragView.m -------------------------------------------------------------------------------- /Examples/DragAndDropToDownload/DragAndDropToDownload/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naituw/MPOFinderFileDownloader/HEAD/Examples/DragAndDropToDownload/DragAndDropToDownload/Info.plist -------------------------------------------------------------------------------- /Examples/DragAndDropToDownload/DragAndDropToDownload/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naituw/MPOFinderFileDownloader/HEAD/Examples/DragAndDropToDownload/DragAndDropToDownload/ViewController.h -------------------------------------------------------------------------------- /Examples/DragAndDropToDownload/DragAndDropToDownload/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naituw/MPOFinderFileDownloader/HEAD/Examples/DragAndDropToDownload/DragAndDropToDownload/ViewController.m -------------------------------------------------------------------------------- /Examples/DragAndDropToDownload/DragAndDropToDownload/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naituw/MPOFinderFileDownloader/HEAD/Examples/DragAndDropToDownload/DragAndDropToDownload/main.m -------------------------------------------------------------------------------- /Examples/DragAndDropToDownload/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naituw/MPOFinderFileDownloader/HEAD/Examples/DragAndDropToDownload/Podfile -------------------------------------------------------------------------------- /Examples/DragAndDropToDownload/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naituw/MPOFinderFileDownloader/HEAD/Examples/DragAndDropToDownload/Podfile.lock -------------------------------------------------------------------------------- /Examples/DragAndDropToDownload/Pods/Headers/Private/MPOFinderFileDownloader/MPOFileDownloading.h: -------------------------------------------------------------------------------- 1 | ../../../../../../MPOFinderFileDownloader/MPOFileDownloading.h -------------------------------------------------------------------------------- /Examples/DragAndDropToDownload/Pods/Headers/Private/MPOFinderFileDownloader/MPOFinderFileDownloadStatusUpdater.h: -------------------------------------------------------------------------------- 1 | ../../../../../../MPOFinderFileDownloader/MPOFinderFileDownloadStatusUpdater.h -------------------------------------------------------------------------------- /Examples/DragAndDropToDownload/Pods/Headers/Private/MPOFinderFileDownloader/MPOFinderFileDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../../../../MPOFinderFileDownloader/MPOFinderFileDownloader.h -------------------------------------------------------------------------------- /Examples/DragAndDropToDownload/Pods/Headers/Private/MPOFinderFileDownloader/MPOSimpleFileDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../../../../MPOFinderFileDownloader/MPOSimpleFileDownloader.h -------------------------------------------------------------------------------- /Examples/DragAndDropToDownload/Pods/Headers/Private/MPOFinderFileDownloader/MPOThroughputHistory.h: -------------------------------------------------------------------------------- 1 | ../../../../../../MPOFinderFileDownloader/MPOThroughputHistory.h -------------------------------------------------------------------------------- /Examples/DragAndDropToDownload/Pods/Headers/Public/MPOFinderFileDownloader/MPOFileDownloading.h: -------------------------------------------------------------------------------- 1 | ../../../../../../MPOFinderFileDownloader/MPOFileDownloading.h -------------------------------------------------------------------------------- /Examples/DragAndDropToDownload/Pods/Headers/Public/MPOFinderFileDownloader/MPOFinderFileDownloadStatusUpdater.h: -------------------------------------------------------------------------------- 1 | ../../../../../../MPOFinderFileDownloader/MPOFinderFileDownloadStatusUpdater.h -------------------------------------------------------------------------------- /Examples/DragAndDropToDownload/Pods/Headers/Public/MPOFinderFileDownloader/MPOFinderFileDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../../../../MPOFinderFileDownloader/MPOFinderFileDownloader.h -------------------------------------------------------------------------------- /Examples/DragAndDropToDownload/Pods/Headers/Public/MPOFinderFileDownloader/MPOSimpleFileDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../../../../MPOFinderFileDownloader/MPOSimpleFileDownloader.h -------------------------------------------------------------------------------- /Examples/DragAndDropToDownload/Pods/Headers/Public/MPOFinderFileDownloader/MPOThroughputHistory.h: -------------------------------------------------------------------------------- 1 | ../../../../../../MPOFinderFileDownloader/MPOThroughputHistory.h -------------------------------------------------------------------------------- /Examples/DragAndDropToDownload/Pods/Local Podspecs/MPOFinderFileDownloader.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naituw/MPOFinderFileDownloader/HEAD/Examples/DragAndDropToDownload/Pods/Local Podspecs/MPOFinderFileDownloader.podspec.json -------------------------------------------------------------------------------- /Examples/DragAndDropToDownload/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naituw/MPOFinderFileDownloader/HEAD/Examples/DragAndDropToDownload/Pods/Manifest.lock -------------------------------------------------------------------------------- /Examples/DragAndDropToDownload/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naituw/MPOFinderFileDownloader/HEAD/Examples/DragAndDropToDownload/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/DragAndDropToDownload/Pods/Target Support Files/MPOFinderFileDownloader/MPOFinderFileDownloader-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naituw/MPOFinderFileDownloader/HEAD/Examples/DragAndDropToDownload/Pods/Target Support Files/MPOFinderFileDownloader/MPOFinderFileDownloader-dummy.m -------------------------------------------------------------------------------- /Examples/DragAndDropToDownload/Pods/Target Support Files/MPOFinderFileDownloader/MPOFinderFileDownloader-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naituw/MPOFinderFileDownloader/HEAD/Examples/DragAndDropToDownload/Pods/Target Support Files/MPOFinderFileDownloader/MPOFinderFileDownloader-prefix.pch -------------------------------------------------------------------------------- /Examples/DragAndDropToDownload/Pods/Target Support Files/MPOFinderFileDownloader/MPOFinderFileDownloader.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naituw/MPOFinderFileDownloader/HEAD/Examples/DragAndDropToDownload/Pods/Target Support Files/MPOFinderFileDownloader/MPOFinderFileDownloader.xcconfig -------------------------------------------------------------------------------- /Examples/DragAndDropToDownload/Pods/Target Support Files/Pods-DragAndDropToDownload/Pods-DragAndDropToDownload-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naituw/MPOFinderFileDownloader/HEAD/Examples/DragAndDropToDownload/Pods/Target Support Files/Pods-DragAndDropToDownload/Pods-DragAndDropToDownload-acknowledgements.markdown -------------------------------------------------------------------------------- /Examples/DragAndDropToDownload/Pods/Target Support Files/Pods-DragAndDropToDownload/Pods-DragAndDropToDownload-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naituw/MPOFinderFileDownloader/HEAD/Examples/DragAndDropToDownload/Pods/Target Support Files/Pods-DragAndDropToDownload/Pods-DragAndDropToDownload-acknowledgements.plist -------------------------------------------------------------------------------- /Examples/DragAndDropToDownload/Pods/Target Support Files/Pods-DragAndDropToDownload/Pods-DragAndDropToDownload-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naituw/MPOFinderFileDownloader/HEAD/Examples/DragAndDropToDownload/Pods/Target Support Files/Pods-DragAndDropToDownload/Pods-DragAndDropToDownload-dummy.m -------------------------------------------------------------------------------- /Examples/DragAndDropToDownload/Pods/Target Support Files/Pods-DragAndDropToDownload/Pods-DragAndDropToDownload-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naituw/MPOFinderFileDownloader/HEAD/Examples/DragAndDropToDownload/Pods/Target Support Files/Pods-DragAndDropToDownload/Pods-DragAndDropToDownload-frameworks.sh -------------------------------------------------------------------------------- /Examples/DragAndDropToDownload/Pods/Target Support Files/Pods-DragAndDropToDownload/Pods-DragAndDropToDownload-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naituw/MPOFinderFileDownloader/HEAD/Examples/DragAndDropToDownload/Pods/Target Support Files/Pods-DragAndDropToDownload/Pods-DragAndDropToDownload-resources.sh -------------------------------------------------------------------------------- /Examples/DragAndDropToDownload/Pods/Target Support Files/Pods-DragAndDropToDownload/Pods-DragAndDropToDownload.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naituw/MPOFinderFileDownloader/HEAD/Examples/DragAndDropToDownload/Pods/Target Support Files/Pods-DragAndDropToDownload/Pods-DragAndDropToDownload.debug.xcconfig -------------------------------------------------------------------------------- /Examples/DragAndDropToDownload/Pods/Target Support Files/Pods-DragAndDropToDownload/Pods-DragAndDropToDownload.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naituw/MPOFinderFileDownloader/HEAD/Examples/DragAndDropToDownload/Pods/Target Support Files/Pods-DragAndDropToDownload/Pods-DragAndDropToDownload.release.xcconfig -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naituw/MPOFinderFileDownloader/HEAD/LICENSE -------------------------------------------------------------------------------- /MPOFinderFileDownloader.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naituw/MPOFinderFileDownloader/HEAD/MPOFinderFileDownloader.podspec -------------------------------------------------------------------------------- /MPOFinderFileDownloader/MPOFileDownloading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naituw/MPOFinderFileDownloader/HEAD/MPOFinderFileDownloader/MPOFileDownloading.h -------------------------------------------------------------------------------- /MPOFinderFileDownloader/MPOFinderFileDownloadStatusUpdater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naituw/MPOFinderFileDownloader/HEAD/MPOFinderFileDownloader/MPOFinderFileDownloadStatusUpdater.h -------------------------------------------------------------------------------- /MPOFinderFileDownloader/MPOFinderFileDownloadStatusUpdater.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naituw/MPOFinderFileDownloader/HEAD/MPOFinderFileDownloader/MPOFinderFileDownloadStatusUpdater.m -------------------------------------------------------------------------------- /MPOFinderFileDownloader/MPOFinderFileDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naituw/MPOFinderFileDownloader/HEAD/MPOFinderFileDownloader/MPOFinderFileDownloader.h -------------------------------------------------------------------------------- /MPOFinderFileDownloader/MPOFinderFileDownloader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naituw/MPOFinderFileDownloader/HEAD/MPOFinderFileDownloader/MPOFinderFileDownloader.m -------------------------------------------------------------------------------- /MPOFinderFileDownloader/MPOSimpleFileDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naituw/MPOFinderFileDownloader/HEAD/MPOFinderFileDownloader/MPOSimpleFileDownloader.h -------------------------------------------------------------------------------- /MPOFinderFileDownloader/MPOSimpleFileDownloader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naituw/MPOFinderFileDownloader/HEAD/MPOFinderFileDownloader/MPOSimpleFileDownloader.m -------------------------------------------------------------------------------- /MPOFinderFileDownloader/MPOThroughputHistory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naituw/MPOFinderFileDownloader/HEAD/MPOFinderFileDownloader/MPOThroughputHistory.h -------------------------------------------------------------------------------- /MPOFinderFileDownloader/MPOThroughputHistory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naituw/MPOFinderFileDownloader/HEAD/MPOFinderFileDownloader/MPOThroughputHistory.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naituw/MPOFinderFileDownloader/HEAD/README.md -------------------------------------------------------------------------------- /screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naituw/MPOFinderFileDownloader/HEAD/screenshot.gif --------------------------------------------------------------------------------