├── .gitignore ├── CURLHandle.framework ├── CURLHandle ├── Headers ├── Resources └── Versions │ ├── A │ ├── CURLHandle │ ├── Frameworks │ │ └── libcurl.dylib │ ├── Headers │ │ ├── CURLFTPSession.h │ │ ├── CURLHandle.h │ │ └── CURLProtocol.h │ └── Resources │ │ └── Info.plist │ └── Current ├── DDHotKeyCenter.h ├── DDHotKeyCenter.m ├── EMKeychainItem.h ├── EMKeychainItem.m ├── FileShuttle.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── FileShuttle ├── AppController.h ├── AppController.m ├── FileShuttle-Info.plist ├── FileShuttle-Prefix.pch ├── Growl Registration Ticket.growlRegDict ├── MainMenu.xib ├── MainMenu.xib.original ├── dsa_pub.pem ├── en.lproj │ └── InfoPlist.strings ├── main.m ├── status_item.png ├── status_item@2x.png ├── status_item_completed.png ├── status_item_completed@2x.png ├── status_item_empty.png ├── status_item_empty@2x.png ├── status_item_error.png ├── status_item_error@2x.png ├── status_item_highlighted.png ├── status_item_highlighted@2x.png ├── status_item_mask.png └── status_item_mask@2x.png ├── Growl.framework ├── Growl ├── Headers ├── Resources └── Versions │ ├── A │ ├── Growl │ ├── Headers │ │ ├── Growl.h │ │ ├── GrowlApplicationBridge.h │ │ └── GrowlDefines.h │ ├── Resources │ │ └── Info.plist │ └── _CodeSignature │ │ └── CodeResources │ └── Current ├── MVDictionaryKeyCombo.h ├── MVDictionaryKeyCombo.m ├── MVDockImage.h ├── MVDockImage.m ├── MVFTPFileUpload.h ├── MVFTPFileUpload.m ├── MVFileUpload.h ├── MVFileUpload.m ├── MVFileUploadDelegate.h ├── MVFileUploader.h ├── MVFileUploader.m ├── MVPreferencesController.h ├── MVPreferencesController.m ├── MVSFTPFileUpload.h ├── MVSFTPFileUpload.m ├── MVScreenshotsListener.h ├── MVScreenshotsListener.m ├── MVStatusItemView.h ├── MVStatusItemView.m ├── MVURLShortener.h ├── MVURLShortener.m ├── MVZipFiles.h ├── MVZipFiles.m ├── NSBezierPath-RoundedRect.h ├── NSBezierPath-RoundedRect.m ├── NSPasteboard+Files.h ├── NSPasteboard+Files.m ├── NSString+MD5.h ├── NSString+MD5.m ├── README.md ├── RegexKit.framework ├── Headers │ ├── NSArray.h │ ├── NSData.h │ ├── NSDictionary.h │ ├── NSObject.h │ ├── NSSet.h │ ├── NSString.h │ ├── RKCache.h │ ├── RKEnumerator.h │ ├── RKRegex.h │ ├── RKUtility.h │ ├── RegexKit.h │ ├── RegexKitDefines.h │ ├── RegexKitTypes.h │ └── pcre.h ├── RegexKit ├── Resources │ ├── English.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── pcre.strings │ ├── Info.plist │ └── LICENSE └── Versions │ ├── A │ ├── Headers │ │ ├── NSArray.h │ │ ├── NSData.h │ │ ├── NSDictionary.h │ │ ├── NSObject.h │ │ ├── NSSet.h │ │ ├── NSString.h │ │ ├── RKCache.h │ │ ├── RKEnumerator.h │ │ ├── RKRegex.h │ │ ├── RKUtility.h │ │ ├── RegexKit.h │ │ ├── RegexKitDefines.h │ │ ├── RegexKitTypes.h │ │ └── pcre.h │ ├── RegexKit │ └── Resources │ │ ├── English.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── pcre.strings │ │ ├── Info.plist │ │ └── LICENSE │ └── Current │ ├── Headers │ ├── NSArray.h │ ├── NSData.h │ ├── NSDictionary.h │ ├── NSObject.h │ ├── NSSet.h │ ├── NSString.h │ ├── RKCache.h │ ├── RKEnumerator.h │ ├── RKRegex.h │ ├── RKUtility.h │ ├── RegexKit.h │ ├── RegexKitDefines.h │ ├── RegexKitTypes.h │ └── pcre.h │ ├── RegexKit │ └── Resources │ ├── English.lproj │ ├── InfoPlist.strings │ ├── Localizable.strings │ └── pcre.strings │ ├── Info.plist │ └── LICENSE ├── ShortcutRecorder.framework ├── Headers ├── Resources ├── ShortcutRecorder └── Versions │ ├── A │ ├── Headers │ │ ├── SRCommon.h │ │ ├── SRKeyCodeTransformer.h │ │ ├── SRRecorderCell.h │ │ ├── SRRecorderControl.h │ │ ├── SRValidator.h │ │ ├── SR_LeopardView.h │ │ └── ShortcutRecorder.h │ ├── Resources │ │ └── Info.plist │ └── ShortcutRecorder │ └── Current ├── Sparkle.framework ├── Headers ├── Resources ├── Sparkle └── Versions │ ├── A │ ├── Headers │ │ ├── SUAppcast.h │ │ ├── SUAppcastItem.h │ │ ├── SUUpdater.h │ │ ├── SUVersionComparisonProtocol.h │ │ └── Sparkle.h │ ├── Resources │ │ ├── Info.plist │ │ ├── License.txt │ │ ├── SUModelTranslation.plist │ │ ├── SUStatus.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ │ ├── de.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── classes.nib │ │ │ │ ├── info.nib │ │ │ │ └── keyedobjects.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── classes.nib │ │ │ │ ├── info.nib │ │ │ │ └── keyedobjects.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ ├── classes.nib │ │ │ │ ├── info.nib │ │ │ │ └── keyedobjects.nib │ │ │ └── Sparkle.strings │ │ ├── en.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── classes.nib │ │ │ │ ├── info.nib │ │ │ │ └── keyedobjects.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── classes.nib │ │ │ │ ├── info.nib │ │ │ │ └── keyedobjects.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ ├── classes.nib │ │ │ │ ├── info.nib │ │ │ │ └── keyedobjects.nib │ │ │ └── Sparkle.strings │ │ ├── es.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── classes.nib │ │ │ │ ├── info.nib │ │ │ │ └── keyedobjects.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── classes.nib │ │ │ │ ├── info.nib │ │ │ │ └── keyedobjects.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ ├── classes.nib │ │ │ │ ├── info.nib │ │ │ │ └── keyedobjects.nib │ │ │ └── Sparkle.strings │ │ ├── fr.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── classes.nib │ │ │ │ ├── info.nib │ │ │ │ └── keyedobjects.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── classes.nib │ │ │ │ ├── info.nib │ │ │ │ └── keyedobjects.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ ├── classes.nib │ │ │ │ ├── info.nib │ │ │ │ └── keyedobjects.nib │ │ │ ├── Sparkle.strings │ │ │ └── fr.lproj │ │ ├── fr_CA.lproj │ │ ├── it.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── classes.nib │ │ │ │ ├── info.nib │ │ │ │ └── keyedobjects.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── classes.nib │ │ │ │ ├── info.nib │ │ │ │ └── keyedobjects.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ ├── classes.nib │ │ │ │ ├── info.nib │ │ │ │ └── keyedobjects.nib │ │ │ └── Sparkle.strings │ │ ├── nl.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── classes.nib │ │ │ │ ├── info.nib │ │ │ │ └── keyedobjects.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── classes.nib │ │ │ │ ├── info.nib │ │ │ │ └── keyedobjects.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ ├── classes.nib │ │ │ │ ├── info.nib │ │ │ │ └── keyedobjects.nib │ │ │ └── Sparkle.strings │ │ ├── relaunch │ │ ├── ru.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── classes.nib │ │ │ │ ├── info.nib │ │ │ │ └── keyedobjects.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── classes.nib │ │ │ │ ├── info.nib │ │ │ │ └── keyedobjects.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ ├── classes.nib │ │ │ │ ├── info.nib │ │ │ │ └── keyedobjects.nib │ │ │ └── Sparkle.strings │ │ └── sv.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ │ │ └── Sparkle.strings │ └── Sparkle │ └── Current ├── assets └── icon_menubar.psd ├── fileshuttle.icns ├── sshversion.c └── sshversion.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/.gitignore -------------------------------------------------------------------------------- /CURLHandle.framework/CURLHandle: -------------------------------------------------------------------------------- 1 | Versions/Current/CURLHandle -------------------------------------------------------------------------------- /CURLHandle.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /CURLHandle.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /CURLHandle.framework/Versions/A/CURLHandle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/CURLHandle.framework/Versions/A/CURLHandle -------------------------------------------------------------------------------- /CURLHandle.framework/Versions/A/Frameworks/libcurl.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/CURLHandle.framework/Versions/A/Frameworks/libcurl.dylib -------------------------------------------------------------------------------- /CURLHandle.framework/Versions/A/Headers/CURLFTPSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/CURLHandle.framework/Versions/A/Headers/CURLFTPSession.h -------------------------------------------------------------------------------- /CURLHandle.framework/Versions/A/Headers/CURLHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/CURLHandle.framework/Versions/A/Headers/CURLHandle.h -------------------------------------------------------------------------------- /CURLHandle.framework/Versions/A/Headers/CURLProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/CURLHandle.framework/Versions/A/Headers/CURLProtocol.h -------------------------------------------------------------------------------- /CURLHandle.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/CURLHandle.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /CURLHandle.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /DDHotKeyCenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/DDHotKeyCenter.h -------------------------------------------------------------------------------- /DDHotKeyCenter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/DDHotKeyCenter.m -------------------------------------------------------------------------------- /EMKeychainItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/EMKeychainItem.h -------------------------------------------------------------------------------- /EMKeychainItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/EMKeychainItem.m -------------------------------------------------------------------------------- /FileShuttle.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/FileShuttle.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FileShuttle.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/FileShuttle.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FileShuttle/AppController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/FileShuttle/AppController.h -------------------------------------------------------------------------------- /FileShuttle/AppController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/FileShuttle/AppController.m -------------------------------------------------------------------------------- /FileShuttle/FileShuttle-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/FileShuttle/FileShuttle-Info.plist -------------------------------------------------------------------------------- /FileShuttle/FileShuttle-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/FileShuttle/FileShuttle-Prefix.pch -------------------------------------------------------------------------------- /FileShuttle/Growl Registration Ticket.growlRegDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/FileShuttle/Growl Registration Ticket.growlRegDict -------------------------------------------------------------------------------- /FileShuttle/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/FileShuttle/MainMenu.xib -------------------------------------------------------------------------------- /FileShuttle/MainMenu.xib.original: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/FileShuttle/MainMenu.xib.original -------------------------------------------------------------------------------- /FileShuttle/dsa_pub.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/FileShuttle/dsa_pub.pem -------------------------------------------------------------------------------- /FileShuttle/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /FileShuttle/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/FileShuttle/main.m -------------------------------------------------------------------------------- /FileShuttle/status_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/FileShuttle/status_item.png -------------------------------------------------------------------------------- /FileShuttle/status_item@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/FileShuttle/status_item@2x.png -------------------------------------------------------------------------------- /FileShuttle/status_item_completed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/FileShuttle/status_item_completed.png -------------------------------------------------------------------------------- /FileShuttle/status_item_completed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/FileShuttle/status_item_completed@2x.png -------------------------------------------------------------------------------- /FileShuttle/status_item_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/FileShuttle/status_item_empty.png -------------------------------------------------------------------------------- /FileShuttle/status_item_empty@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/FileShuttle/status_item_empty@2x.png -------------------------------------------------------------------------------- /FileShuttle/status_item_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/FileShuttle/status_item_error.png -------------------------------------------------------------------------------- /FileShuttle/status_item_error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/FileShuttle/status_item_error@2x.png -------------------------------------------------------------------------------- /FileShuttle/status_item_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/FileShuttle/status_item_highlighted.png -------------------------------------------------------------------------------- /FileShuttle/status_item_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/FileShuttle/status_item_highlighted@2x.png -------------------------------------------------------------------------------- /FileShuttle/status_item_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/FileShuttle/status_item_mask.png -------------------------------------------------------------------------------- /FileShuttle/status_item_mask@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/FileShuttle/status_item_mask@2x.png -------------------------------------------------------------------------------- /Growl.framework/Growl: -------------------------------------------------------------------------------- 1 | Versions/Current/Growl -------------------------------------------------------------------------------- /Growl.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Growl.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Growl.framework/Versions/A/Growl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Growl.framework/Versions/A/Growl -------------------------------------------------------------------------------- /Growl.framework/Versions/A/Headers/Growl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Growl.framework/Versions/A/Headers/Growl.h -------------------------------------------------------------------------------- /Growl.framework/Versions/A/Headers/GrowlApplicationBridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Growl.framework/Versions/A/Headers/GrowlApplicationBridge.h -------------------------------------------------------------------------------- /Growl.framework/Versions/A/Headers/GrowlDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Growl.framework/Versions/A/Headers/GrowlDefines.h -------------------------------------------------------------------------------- /Growl.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Growl.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /Growl.framework/Versions/A/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Growl.framework/Versions/A/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Growl.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /MVDictionaryKeyCombo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/MVDictionaryKeyCombo.h -------------------------------------------------------------------------------- /MVDictionaryKeyCombo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/MVDictionaryKeyCombo.m -------------------------------------------------------------------------------- /MVDockImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/MVDockImage.h -------------------------------------------------------------------------------- /MVDockImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/MVDockImage.m -------------------------------------------------------------------------------- /MVFTPFileUpload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/MVFTPFileUpload.h -------------------------------------------------------------------------------- /MVFTPFileUpload.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/MVFTPFileUpload.m -------------------------------------------------------------------------------- /MVFileUpload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/MVFileUpload.h -------------------------------------------------------------------------------- /MVFileUpload.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/MVFileUpload.m -------------------------------------------------------------------------------- /MVFileUploadDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/MVFileUploadDelegate.h -------------------------------------------------------------------------------- /MVFileUploader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/MVFileUploader.h -------------------------------------------------------------------------------- /MVFileUploader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/MVFileUploader.m -------------------------------------------------------------------------------- /MVPreferencesController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/MVPreferencesController.h -------------------------------------------------------------------------------- /MVPreferencesController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/MVPreferencesController.m -------------------------------------------------------------------------------- /MVSFTPFileUpload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/MVSFTPFileUpload.h -------------------------------------------------------------------------------- /MVSFTPFileUpload.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/MVSFTPFileUpload.m -------------------------------------------------------------------------------- /MVScreenshotsListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/MVScreenshotsListener.h -------------------------------------------------------------------------------- /MVScreenshotsListener.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/MVScreenshotsListener.m -------------------------------------------------------------------------------- /MVStatusItemView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/MVStatusItemView.h -------------------------------------------------------------------------------- /MVStatusItemView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/MVStatusItemView.m -------------------------------------------------------------------------------- /MVURLShortener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/MVURLShortener.h -------------------------------------------------------------------------------- /MVURLShortener.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/MVURLShortener.m -------------------------------------------------------------------------------- /MVZipFiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/MVZipFiles.h -------------------------------------------------------------------------------- /MVZipFiles.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/MVZipFiles.m -------------------------------------------------------------------------------- /NSBezierPath-RoundedRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/NSBezierPath-RoundedRect.h -------------------------------------------------------------------------------- /NSBezierPath-RoundedRect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/NSBezierPath-RoundedRect.m -------------------------------------------------------------------------------- /NSPasteboard+Files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/NSPasteboard+Files.h -------------------------------------------------------------------------------- /NSPasteboard+Files.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/NSPasteboard+Files.m -------------------------------------------------------------------------------- /NSString+MD5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/NSString+MD5.h -------------------------------------------------------------------------------- /NSString+MD5.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/NSString+MD5.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/README.md -------------------------------------------------------------------------------- /RegexKit.framework/Headers/NSArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Headers/NSArray.h -------------------------------------------------------------------------------- /RegexKit.framework/Headers/NSData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Headers/NSData.h -------------------------------------------------------------------------------- /RegexKit.framework/Headers/NSDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Headers/NSDictionary.h -------------------------------------------------------------------------------- /RegexKit.framework/Headers/NSObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Headers/NSObject.h -------------------------------------------------------------------------------- /RegexKit.framework/Headers/NSSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Headers/NSSet.h -------------------------------------------------------------------------------- /RegexKit.framework/Headers/NSString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Headers/NSString.h -------------------------------------------------------------------------------- /RegexKit.framework/Headers/RKCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Headers/RKCache.h -------------------------------------------------------------------------------- /RegexKit.framework/Headers/RKEnumerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Headers/RKEnumerator.h -------------------------------------------------------------------------------- /RegexKit.framework/Headers/RKRegex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Headers/RKRegex.h -------------------------------------------------------------------------------- /RegexKit.framework/Headers/RKUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Headers/RKUtility.h -------------------------------------------------------------------------------- /RegexKit.framework/Headers/RegexKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Headers/RegexKit.h -------------------------------------------------------------------------------- /RegexKit.framework/Headers/RegexKitDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Headers/RegexKitDefines.h -------------------------------------------------------------------------------- /RegexKit.framework/Headers/RegexKitTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Headers/RegexKitTypes.h -------------------------------------------------------------------------------- /RegexKit.framework/Headers/pcre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Headers/pcre.h -------------------------------------------------------------------------------- /RegexKit.framework/RegexKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/RegexKit -------------------------------------------------------------------------------- /RegexKit.framework/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /RegexKit.framework/Resources/English.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Resources/English.lproj/Localizable.strings -------------------------------------------------------------------------------- /RegexKit.framework/Resources/English.lproj/pcre.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Resources/English.lproj/pcre.strings -------------------------------------------------------------------------------- /RegexKit.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Resources/Info.plist -------------------------------------------------------------------------------- /RegexKit.framework/Resources/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Resources/LICENSE -------------------------------------------------------------------------------- /RegexKit.framework/Versions/A/Headers/NSArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Versions/A/Headers/NSArray.h -------------------------------------------------------------------------------- /RegexKit.framework/Versions/A/Headers/NSData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Versions/A/Headers/NSData.h -------------------------------------------------------------------------------- /RegexKit.framework/Versions/A/Headers/NSDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Versions/A/Headers/NSDictionary.h -------------------------------------------------------------------------------- /RegexKit.framework/Versions/A/Headers/NSObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Versions/A/Headers/NSObject.h -------------------------------------------------------------------------------- /RegexKit.framework/Versions/A/Headers/NSSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Versions/A/Headers/NSSet.h -------------------------------------------------------------------------------- /RegexKit.framework/Versions/A/Headers/NSString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Versions/A/Headers/NSString.h -------------------------------------------------------------------------------- /RegexKit.framework/Versions/A/Headers/RKCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Versions/A/Headers/RKCache.h -------------------------------------------------------------------------------- /RegexKit.framework/Versions/A/Headers/RKEnumerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Versions/A/Headers/RKEnumerator.h -------------------------------------------------------------------------------- /RegexKit.framework/Versions/A/Headers/RKRegex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Versions/A/Headers/RKRegex.h -------------------------------------------------------------------------------- /RegexKit.framework/Versions/A/Headers/RKUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Versions/A/Headers/RKUtility.h -------------------------------------------------------------------------------- /RegexKit.framework/Versions/A/Headers/RegexKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Versions/A/Headers/RegexKit.h -------------------------------------------------------------------------------- /RegexKit.framework/Versions/A/Headers/RegexKitDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Versions/A/Headers/RegexKitDefines.h -------------------------------------------------------------------------------- /RegexKit.framework/Versions/A/Headers/RegexKitTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Versions/A/Headers/RegexKitTypes.h -------------------------------------------------------------------------------- /RegexKit.framework/Versions/A/Headers/pcre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Versions/A/Headers/pcre.h -------------------------------------------------------------------------------- /RegexKit.framework/Versions/A/RegexKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Versions/A/RegexKit -------------------------------------------------------------------------------- /RegexKit.framework/Versions/A/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /RegexKit.framework/Versions/A/Resources/English.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Versions/A/Resources/English.lproj/Localizable.strings -------------------------------------------------------------------------------- /RegexKit.framework/Versions/A/Resources/English.lproj/pcre.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Versions/A/Resources/English.lproj/pcre.strings -------------------------------------------------------------------------------- /RegexKit.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /RegexKit.framework/Versions/A/Resources/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Versions/A/Resources/LICENSE -------------------------------------------------------------------------------- /RegexKit.framework/Versions/Current/Headers/NSArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Versions/Current/Headers/NSArray.h -------------------------------------------------------------------------------- /RegexKit.framework/Versions/Current/Headers/NSData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Versions/Current/Headers/NSData.h -------------------------------------------------------------------------------- /RegexKit.framework/Versions/Current/Headers/NSDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Versions/Current/Headers/NSDictionary.h -------------------------------------------------------------------------------- /RegexKit.framework/Versions/Current/Headers/NSObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Versions/Current/Headers/NSObject.h -------------------------------------------------------------------------------- /RegexKit.framework/Versions/Current/Headers/NSSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Versions/Current/Headers/NSSet.h -------------------------------------------------------------------------------- /RegexKit.framework/Versions/Current/Headers/NSString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Versions/Current/Headers/NSString.h -------------------------------------------------------------------------------- /RegexKit.framework/Versions/Current/Headers/RKCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Versions/Current/Headers/RKCache.h -------------------------------------------------------------------------------- /RegexKit.framework/Versions/Current/Headers/RKEnumerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Versions/Current/Headers/RKEnumerator.h -------------------------------------------------------------------------------- /RegexKit.framework/Versions/Current/Headers/RKRegex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Versions/Current/Headers/RKRegex.h -------------------------------------------------------------------------------- /RegexKit.framework/Versions/Current/Headers/RKUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Versions/Current/Headers/RKUtility.h -------------------------------------------------------------------------------- /RegexKit.framework/Versions/Current/Headers/RegexKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Versions/Current/Headers/RegexKit.h -------------------------------------------------------------------------------- /RegexKit.framework/Versions/Current/Headers/RegexKitDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Versions/Current/Headers/RegexKitDefines.h -------------------------------------------------------------------------------- /RegexKit.framework/Versions/Current/Headers/RegexKitTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Versions/Current/Headers/RegexKitTypes.h -------------------------------------------------------------------------------- /RegexKit.framework/Versions/Current/Headers/pcre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Versions/Current/Headers/pcre.h -------------------------------------------------------------------------------- /RegexKit.framework/Versions/Current/RegexKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Versions/Current/RegexKit -------------------------------------------------------------------------------- /RegexKit.framework/Versions/Current/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Versions/Current/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /RegexKit.framework/Versions/Current/Resources/English.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Versions/Current/Resources/English.lproj/Localizable.strings -------------------------------------------------------------------------------- /RegexKit.framework/Versions/Current/Resources/English.lproj/pcre.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Versions/Current/Resources/English.lproj/pcre.strings -------------------------------------------------------------------------------- /RegexKit.framework/Versions/Current/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Versions/Current/Resources/Info.plist -------------------------------------------------------------------------------- /RegexKit.framework/Versions/Current/Resources/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/RegexKit.framework/Versions/Current/Resources/LICENSE -------------------------------------------------------------------------------- /ShortcutRecorder.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /ShortcutRecorder.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /ShortcutRecorder.framework/ShortcutRecorder: -------------------------------------------------------------------------------- 1 | Versions/Current/ShortcutRecorder -------------------------------------------------------------------------------- /ShortcutRecorder.framework/Versions/A/Headers/SRCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/ShortcutRecorder.framework/Versions/A/Headers/SRCommon.h -------------------------------------------------------------------------------- /ShortcutRecorder.framework/Versions/A/Headers/SRKeyCodeTransformer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/ShortcutRecorder.framework/Versions/A/Headers/SRKeyCodeTransformer.h -------------------------------------------------------------------------------- /ShortcutRecorder.framework/Versions/A/Headers/SRRecorderCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/ShortcutRecorder.framework/Versions/A/Headers/SRRecorderCell.h -------------------------------------------------------------------------------- /ShortcutRecorder.framework/Versions/A/Headers/SRRecorderControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/ShortcutRecorder.framework/Versions/A/Headers/SRRecorderControl.h -------------------------------------------------------------------------------- /ShortcutRecorder.framework/Versions/A/Headers/SRValidator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/ShortcutRecorder.framework/Versions/A/Headers/SRValidator.h -------------------------------------------------------------------------------- /ShortcutRecorder.framework/Versions/A/Headers/SR_LeopardView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/ShortcutRecorder.framework/Versions/A/Headers/SR_LeopardView.h -------------------------------------------------------------------------------- /ShortcutRecorder.framework/Versions/A/Headers/ShortcutRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/ShortcutRecorder.framework/Versions/A/Headers/ShortcutRecorder.h -------------------------------------------------------------------------------- /ShortcutRecorder.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/ShortcutRecorder.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /ShortcutRecorder.framework/Versions/A/ShortcutRecorder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/ShortcutRecorder.framework/Versions/A/ShortcutRecorder -------------------------------------------------------------------------------- /ShortcutRecorder.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Sparkle.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Sparkle.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Sparkle.framework/Sparkle: -------------------------------------------------------------------------------- 1 | Versions/Current/Sparkle -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Headers/SUAppcast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Headers/SUAppcast.h -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Headers/SUAppcastItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Headers/SUAppcastItem.h -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Headers/SUUpdater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Headers/SUUpdater.h -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Headers/SUVersionComparisonProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Headers/SUVersionComparisonProtocol.h -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Headers/Sparkle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Headers/Sparkle.h -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/License.txt -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/SUModelTranslation.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/SUModelTranslation.plist -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/SUStatus.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/SUStatus.nib/classes.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/SUStatus.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/SUStatus.nib/info.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/SUStatus.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/SUStatus.nib/keyedobjects.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/de.lproj/SUAutomaticUpdateAlert.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/de.lproj/SUAutomaticUpdateAlert.nib/classes.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/de.lproj/SUAutomaticUpdateAlert.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/de.lproj/SUAutomaticUpdateAlert.nib/info.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/de.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/de.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.nib/classes.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.nib/info.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.nib/keyedobjects.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdatePermissionPrompt.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdatePermissionPrompt.nib/classes.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdatePermissionPrompt.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdatePermissionPrompt.nib/info.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/de.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/de.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib/classes.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib/info.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib/classes.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib/info.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib/keyedobjects.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdatePermissionPrompt.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdatePermissionPrompt.nib/classes.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdatePermissionPrompt.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdatePermissionPrompt.nib/info.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/en.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/en.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/es.lproj/SUAutomaticUpdateAlert.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/es.lproj/SUAutomaticUpdateAlert.nib/classes.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/es.lproj/SUAutomaticUpdateAlert.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/es.lproj/SUAutomaticUpdateAlert.nib/info.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/es.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/es.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdateAlert.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdateAlert.nib/classes.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdateAlert.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdateAlert.nib/info.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdateAlert.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdateAlert.nib/keyedobjects.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdatePermissionPrompt.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdatePermissionPrompt.nib/classes.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdatePermissionPrompt.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdatePermissionPrompt.nib/info.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/es.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/es.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/fr.lproj/SUAutomaticUpdateAlert.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/fr.lproj/SUAutomaticUpdateAlert.nib/classes.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/fr.lproj/SUAutomaticUpdateAlert.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/fr.lproj/SUAutomaticUpdateAlert.nib/info.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/fr.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/fr.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.nib/classes.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.nib/info.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.nib/keyedobjects.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdatePermissionPrompt.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdatePermissionPrompt.nib/classes.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdatePermissionPrompt.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdatePermissionPrompt.nib/info.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/fr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/fr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/fr.lproj/fr.lproj: -------------------------------------------------------------------------------- 1 | /Users/andym/Development/Build Products/Release/Sparkle.framework/Resources/fr.lproj -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/fr_CA.lproj: -------------------------------------------------------------------------------- 1 | /Users/andym/Development/Build Products/Release/Sparkle.framework/Resources/fr.lproj -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/it.lproj/SUAutomaticUpdateAlert.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/it.lproj/SUAutomaticUpdateAlert.nib/classes.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/it.lproj/SUAutomaticUpdateAlert.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/it.lproj/SUAutomaticUpdateAlert.nib/info.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/it.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/it.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.nib/classes.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.nib/info.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.nib/keyedobjects.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdatePermissionPrompt.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdatePermissionPrompt.nib/classes.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdatePermissionPrompt.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdatePermissionPrompt.nib/info.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/it.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/it.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/nl.lproj/SUAutomaticUpdateAlert.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/nl.lproj/SUAutomaticUpdateAlert.nib/classes.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/nl.lproj/SUAutomaticUpdateAlert.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/nl.lproj/SUAutomaticUpdateAlert.nib/info.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/nl.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/nl.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.nib/classes.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.nib/info.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.nib/keyedobjects.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdatePermissionPrompt.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdatePermissionPrompt.nib/classes.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdatePermissionPrompt.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdatePermissionPrompt.nib/info.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/nl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/nl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/relaunch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/relaunch -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/ru.lproj/SUAutomaticUpdateAlert.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/ru.lproj/SUAutomaticUpdateAlert.nib/classes.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/ru.lproj/SUAutomaticUpdateAlert.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/ru.lproj/SUAutomaticUpdateAlert.nib/info.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/ru.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/ru.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdateAlert.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdateAlert.nib/classes.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdateAlert.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdateAlert.nib/info.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdateAlert.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdateAlert.nib/keyedobjects.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdatePermissionPrompt.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdatePermissionPrompt.nib/classes.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdatePermissionPrompt.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdatePermissionPrompt.nib/info.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/ru.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/ru.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/sv.lproj/SUAutomaticUpdateAlert.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/sv.lproj/SUAutomaticUpdateAlert.nib/classes.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/sv.lproj/SUAutomaticUpdateAlert.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/sv.lproj/SUAutomaticUpdateAlert.nib/info.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/sv.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/sv.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdateAlert.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdateAlert.nib/classes.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdateAlert.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdateAlert.nib/info.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdateAlert.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdateAlert.nib/keyedobjects.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdatePermissionPrompt.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdatePermissionPrompt.nib/classes.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdatePermissionPrompt.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdatePermissionPrompt.nib/info.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/sv.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Resources/sv.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Sparkle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/Sparkle.framework/Versions/A/Sparkle -------------------------------------------------------------------------------- /Sparkle.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /assets/icon_menubar.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/assets/icon_menubar.psd -------------------------------------------------------------------------------- /fileshuttle.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/fileshuttle.icns -------------------------------------------------------------------------------- /sshversion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/sshversion.c -------------------------------------------------------------------------------- /sshversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvillar/fileshuttle/HEAD/sshversion.h --------------------------------------------------------------------------------