├── .gitignore ├── Apple Events.xcodeproj └── project.pbxproj ├── Apple Events ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon_128x128.png │ │ ├── icon_128x128@2x.png │ │ ├── icon_16x16.png │ │ ├── icon_16x16@2x.png │ │ ├── icon_256x256.png │ │ ├── icon_256x256@2x.png │ │ ├── icon_32x32.png │ │ ├── icon_32x32@2x.png │ │ ├── icon_512x512.png │ │ └── icon_512x512@2x.png │ ├── Contents.json │ └── chromecast.imageset │ │ ├── Contents.json │ │ ├── chromecast.png │ │ ├── chromecast@2x.png │ │ └── chromecast@3x.png ├── Base.lproj │ └── Main.storyboard ├── EVTAppDelegate.h ├── EVTAppDelegate.m ├── EVTChromecastViewController.h ├── EVTChromecastViewController.m ├── EVTCurrentEventViewController.h ├── EVTCurrentEventViewController.m ├── EVTEnvironment.h ├── EVTEnvironment.m ├── EVTEvent+Dictionary.h ├── EVTEvent+Dictionary.m ├── EVTEvent.h ├── EVTEvent.m ├── EVTEventCollectionViewItem.h ├── EVTEventCollectionViewItem.m ├── EVTEventStateProvider.h ├── EVTEventStateProvider.m ├── EVTEventsCache.h ├── EVTEventsCache.m ├── EVTEventsFetcher.h ├── EVTEventsFetcher.m ├── EVTEventsViewController.h ├── EVTEventsViewController.m ├── EVTImageFetcher.h ├── EVTImageFetcher.m ├── EVTPastEventsCollectionViewController.h ├── EVTPastEventsCollectionViewController.m ├── EVTPlayerViewController.h ├── EVTPlayerViewController.m ├── EVTVerboseLogger.h ├── EVTVerboseLogger.m ├── Environment.plist ├── GRTextField.h ├── GRTextField.m ├── Info.plist └── main.m ├── AppleEventsDock ├── EVTDockIconView.h ├── EVTDockIconView.m ├── EVTDockTilePlugIn.h ├── EVTDockTilePlugIn.m └── Info.plist ├── Dependencies ├── ChromeCastCore │ ├── ChromeCastCore.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── ChromeCastCore.xcscheme │ └── ChromeCastCore │ │ ├── CASTV2PlatformReader.h │ │ ├── CASTV2PlatformReader.m │ │ ├── CASTV2Protocol.swift │ │ ├── CastApp.swift │ │ ├── CastClient.swift │ │ ├── CastDevice.swift │ │ ├── CastDeviceScanner.swift │ │ ├── CastMedia.swift │ │ ├── CastMediaStatus.swift │ │ ├── CastMessagePayload.swift │ │ ├── CastStatus.swift │ │ ├── ChromeCastCore.h │ │ ├── Info.plist │ │ ├── cast_channel.pb.swift │ │ └── cast_channel.proto ├── Sparkle.framework │ ├── Headers │ │ ├── SPUDownloadData.h │ │ ├── SPUDownloader.h │ │ ├── SPUDownloaderDelegate.h │ │ ├── SPUDownloaderDeprecated.h │ │ ├── SPUDownloaderProtocol.h │ │ ├── SPUDownloaderSession.h │ │ ├── SPUURLRequest.h │ │ ├── SUAppcast.h │ │ ├── SUAppcastItem.h │ │ ├── SUCodeSigningVerifier.h │ │ ├── SUErrors.h │ │ ├── SUExport.h │ │ ├── SUStandardVersionComparator.h │ │ ├── SUUpdater.h │ │ ├── SUUpdaterDelegate.h │ │ ├── SUVersionComparisonProtocol.h │ │ ├── SUVersionDisplayProtocol.h │ │ └── Sparkle.h │ ├── Modules │ │ └── module.modulemap │ ├── PrivateHeaders │ │ └── SUUnarchiver.h │ ├── Resources │ │ ├── Autoupdate.app │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── MacOS │ │ │ │ ├── Autoupdate │ │ │ │ └── fileop │ │ │ │ ├── PkgInfo │ │ │ │ └── Resources │ │ │ │ ├── AppIcon.icns │ │ │ │ ├── SUStatus.nib │ │ │ │ ├── ar.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── cs.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── da.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── de.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── el.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── en.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── es.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── fi.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── fr.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── hu.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── is.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── it.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── ja.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── ko.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── nb.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── nl.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── pl.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── pt_BR.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── pt_PT.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── ro.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── ru.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── sk.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── sl.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── sv.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── th.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── tr.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── uk.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── zh_CN.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ └── zh_TW.lproj │ │ │ │ └── Sparkle.strings │ │ ├── Info.plist │ │ ├── SUModelTranslation.plist │ │ ├── SUStatus.nib │ │ ├── ar.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── cs.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── da.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── de.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── el.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── en.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── es.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── fi.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── fr.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── fr_CA.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── hu.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── is.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── it.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── ja.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── ko.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── nb.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── nl.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── pl.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── pt.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── pt_BR.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── pt_PT.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── ro.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── ru.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── sk.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── sl.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── sv.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── th.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── tr.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── uk.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── zh_CN.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ └── zh_TW.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ ├── Sparkle │ └── Versions │ │ ├── A │ │ ├── Headers │ │ │ ├── SPUDownloadData.h │ │ │ ├── SPUDownloader.h │ │ │ ├── SPUDownloaderDelegate.h │ │ │ ├── SPUDownloaderDeprecated.h │ │ │ ├── SPUDownloaderProtocol.h │ │ │ ├── SPUDownloaderSession.h │ │ │ ├── SPUURLRequest.h │ │ │ ├── SUAppcast.h │ │ │ ├── SUAppcastItem.h │ │ │ ├── SUCodeSigningVerifier.h │ │ │ ├── SUErrors.h │ │ │ ├── SUExport.h │ │ │ ├── SUStandardVersionComparator.h │ │ │ ├── SUUpdater.h │ │ │ ├── SUUpdaterDelegate.h │ │ │ ├── SUVersionComparisonProtocol.h │ │ │ ├── SUVersionDisplayProtocol.h │ │ │ └── Sparkle.h │ │ ├── Modules │ │ │ └── module.modulemap │ │ ├── PrivateHeaders │ │ │ └── SUUnarchiver.h │ │ ├── Resources │ │ │ ├── Autoupdate.app │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── MacOS │ │ │ │ │ ├── Autoupdate │ │ │ │ │ └── fileop │ │ │ │ │ ├── PkgInfo │ │ │ │ │ └── Resources │ │ │ │ │ ├── AppIcon.icns │ │ │ │ │ ├── SUStatus.nib │ │ │ │ │ ├── ar.lproj │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── cs.lproj │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── da.lproj │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── de.lproj │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── el.lproj │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── en.lproj │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── es.lproj │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── fi.lproj │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── fr.lproj │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── hu.lproj │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── is.lproj │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── it.lproj │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── ja.lproj │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── ko.lproj │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── nb.lproj │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── nl.lproj │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── pl.lproj │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── pt_BR.lproj │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── pt_PT.lproj │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── ro.lproj │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── ru.lproj │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── sk.lproj │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── sl.lproj │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── sv.lproj │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── th.lproj │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── tr.lproj │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── uk.lproj │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── zh_CN.lproj │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ └── zh_TW.lproj │ │ │ │ │ └── Sparkle.strings │ │ │ ├── Info.plist │ │ │ ├── SUModelTranslation.plist │ │ │ ├── SUStatus.nib │ │ │ ├── ar.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── cs.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── da.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── de.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── el.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── en.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── es.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── fi.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── fr.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── fr_CA.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── hu.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── is.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── it.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── ja.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── ko.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── nb.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── nl.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── pl.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── pt.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── pt_BR.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── pt_PT.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── ro.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── ru.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── sk.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── sl.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── sv.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── th.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── tr.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── uk.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── zh_CN.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ └── zh_TW.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ └── Sparkle │ │ └── Current │ │ ├── Headers │ │ ├── SPUDownloadData.h │ │ ├── SPUDownloader.h │ │ ├── SPUDownloaderDelegate.h │ │ ├── SPUDownloaderDeprecated.h │ │ ├── SPUDownloaderProtocol.h │ │ ├── SPUDownloaderSession.h │ │ ├── SPUURLRequest.h │ │ ├── SUAppcast.h │ │ ├── SUAppcastItem.h │ │ ├── SUCodeSigningVerifier.h │ │ ├── SUErrors.h │ │ ├── SUExport.h │ │ ├── SUStandardVersionComparator.h │ │ ├── SUUpdater.h │ │ ├── SUUpdaterDelegate.h │ │ ├── SUVersionComparisonProtocol.h │ │ ├── SUVersionDisplayProtocol.h │ │ └── Sparkle.h │ │ ├── Modules │ │ └── module.modulemap │ │ ├── PrivateHeaders │ │ └── SUUnarchiver.h │ │ ├── Resources │ │ ├── Autoupdate.app │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── MacOS │ │ │ │ ├── Autoupdate │ │ │ │ └── fileop │ │ │ │ ├── PkgInfo │ │ │ │ └── Resources │ │ │ │ ├── AppIcon.icns │ │ │ │ ├── SUStatus.nib │ │ │ │ ├── ar.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── cs.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── da.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── de.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── el.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── en.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── es.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── fi.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── fr.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── hu.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── is.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── it.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── ja.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── ko.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── nb.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── nl.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── pl.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── pt_BR.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── pt_PT.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── ro.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── ru.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── sk.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── sl.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── sv.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── th.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── tr.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── uk.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── zh_CN.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ └── zh_TW.lproj │ │ │ │ └── Sparkle.strings │ │ ├── Info.plist │ │ ├── SUModelTranslation.plist │ │ ├── SUStatus.nib │ │ ├── ar.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── cs.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── da.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── de.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── el.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── en.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── es.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── fi.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── fr.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── fr_CA.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── hu.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── is.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── it.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── ja.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── ko.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── nb.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── nl.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── pl.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── pt.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── pt_BR.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── pt_PT.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── ro.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── ru.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── sk.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── sl.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── sv.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── th.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── tr.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── uk.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── zh_CN.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ └── zh_TW.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ └── Sparkle └── swift-protobuf │ ├── .github │ └── issue_template.md │ ├── .gitignore │ ├── .jazzy.yaml │ ├── DevTools │ ├── CollectTests.awk │ ├── CopyrightFixup.sh │ └── LibraryVersions.py │ ├── Documentation │ ├── API.md │ ├── CONFORMANCE_TESTS.md │ ├── INTERNALS.md │ ├── PLUGIN.md │ ├── RELEASING.md │ └── STYLE_GUIDELINES.md │ ├── LICENSE.txt │ ├── Makefile │ ├── Package.swift │ ├── Package@swift-4.2.swift │ ├── Package@swift-4.swift │ ├── Performance │ ├── .gitignore │ ├── Harness.cc │ ├── Harness.h │ ├── Harness.swift │ ├── Protobuf.tracetemplate │ ├── css │ │ └── harness-visualization.css │ ├── generators │ │ ├── cpp.sh │ │ ├── proto.sh │ │ └── swift.sh │ ├── harness-visualization.html │ ├── js │ │ ├── harness-visualization.js │ │ └── results.js.template │ ├── main.cc │ ├── main.swift │ ├── perf_runner.sh │ └── runners │ │ ├── cpp.sh │ │ └── swift.sh │ ├── Protos │ ├── README.md │ ├── SwiftProtobufPluginLibrary │ │ └── swift_protobuf_module_mappings.proto │ ├── conformance │ │ └── conformance.proto │ ├── generated_swift_names_enum_cases.proto │ ├── generated_swift_names_enums.proto │ ├── generated_swift_names_fields.proto │ ├── generated_swift_names_messages.proto │ ├── google │ │ └── protobuf │ │ │ ├── any.proto │ │ │ ├── any_test.proto │ │ │ ├── api.proto │ │ │ ├── compiler │ │ │ └── plugin.proto │ │ │ ├── descriptor.proto │ │ │ ├── duration.proto │ │ │ ├── empty.proto │ │ │ ├── field_mask.proto │ │ │ ├── map_lite_unittest.proto │ │ │ ├── map_proto2_unittest.proto │ │ │ ├── map_unittest.proto │ │ │ ├── source_context.proto │ │ │ ├── struct.proto │ │ │ ├── test_messages_proto2.proto │ │ │ ├── test_messages_proto3.proto │ │ │ ├── timestamp.proto │ │ │ ├── type.proto │ │ │ ├── unittest.proto │ │ │ ├── unittest_arena.proto │ │ │ ├── unittest_custom_options.proto │ │ │ ├── unittest_drop_unknown_fields.proto │ │ │ ├── unittest_embed_optimize_for.proto │ │ │ ├── unittest_empty.proto │ │ │ ├── unittest_enormous_descriptor.proto │ │ │ ├── unittest_import.proto │ │ │ ├── unittest_import_lite.proto │ │ │ ├── unittest_import_public.proto │ │ │ ├── unittest_import_public_lite.proto │ │ │ ├── unittest_lazy_dependencies.proto │ │ │ ├── unittest_lazy_dependencies_custom_option.proto │ │ │ ├── unittest_lazy_dependencies_enum.proto │ │ │ ├── unittest_lite.proto │ │ │ ├── unittest_lite_imports_nonlite.proto │ │ │ ├── unittest_mset.proto │ │ │ ├── unittest_mset_wire_format.proto │ │ │ ├── unittest_no_arena.proto │ │ │ ├── unittest_no_arena_import.proto │ │ │ ├── unittest_no_arena_lite.proto │ │ │ ├── unittest_no_field_presence.proto │ │ │ ├── unittest_no_generic_services.proto │ │ │ ├── unittest_optimize_for.proto │ │ │ ├── unittest_preserve_unknown_enum.proto │ │ │ ├── unittest_preserve_unknown_enum2.proto │ │ │ ├── unittest_proto3.proto │ │ │ ├── unittest_proto3_arena.proto │ │ │ ├── unittest_proto3_arena_lite.proto │ │ │ ├── unittest_proto3_lite.proto │ │ │ ├── unittest_well_known_types.proto │ │ │ └── wrappers.proto │ ├── pluginlib_descriptor_test.proto │ ├── unittest_swift_all_required_types.proto │ ├── unittest_swift_cycle.proto │ ├── unittest_swift_enum.proto │ ├── unittest_swift_enum_optional_default.proto │ ├── unittest_swift_enum_proto3.proto │ ├── unittest_swift_extension.proto │ ├── unittest_swift_extension2.proto │ ├── unittest_swift_extension3.proto │ ├── unittest_swift_extension4.proto │ ├── unittest_swift_fieldorder.proto │ ├── unittest_swift_groups.proto │ ├── unittest_swift_naming.proto │ ├── unittest_swift_naming_no_prefix.proto │ ├── unittest_swift_oneof_all_required.proto │ ├── unittest_swift_oneof_merging.proto │ ├── unittest_swift_performance.proto │ ├── unittest_swift_reserved.proto │ ├── unittest_swift_reserved_ext.proto │ ├── unittest_swift_runtime_proto2.proto │ ├── unittest_swift_runtime_proto3.proto │ └── unittest_swift_startup.proto │ ├── README.md │ ├── Reference │ ├── SwiftProtobufPluginLibrary │ │ └── swift_protobuf_module_mappings.pb.swift │ ├── conformance │ │ └── conformance.pb.swift │ ├── generated_swift_names_enum_cases.pb.swift │ ├── generated_swift_names_enums.pb.swift │ ├── generated_swift_names_fields.pb.swift │ ├── generated_swift_names_messages.pb.swift │ ├── google │ │ └── protobuf │ │ │ ├── any.pb.swift │ │ │ ├── any_test.pb.swift │ │ │ ├── api.pb.swift │ │ │ ├── compiler │ │ │ └── plugin.pb.swift │ │ │ ├── descriptor.pb.swift │ │ │ ├── duration.pb.swift │ │ │ ├── empty.pb.swift │ │ │ ├── field_mask.pb.swift │ │ │ ├── map_lite_unittest.pb.swift │ │ │ ├── map_proto2_unittest.pb.swift │ │ │ ├── map_unittest.pb.swift │ │ │ ├── source_context.pb.swift │ │ │ ├── struct.pb.swift │ │ │ ├── test_messages_proto2.pb.swift │ │ │ ├── test_messages_proto3.pb.swift │ │ │ ├── timestamp.pb.swift │ │ │ ├── type.pb.swift │ │ │ ├── unittest.pb.swift │ │ │ ├── unittest_arena.pb.swift │ │ │ ├── unittest_custom_options.pb.swift │ │ │ ├── unittest_drop_unknown_fields.pb.swift │ │ │ ├── unittest_embed_optimize_for.pb.swift │ │ │ ├── unittest_empty.pb.swift │ │ │ ├── unittest_enormous_descriptor.pb.swift │ │ │ ├── unittest_import.pb.swift │ │ │ ├── unittest_import_lite.pb.swift │ │ │ ├── unittest_import_public.pb.swift │ │ │ ├── unittest_import_public_lite.pb.swift │ │ │ ├── unittest_lazy_dependencies.pb.swift │ │ │ ├── unittest_lazy_dependencies_custom_option.pb.swift │ │ │ ├── unittest_lazy_dependencies_enum.pb.swift │ │ │ ├── unittest_lite.pb.swift │ │ │ ├── unittest_lite_imports_nonlite.pb.swift │ │ │ ├── unittest_mset.pb.swift │ │ │ ├── unittest_mset_wire_format.pb.swift │ │ │ ├── unittest_no_arena.pb.swift │ │ │ ├── unittest_no_arena_import.pb.swift │ │ │ ├── unittest_no_arena_lite.pb.swift │ │ │ ├── unittest_no_field_presence.pb.swift │ │ │ ├── unittest_no_generic_services.pb.swift │ │ │ ├── unittest_optimize_for.pb.swift │ │ │ ├── unittest_preserve_unknown_enum.pb.swift │ │ │ ├── unittest_preserve_unknown_enum2.pb.swift │ │ │ ├── unittest_proto3.pb.swift │ │ │ ├── unittest_proto3_arena.pb.swift │ │ │ ├── unittest_proto3_arena_lite.pb.swift │ │ │ ├── unittest_proto3_lite.pb.swift │ │ │ ├── unittest_well_known_types.pb.swift │ │ │ └── wrappers.pb.swift │ ├── pluginlib_descriptor_test.pb.swift │ ├── unittest_swift_all_required_types.pb.swift │ ├── unittest_swift_cycle.pb.swift │ ├── unittest_swift_enum.pb.swift │ ├── unittest_swift_enum_optional_default.pb.swift │ ├── unittest_swift_enum_proto3.pb.swift │ ├── unittest_swift_extension.pb.swift │ ├── unittest_swift_extension2.pb.swift │ ├── unittest_swift_extension3.pb.swift │ ├── unittest_swift_extension4.pb.swift │ ├── unittest_swift_fieldorder.pb.swift │ ├── unittest_swift_groups.pb.swift │ ├── unittest_swift_naming.pb.swift │ ├── unittest_swift_naming_no_prefix.pb.swift │ ├── unittest_swift_oneof_all_required.pb.swift │ ├── unittest_swift_oneof_merging.pb.swift │ ├── unittest_swift_performance.pb.swift │ ├── unittest_swift_reserved.pb.swift │ ├── unittest_swift_reserved_ext.pb.swift │ ├── unittest_swift_runtime_proto2.pb.swift │ ├── unittest_swift_runtime_proto3.pb.swift │ └── unittest_swift_startup.pb.swift │ ├── Sources │ ├── Conformance │ │ ├── conformance.pb.swift │ │ ├── failure_list_swift.txt │ │ ├── main.swift │ │ ├── test_messages_proto2.pb.swift │ │ └── test_messages_proto3.pb.swift │ ├── SwiftProtobuf │ │ ├── AnyMessageStorage.swift │ │ ├── AnyUnpackError.swift │ │ ├── BinaryDecoder.swift │ │ ├── BinaryDecodingError.swift │ │ ├── BinaryDecodingOptions.swift │ │ ├── BinaryDelimited.swift │ │ ├── BinaryEncoder.swift │ │ ├── BinaryEncodingError.swift │ │ ├── BinaryEncodingSizeVisitor.swift │ │ ├── BinaryEncodingVisitor.swift │ │ ├── CustomJSONCodable.swift │ │ ├── Decoder.swift │ │ ├── DoubleFormatter.swift │ │ ├── Enum.swift │ │ ├── ExtensibleMessage.swift │ │ ├── ExtensionFieldValueSet.swift │ │ ├── ExtensionFields.swift │ │ ├── ExtensionMap.swift │ │ ├── FieldTag.swift │ │ ├── FieldTypes.swift │ │ ├── Google_Protobuf_Any+Extensions.swift │ │ ├── Google_Protobuf_Any+Registry.swift │ │ ├── Google_Protobuf_Duration+Extensions.swift │ │ ├── Google_Protobuf_FieldMask+Extensions.swift │ │ ├── Google_Protobuf_ListValue+Extensions.swift │ │ ├── Google_Protobuf_Struct+Extensions.swift │ │ ├── Google_Protobuf_Timestamp+Extensions.swift │ │ ├── Google_Protobuf_Value+Extensions.swift │ │ ├── Google_Protobuf_Wrappers+Extensions.swift │ │ ├── HashVisitor.swift │ │ ├── Internal.swift │ │ ├── JSONDecoder.swift │ │ ├── JSONDecodingError.swift │ │ ├── JSONDecodingOptions.swift │ │ ├── JSONEncoder.swift │ │ ├── JSONEncodingError.swift │ │ ├── JSONEncodingVisitor.swift │ │ ├── JSONMapEncodingVisitor.swift │ │ ├── JSONScanner.swift │ │ ├── MathUtils.swift │ │ ├── Message+AnyAdditions.swift │ │ ├── Message+BinaryAdditions.swift │ │ ├── Message+JSONAdditions.swift │ │ ├── Message+JSONArrayAdditions.swift │ │ ├── Message+TextFormatAdditions.swift │ │ ├── Message.swift │ │ ├── MessageExtension.swift │ │ ├── NameMap.swift │ │ ├── ProtoNameProviding.swift │ │ ├── ProtobufAPIVersionCheck.swift │ │ ├── ProtobufMap.swift │ │ ├── SelectiveVisitor.swift │ │ ├── SimpleExtensionMap.swift │ │ ├── StringUtils.swift │ │ ├── TextFormatDecoder.swift │ │ ├── TextFormatDecodingError.swift │ │ ├── TextFormatEncoder.swift │ │ ├── TextFormatEncodingVisitor.swift │ │ ├── TextFormatScanner.swift │ │ ├── TimeUtils.swift │ │ ├── UnknownStorage.swift │ │ ├── Varint.swift │ │ ├── Version.swift │ │ ├── Visitor.swift │ │ ├── WireFormat.swift │ │ ├── ZigZag.swift │ │ ├── any.pb.swift │ │ ├── api.pb.swift │ │ ├── duration.pb.swift │ │ ├── empty.pb.swift │ │ ├── field_mask.pb.swift │ │ ├── source_context.pb.swift │ │ ├── struct.pb.swift │ │ ├── timestamp.pb.swift │ │ ├── type.pb.swift │ │ └── wrappers.pb.swift │ ├── SwiftProtobufPluginLibrary │ │ ├── Array+Extensions.swift │ │ ├── CodePrinter.swift │ │ ├── Descriptor+Extensions.swift │ │ ├── Descriptor.swift │ │ ├── FieldNumbers.swift │ │ ├── Google_Protobuf_Compiler_CodeGeneratorResponse+Extensions.swift │ │ ├── Google_Protobuf_SourceCodeInfo+Extensions.swift │ │ ├── NamingUtils.swift │ │ ├── ProtoFileToModuleMappings.swift │ │ ├── ProvidesLocationPath.swift │ │ ├── ProvidesSourceCodeLocation.swift │ │ ├── SwiftLanguage.swift │ │ ├── SwiftProtobufInfo.swift │ │ ├── SwiftProtobufNamer.swift │ │ ├── UnicodeScalar+Extensions.swift │ │ ├── descriptor.pb.swift │ │ ├── plugin.pb.swift │ │ └── swift_protobuf_module_mappings.pb.swift │ └── protoc-gen-swift │ │ ├── CommandLine+Extensions.swift │ │ ├── Descriptor+Extensions.swift │ │ ├── EnumGenerator.swift │ │ ├── ExtensionSetGenerator.swift │ │ ├── FieldGenerator.swift │ │ ├── FileGenerator.swift │ │ ├── FileIo.swift │ │ ├── GenerationError.swift │ │ ├── GeneratorOptions.swift │ │ ├── Google_Protobuf_DescriptorProto+Extensions.swift │ │ ├── Google_Protobuf_FileDescriptorProto+Extensions.swift │ │ ├── MessageFieldGenerator.swift │ │ ├── MessageGenerator.swift │ │ ├── MessageStorageClassGenerator.swift │ │ ├── OneofGenerator.swift │ │ ├── StringUtils.swift │ │ ├── Version.swift │ │ └── main.swift │ ├── SwiftProtobuf.podspec │ ├── SwiftProtobuf.xcodeproj │ ├── ProtobufTestSuite_Info.plist │ ├── Protobuf_Info.plist │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── SwiftProtobuf_iOS.xcscheme │ │ ├── SwiftProtobuf_macOS.xcscheme │ │ ├── SwiftProtobuf_tvOS.xcscheme │ │ ├── SwiftProtobuf_watchOS.xcscheme │ │ └── xcschememanagement.plist │ └── Tests │ ├── LinuxMain.swift │ ├── SwiftProtobufPluginLibraryTests │ ├── Descriptor+TestHelpers.swift │ ├── DescriptorTestData.swift │ ├── Test_Descriptor.swift │ ├── Test_NamingUtils.swift │ ├── Test_ProtoFileToModuleMappings.swift │ ├── Test_SwiftLanguage.swift │ └── Test_SwiftProtobufNamer.swift │ └── SwiftProtobufTests │ ├── Message+UInt8ArrayHelpers.swift │ ├── TestHelpers.swift │ ├── Test_AllTypes.swift │ ├── Test_AllTypes_Proto3.swift │ ├── Test_Any.swift │ ├── Test_Api.swift │ ├── Test_BasicFields_Access_Proto2.swift │ ├── Test_BasicFields_Access_Proto3.swift │ ├── Test_BinaryDecodingOptions.swift │ ├── Test_BinaryDelimited.swift │ ├── Test_Conformance.swift │ ├── Test_Duration.swift │ ├── Test_Empty.swift │ ├── Test_Enum.swift │ ├── Test_EnumWithAliases.swift │ ├── Test_Enum_Proto2.swift │ ├── Test_Extensions.swift │ ├── Test_ExtremeDefaultValues.swift │ ├── Test_FieldMask.swift │ ├── Test_FieldOrdering.swift │ ├── Test_GroupWithGroups.swift │ ├── Test_JSON.swift │ ├── Test_JSONDecodingOptions.swift │ ├── Test_JSON_Array.swift │ ├── Test_JSON_Conformance.swift │ ├── Test_JSON_Group.swift │ ├── Test_Map.swift │ ├── Test_MapFields_Access_Proto2.swift │ ├── Test_MapFields_Access_Proto3.swift │ ├── Test_Map_JSON.swift │ ├── Test_Merge.swift │ ├── Test_MessageSet.swift │ ├── Test_Naming.swift │ ├── Test_OneofFields_Access_Proto2.swift │ ├── Test_OneofFields_Access_Proto3.swift │ ├── Test_Packed.swift │ ├── Test_ParsingMerge.swift │ ├── Test_ReallyLargeTagNumber.swift │ ├── Test_RecursiveMap.swift │ ├── Test_Required.swift │ ├── Test_Reserved.swift │ ├── Test_SimpleExtensionMap.swift │ ├── Test_Struct.swift │ ├── Test_TextFormat_Map_proto3.swift │ ├── Test_TextFormat_Unknown.swift │ ├── Test_TextFormat_WKT_proto3.swift │ ├── Test_TextFormat_proto2.swift │ ├── Test_TextFormat_proto2_extensions.swift │ ├── Test_TextFormat_proto3.swift │ ├── Test_Timestamp.swift │ ├── Test_Type.swift │ ├── Test_Unknown_proto2.swift │ ├── Test_Unknown_proto3.swift │ ├── Test_Wrappers.swift │ ├── any_test.pb.swift │ ├── conformance.pb.swift │ ├── descriptor.pb.swift │ ├── generated_swift_names_enum_cases.pb.swift │ ├── generated_swift_names_enums.pb.swift │ ├── generated_swift_names_fields.pb.swift │ ├── generated_swift_names_messages.pb.swift │ ├── map_proto2_unittest.pb.swift │ ├── map_unittest.pb.swift │ ├── test_messages_proto3.pb.swift │ ├── unittest.pb.swift │ ├── unittest_arena.pb.swift │ ├── unittest_custom_options.pb.swift │ ├── unittest_drop_unknown_fields.pb.swift │ ├── unittest_embed_optimize_for.pb.swift │ ├── unittest_empty.pb.swift │ ├── unittest_import.pb.swift │ ├── unittest_import_lite.pb.swift │ ├── unittest_import_public.pb.swift │ ├── unittest_import_public_lite.pb.swift │ ├── unittest_lite.pb.swift │ ├── unittest_lite_imports_nonlite.pb.swift │ ├── unittest_mset.pb.swift │ ├── unittest_mset_wire_format.pb.swift │ ├── unittest_no_arena.pb.swift │ ├── unittest_no_arena_import.pb.swift │ ├── unittest_no_arena_lite.pb.swift │ ├── unittest_no_field_presence.pb.swift │ ├── unittest_no_generic_services.pb.swift │ ├── unittest_optimize_for.pb.swift │ ├── unittest_preserve_unknown_enum.pb.swift │ ├── unittest_preserve_unknown_enum2.pb.swift │ ├── unittest_proto3.pb.swift │ ├── unittest_proto3_arena.pb.swift │ ├── unittest_swift_all_required_types.pb.swift │ ├── unittest_swift_cycle.pb.swift │ ├── unittest_swift_enum.pb.swift │ ├── unittest_swift_enum_optional_default.pb.swift │ ├── unittest_swift_enum_proto3.pb.swift │ ├── unittest_swift_extension.pb.swift │ ├── unittest_swift_extension2.pb.swift │ ├── unittest_swift_extension3.pb.swift │ ├── unittest_swift_extension4.pb.swift │ ├── unittest_swift_fieldorder.pb.swift │ ├── unittest_swift_groups.pb.swift │ ├── unittest_swift_naming.pb.swift │ ├── unittest_swift_naming_no_prefix.pb.swift │ ├── unittest_swift_oneof_all_required.pb.swift │ ├── unittest_swift_oneof_merging.pb.swift │ ├── unittest_swift_performance.pb.swift │ ├── unittest_swift_reserved.pb.swift │ ├── unittest_swift_reserved_ext.pb.swift │ ├── unittest_swift_runtime_proto2.pb.swift │ ├── unittest_swift_runtime_proto3.pb.swift │ ├── unittest_swift_startup.pb.swift │ └── unittest_well_known_types.pb.swift ├── EventsUI ├── EventsUI.xcodeproj │ └── project.pbxproj └── EventsUI │ ├── EVTButton.swift │ ├── EVTMagicImageView.swift │ ├── EVTMaskButton.h │ ├── EVTMaskButton.m │ ├── EVTSpinner.swift │ ├── EVTTextFieldCell.swift │ ├── EVTWindow.swift │ ├── EventsUI.h │ ├── Info.plist │ ├── NSImage+CGImage.h │ ├── NSImage+CGImage.m │ ├── PiPZoom.car │ └── WhiteSpinner.car ├── LICENSE ├── README.md ├── Releases ├── AppleEvents_latest.zip ├── AppleEvents_v1.6.zip └── appcast.xml ├── Resources ├── CastButton.sketch ├── DefaultIcon.png ├── DefaultIcon@2x.png ├── DefaultIcon@3x.png ├── Events Icon.sketch ├── IconMask.png ├── IconMask@2x.png ├── IconMask@3x.png ├── chromecast.png ├── chromecast@2x.png └── chromecast@3x.png ├── bootstrap.sh ├── chromecast-2.png ├── chromecast.png ├── dockicon.png ├── pipbutton.png ├── screenshot2.png └── screenshot_sep_2018.png /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | __MACOSX 3 | *.pbxuser 4 | !default.pbxuser 5 | *.mode1v3 6 | !default.mode1v3 7 | *.mode2v3 8 | !default.mode2v3 9 | *.perspectivev3 10 | !default.perspectivev3 11 | *.xcworkspace 12 | !default.xcworkspace 13 | xcuserdata 14 | profile 15 | *.moved-aside 16 | DerivedData 17 | .idea/ 18 | Crashlytics.sh 19 | generatechangelog.sh 20 | Pods/ -------------------------------------------------------------------------------- /Apple Events/Assets.xcassets/AppIcon.appiconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Apple Events/Assets.xcassets/AppIcon.appiconset/icon_128x128.png -------------------------------------------------------------------------------- /Apple Events/Assets.xcassets/AppIcon.appiconset/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Apple Events/Assets.xcassets/AppIcon.appiconset/icon_128x128@2x.png -------------------------------------------------------------------------------- /Apple Events/Assets.xcassets/AppIcon.appiconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Apple Events/Assets.xcassets/AppIcon.appiconset/icon_16x16.png -------------------------------------------------------------------------------- /Apple Events/Assets.xcassets/AppIcon.appiconset/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Apple Events/Assets.xcassets/AppIcon.appiconset/icon_16x16@2x.png -------------------------------------------------------------------------------- /Apple Events/Assets.xcassets/AppIcon.appiconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Apple Events/Assets.xcassets/AppIcon.appiconset/icon_256x256.png -------------------------------------------------------------------------------- /Apple Events/Assets.xcassets/AppIcon.appiconset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Apple Events/Assets.xcassets/AppIcon.appiconset/icon_256x256@2x.png -------------------------------------------------------------------------------- /Apple Events/Assets.xcassets/AppIcon.appiconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Apple Events/Assets.xcassets/AppIcon.appiconset/icon_32x32.png -------------------------------------------------------------------------------- /Apple Events/Assets.xcassets/AppIcon.appiconset/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Apple Events/Assets.xcassets/AppIcon.appiconset/icon_32x32@2x.png -------------------------------------------------------------------------------- /Apple Events/Assets.xcassets/AppIcon.appiconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Apple Events/Assets.xcassets/AppIcon.appiconset/icon_512x512.png -------------------------------------------------------------------------------- /Apple Events/Assets.xcassets/AppIcon.appiconset/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Apple Events/Assets.xcassets/AppIcon.appiconset/icon_512x512@2x.png -------------------------------------------------------------------------------- /Apple Events/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Apple Events/Assets.xcassets/chromecast.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "chromecast.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "chromecast@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "chromecast@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | }, 23 | "properties" : { 24 | "template-rendering-intent" : "template" 25 | } 26 | } -------------------------------------------------------------------------------- /Apple Events/Assets.xcassets/chromecast.imageset/chromecast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Apple Events/Assets.xcassets/chromecast.imageset/chromecast.png -------------------------------------------------------------------------------- /Apple Events/Assets.xcassets/chromecast.imageset/chromecast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Apple Events/Assets.xcassets/chromecast.imageset/chromecast@2x.png -------------------------------------------------------------------------------- /Apple Events/Assets.xcassets/chromecast.imageset/chromecast@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Apple Events/Assets.xcassets/chromecast.imageset/chromecast@3x.png -------------------------------------------------------------------------------- /Apple Events/EVTAppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // EVTAppDelegate.h 3 | // Apple Events 4 | // 5 | // Created by Guilherme Rambo on 05/09/16. 6 | // Copyright © 2016 Guilherme Rambo. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface EVTAppDelegate : NSObject 12 | 13 | 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /Apple Events/EVTEvent+Dictionary.h: -------------------------------------------------------------------------------- 1 | // 2 | // EVTEvent+Dictionary.h 3 | // Apple Events 4 | // 5 | // Created by Guilherme Rambo on 05/09/16. 6 | // Copyright © 2016 Guilherme Rambo. All rights reserved. 7 | // 8 | 9 | #import "EVTEvent.h" 10 | 11 | @interface EVTEvent (Dictionary) 12 | 13 | + (instancetype)eventWithDictionary:(NSDictionary *)dict localizationDictionary:(NSDictionary *)localizationDict fallbackLocalizations:(NSDictionary *)fallbackLocalizations; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Apple Events/EVTEventCollectionViewItem.h: -------------------------------------------------------------------------------- 1 | // 2 | // EVTEventCollectionViewItem.h 3 | // Apple Events 4 | // 5 | // Created by Guilherme Rambo on 9/5/16. 6 | // Copyright © 2016 Guilherme Rambo. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @class EVTEvent, EVTImageFetcher; 12 | 13 | @interface EVTEventCollectionViewItem : NSCollectionViewItem 14 | 15 | @property (nonatomic, weak) EVTImageFetcher *imageFetcher; 16 | @property (nonatomic, copy) EVTEvent *event; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /Apple Events/EVTEventsCache.h: -------------------------------------------------------------------------------- 1 | // 2 | // EVTEventsCache.h 3 | // Apple Events 4 | // 5 | // Created by Guilherme Rambo on 05/09/16. 6 | // Copyright © 2016 Guilherme Rambo. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @class EVTEvent; 12 | 13 | @interface EVTEventsCache : NSObject 14 | 15 | + (instancetype)cache; 16 | 17 | @property (nonatomic, readonly) NSArray *cachedEvents; 18 | 19 | - (void)cacheEvents:(NSArray *)events; 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /Apple Events/EVTEventsViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // EVTEventsViewController.h 3 | // Apple Events 4 | // 5 | // Created by Guilherme Rambo on 05/09/16. 6 | // Copyright © 2016 Guilherme Rambo. All rights reserved. 7 | // 8 | 9 | @import Cocoa; 10 | 11 | @class EVTEvent; 12 | 13 | @interface EVTEventsViewController : NSViewController 14 | 15 | - (void)playLiveEvent:(EVTEvent *)event; 16 | - (void)playOnDemandEvent:(EVTEvent *)event; 17 | - (void)showEvent:(EVTEvent *)event; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /Apple Events/EVTImageFetcher.h: -------------------------------------------------------------------------------- 1 | // 2 | // EVTImageFetcher.h 3 | // Apple Events 4 | // 5 | // Created by Guilherme Rambo on 9/5/16. 6 | // Copyright © 2016 Guilherme Rambo. All rights reserved. 7 | // 8 | 9 | @import Cocoa; 10 | 11 | @class EVTEnvironment; 12 | 13 | @interface EVTImageFetcher : NSObject 14 | 15 | - (instancetype)initWithEnvironment:(EVTEnvironment *)environment; 16 | 17 | - (void)fetchImageNamed:(NSString *)imageName completionHandler:(void (^)(NSImage *))completionHandler; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /Apple Events/EVTPlayerViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // EVTPlayerViewController.h 3 | // Apple Events 4 | // 5 | // Created by Guilherme Rambo on 9/5/16. 6 | // Copyright © 2016 Guilherme Rambo. All rights reserved. 7 | // 8 | 9 | @import Cocoa; 10 | 11 | @class EVTEvent; 12 | 13 | @interface EVTPlayerViewController : NSViewController 14 | 15 | + (instancetype)playerViewControllerWithEvent:(EVTEvent *)event videoURL:(NSURL *)videoURL; 16 | 17 | - (void)stop; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /Apple Events/EVTVerboseLogger.h: -------------------------------------------------------------------------------- 1 | // 2 | // EVTVerboseLogger.h 3 | // Apple Events 4 | // 5 | // Created by Guilherme Rambo on 07/09/16. 6 | // Copyright © 2016 Guilherme Rambo. All rights reserved. 7 | // 8 | 9 | @import Cocoa; 10 | 11 | @interface EVTVerboseLogger : NSObject 12 | 13 | + (instancetype)shared; 14 | 15 | - (void)addMessage:(NSString *)message; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /Apple Events/Environment.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | EVTCurrentEventHash 6 | tOZQpDNp_FoqpLBRiXrZkw 7 | 8 | 9 | -------------------------------------------------------------------------------- /Apple Events/GRTextField.h: -------------------------------------------------------------------------------- 1 | // 2 | // GRTextField.h 3 | // WWDCAppKit 4 | // 5 | // Created by Guilherme Rambo on 23/04/15. 6 | // Copyright (c) 2015 Guilherme Rambo. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface GRTextField : NSTextField 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Apple Events/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // Apple Events 4 | // 5 | // Created by Guilherme Rambo on 05/09/16. 6 | // Copyright © 2016 Guilherme Rambo. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, const char * argv[]) { 12 | return NSApplicationMain(argc, argv); 13 | } 14 | -------------------------------------------------------------------------------- /AppleEventsDock/EVTDockIconView.h: -------------------------------------------------------------------------------- 1 | // 2 | // EVTDockIconView.h 3 | // Apple Events 4 | // 5 | // Created by Guilherme Rambo on 9/6/16. 6 | // Copyright © 2016 Guilherme Rambo. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface EVTDockIconView : NSView 12 | 13 | @property (nonatomic, copy) NSImage *eventImage; 14 | @property (nonatomic, assign) BOOL isLive; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /AppleEventsDock/EVTDockTilePlugIn.h: -------------------------------------------------------------------------------- 1 | // 2 | // EVTDockTilePlugIn.h 3 | // Apple Events 4 | // 5 | // Created by Guilherme Rambo on 9/6/16. 6 | // Copyright © 2016 Guilherme Rambo. All rights reserved. 7 | // 8 | 9 | @import Cocoa; 10 | 11 | @interface EVTDockTilePlugIn : NSObject 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Dependencies/ChromeCastCore/ChromeCastCore/CASTV2PlatformReader.h: -------------------------------------------------------------------------------- 1 | // 2 | // CASTV2PlatformReader.h 3 | // ChromeCastCore 4 | // 5 | // Created by Guilherme Rambo on 20/10/16. 6 | // Copyright © 2016 Guilherme Rambo. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | NS_ASSUME_NONNULL_BEGIN 12 | 13 | @interface CASTV2PlatformReader : NSObject 14 | 15 | - (instancetype)initWithStream:(NSInputStream *)stream; 16 | 17 | - (void)readStream; 18 | - (NSData *__nullable)nextMessage; 19 | 20 | @end 21 | 22 | NS_ASSUME_NONNULL_END 23 | -------------------------------------------------------------------------------- /Dependencies/ChromeCastCore/ChromeCastCore/CastMessagePayload.swift: -------------------------------------------------------------------------------- 1 | // 2 | // CastMessagePayload.swift 3 | // ChromeCastCore 4 | // 5 | // Created by Guilherme Rambo on 22/04/18. 6 | // Copyright © 2018 Guilherme Rambo. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | class CastMessagePayload: NSObject, Codable { 12 | var type: CastMessageType = CastMessageType.ping 13 | var requestId: Int? 14 | 15 | enum CodingKeys: String, CodingKey { 16 | case type 17 | case requestId 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Headers/SPUDownloaderDeprecated.h: -------------------------------------------------------------------------------- 1 | // 2 | // SPUDownloaderDeprecated.h 3 | // Sparkle 4 | // 5 | // Created by Deadpikle on 12/20/17. 6 | // Copyright © 2017 Sparkle Project. All rights reserved. 7 | // 8 | 9 | #import "SPUDownloader.h" 10 | 11 | @interface SPUDownloaderDeprecated : SPUDownloader 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Headers/SPUDownloaderSession.h: -------------------------------------------------------------------------------- 1 | // 2 | // SPUDownloaderSession.h 3 | // Sparkle 4 | // 5 | // Created by Deadpikle on 12/20/17. 6 | // Copyright © 2017 Sparkle Project. All rights reserved. 7 | // 8 | 9 | #if __has_feature(modules) 10 | @import Foundation; 11 | #else 12 | #import 13 | #endif 14 | #import "SPUDownloader.h" 15 | #import "SPUDownloaderProtocol.h" 16 | 17 | NS_CLASS_AVAILABLE(NSURLSESSION_AVAILABLE, 7_0) 18 | @interface SPUDownloaderSession : SPUDownloader 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Headers/SUExport.h: -------------------------------------------------------------------------------- 1 | // 2 | // SUExport.h 3 | // Sparkle 4 | // 5 | // Created by Jake Petroules on 2014-08-23. 6 | // Copyright (c) 2014 Sparkle Project. All rights reserved. 7 | // 8 | 9 | #ifndef SUEXPORT_H 10 | #define SUEXPORT_H 11 | 12 | #ifdef BUILDING_SPARKLE 13 | #define SU_EXPORT __attribute__((visibility("default"))) 14 | #else 15 | #define SU_EXPORT 16 | #endif 17 | 18 | #endif 19 | -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module Sparkle { 2 | umbrella header "Sparkle.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/PrivateHeaders/SUUnarchiver.h: -------------------------------------------------------------------------------- 1 | // 2 | // SUUnarchiver.h 3 | // Sparkle 4 | // 5 | // Created by Andy Matuschak on 3/16/06. 6 | // Copyright 2006 Andy Matuschak. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | NS_ASSUME_NONNULL_BEGIN 12 | 13 | @protocol SUUnarchiverProtocol; 14 | 15 | @interface SUUnarchiver : NSObject 16 | 17 | + (nullable id )unarchiverForPath:(NSString *)path updatingHostBundlePath:(nullable NSString *)hostPath decryptionPassword:(nullable NSString *)decryptionPassword; 18 | 19 | @end 20 | 21 | NS_ASSUME_NONNULL_END 22 | -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/MacOS/Autoupdate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/MacOS/Autoupdate -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/MacOS/fileop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/MacOS/fileop -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/AppIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/AppIcon.icns -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/SUStatus.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/SUStatus.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/ar.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/ar.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/cs.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/cs.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/da.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/da.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/de.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/de.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/el.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/el.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/en.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/en.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/es.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/es.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/fi.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/fi.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/fr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/fr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/hu.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/hu.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/is.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/is.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/it.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/it.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/ja.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/ja.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/ko.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/ko.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/nb.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/nb.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/nl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/nl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/pl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/pl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/pt_BR.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/pt_BR.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/pt_PT.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/pt_PT.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/ro.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/ro.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/ru.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/ru.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/sk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/sk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/sl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/sl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/sv.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/sv.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/th.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/th.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/tr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/tr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/uk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/uk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/zh_CN.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/zh_CN.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/zh_TW.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/Autoupdate.app/Contents/Resources/zh_TW.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/SUStatus.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/SUStatus.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/ar.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/ar.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/ar.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/ar.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/ar.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/ar.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/ar.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/ar.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/cs.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/cs.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/cs.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/cs.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/cs.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/cs.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/cs.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/cs.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/da.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/da.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/da.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/da.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/da.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/da.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/da.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/da.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/de.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/de.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/de.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/de.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/de.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/de.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/de.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/de.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/el.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/el.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/el.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/el.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/el.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/el.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/el.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/el.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/en.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/en.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/en.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/en.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/en.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/en.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/en.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/en.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/es.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/es.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/es.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/es.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/es.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/es.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/es.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/es.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/fi.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/fi.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/fi.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/fi.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/fi.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/fi.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/fi.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/fi.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/fr.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/fr.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/fr.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/fr.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/fr.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/fr.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/fr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/fr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/fr_CA.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/fr_CA.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/fr_CA.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/fr_CA.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/fr_CA.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/fr_CA.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/fr_CA.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/fr_CA.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/hu.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/hu.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/hu.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/hu.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/hu.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/hu.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/hu.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/hu.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/is.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/is.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/is.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/is.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/is.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/is.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/is.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/is.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/it.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/it.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/it.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/it.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/it.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/it.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/it.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/it.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/ja.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/ja.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/ja.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/ja.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/ja.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/ja.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/ja.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/ja.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/ko.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/ko.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/ko.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/ko.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/ko.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/ko.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/ko.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/ko.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/nb.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/nb.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/nb.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/nb.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/nb.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/nb.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/nb.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/nb.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/nl.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/nl.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/nl.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/nl.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/nl.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/nl.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/nl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/nl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/pl.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/pl.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/pl.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/pl.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/pl.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/pl.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/pl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/pl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/pt.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/pt.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/pt.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/pt.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/pt.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/pt.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/pt.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/pt.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/pt_BR.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/pt_BR.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/pt_BR.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/pt_BR.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/pt_BR.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/pt_BR.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/pt_BR.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/pt_BR.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/pt_PT.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/pt_PT.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/pt_PT.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/pt_PT.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/pt_PT.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/pt_PT.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/pt_PT.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/pt_PT.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/ro.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/ro.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/ro.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/ro.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/ro.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/ro.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/ro.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/ro.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/ru.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/ru.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/ru.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/ru.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/ru.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/ru.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/ru.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/ru.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/sk.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/sk.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/sk.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/sk.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/sk.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/sk.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/sk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/sk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/sl.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/sl.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/sl.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/sl.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/sl.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/sl.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/sl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/sl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/sv.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/sv.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/sv.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/sv.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/sv.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/sv.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/sv.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/sv.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/th.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/th.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/th.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/th.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/th.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/th.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/th.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/th.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/tr.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/tr.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/tr.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/tr.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/tr.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/tr.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/tr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/tr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/uk.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/uk.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/uk.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/uk.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/uk.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/uk.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/uk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/uk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/zh_CN.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/zh_CN.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/zh_CN.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/zh_CN.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/zh_CN.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/zh_CN.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/zh_CN.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/zh_CN.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/zh_TW.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/zh_TW.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/zh_TW.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/zh_TW.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/zh_TW.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/zh_TW.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Resources/zh_TW.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Resources/zh_TW.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Sparkle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Sparkle -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Headers/SPUDownloaderDeprecated.h: -------------------------------------------------------------------------------- 1 | // 2 | // SPUDownloaderDeprecated.h 3 | // Sparkle 4 | // 5 | // Created by Deadpikle on 12/20/17. 6 | // Copyright © 2017 Sparkle Project. All rights reserved. 7 | // 8 | 9 | #import "SPUDownloader.h" 10 | 11 | @interface SPUDownloaderDeprecated : SPUDownloader 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Headers/SPUDownloaderSession.h: -------------------------------------------------------------------------------- 1 | // 2 | // SPUDownloaderSession.h 3 | // Sparkle 4 | // 5 | // Created by Deadpikle on 12/20/17. 6 | // Copyright © 2017 Sparkle Project. All rights reserved. 7 | // 8 | 9 | #if __has_feature(modules) 10 | @import Foundation; 11 | #else 12 | #import 13 | #endif 14 | #import "SPUDownloader.h" 15 | #import "SPUDownloaderProtocol.h" 16 | 17 | NS_CLASS_AVAILABLE(NSURLSESSION_AVAILABLE, 7_0) 18 | @interface SPUDownloaderSession : SPUDownloader 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Headers/SUExport.h: -------------------------------------------------------------------------------- 1 | // 2 | // SUExport.h 3 | // Sparkle 4 | // 5 | // Created by Jake Petroules on 2014-08-23. 6 | // Copyright (c) 2014 Sparkle Project. All rights reserved. 7 | // 8 | 9 | #ifndef SUEXPORT_H 10 | #define SUEXPORT_H 11 | 12 | #ifdef BUILDING_SPARKLE 13 | #define SU_EXPORT __attribute__((visibility("default"))) 14 | #else 15 | #define SU_EXPORT 16 | #endif 17 | 18 | #endif 19 | -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module Sparkle { 2 | umbrella header "Sparkle.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/PrivateHeaders/SUUnarchiver.h: -------------------------------------------------------------------------------- 1 | // 2 | // SUUnarchiver.h 3 | // Sparkle 4 | // 5 | // Created by Andy Matuschak on 3/16/06. 6 | // Copyright 2006 Andy Matuschak. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | NS_ASSUME_NONNULL_BEGIN 12 | 13 | @protocol SUUnarchiverProtocol; 14 | 15 | @interface SUUnarchiver : NSObject 16 | 17 | + (nullable id )unarchiverForPath:(NSString *)path updatingHostBundlePath:(nullable NSString *)hostPath decryptionPassword:(nullable NSString *)decryptionPassword; 18 | 19 | @end 20 | 21 | NS_ASSUME_NONNULL_END 22 | -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/MacOS/Autoupdate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/MacOS/Autoupdate -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/MacOS/fileop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/MacOS/fileop -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/AppIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/AppIcon.icns -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/SUStatus.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/SUStatus.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ar.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ar.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/cs.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/cs.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/da.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/da.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/de.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/de.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/el.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/el.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/en.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/en.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/es.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/es.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/fi.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/fi.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/fr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/fr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/hu.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/hu.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/is.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/is.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/it.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/it.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ja.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ja.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ko.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ko.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/nb.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/nb.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/nl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/nl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pt_BR.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pt_BR.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pt_PT.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pt_PT.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ro.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ro.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ru.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ru.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sv.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sv.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/th.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/th.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/tr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/tr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/uk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/uk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/zh_CN.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/zh_CN.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/zh_TW.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/zh_TW.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/SUStatus.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/SUStatus.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/ar.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/ar.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/ar.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/ar.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/ar.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/ar.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/ar.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/ar.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/cs.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/cs.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/cs.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/cs.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/da.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/da.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/da.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/da.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/de.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/de.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/de.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/de.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/el.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/el.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/el.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/el.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/el.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/el.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/el.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/el.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/en.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/en.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/es.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/es.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/es.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/es.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/fi.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/fi.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/fi.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/fi.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/fi.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/fi.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/fi.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/fi.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/fr.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/fr.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/fr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/fr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/fr_CA.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/fr_CA.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/fr_CA.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/fr_CA.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/fr_CA.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/fr_CA.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/fr_CA.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/fr_CA.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/hu.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/hu.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/hu.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/hu.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/hu.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/hu.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/hu.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/hu.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/is.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/is.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/is.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/is.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/it.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/it.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/it.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/it.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/ja.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/ja.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/ja.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/ja.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/ko.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/ko.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/ko.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/ko.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/ko.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/ko.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/ko.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/ko.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/nb.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/nb.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/nb.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/nb.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/nb.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/nb.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/nb.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/nb.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/nl.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/nl.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/nl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/nl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/pl.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/pl.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/pl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/pl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/pt.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/pt.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/pt.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/pt.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/pt.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/pt.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/pt.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/pt.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/ro.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/ro.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/ro.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/ro.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/ro.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/ro.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/ro.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/ro.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/ru.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/ru.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/ru.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/ru.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/sk.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/sk.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/sk.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/sk.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/sk.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/sk.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/sk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/sk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/sl.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/sl.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/sl.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/sl.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/sl.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/sl.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/sl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/sl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/sv.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/sv.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/sv.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/sv.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/th.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/th.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/th.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/th.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/th.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/th.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/th.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/th.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/tr.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/tr.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/tr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/tr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/uk.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/uk.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/uk.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/uk.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/uk.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/uk.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/uk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/uk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/A/Sparkle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/A/Sparkle -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Headers/SPUDownloaderDeprecated.h: -------------------------------------------------------------------------------- 1 | // 2 | // SPUDownloaderDeprecated.h 3 | // Sparkle 4 | // 5 | // Created by Deadpikle on 12/20/17. 6 | // Copyright © 2017 Sparkle Project. All rights reserved. 7 | // 8 | 9 | #import "SPUDownloader.h" 10 | 11 | @interface SPUDownloaderDeprecated : SPUDownloader 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Headers/SPUDownloaderSession.h: -------------------------------------------------------------------------------- 1 | // 2 | // SPUDownloaderSession.h 3 | // Sparkle 4 | // 5 | // Created by Deadpikle on 12/20/17. 6 | // Copyright © 2017 Sparkle Project. All rights reserved. 7 | // 8 | 9 | #if __has_feature(modules) 10 | @import Foundation; 11 | #else 12 | #import 13 | #endif 14 | #import "SPUDownloader.h" 15 | #import "SPUDownloaderProtocol.h" 16 | 17 | NS_CLASS_AVAILABLE(NSURLSESSION_AVAILABLE, 7_0) 18 | @interface SPUDownloaderSession : SPUDownloader 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Headers/SUExport.h: -------------------------------------------------------------------------------- 1 | // 2 | // SUExport.h 3 | // Sparkle 4 | // 5 | // Created by Jake Petroules on 2014-08-23. 6 | // Copyright (c) 2014 Sparkle Project. All rights reserved. 7 | // 8 | 9 | #ifndef SUEXPORT_H 10 | #define SUEXPORT_H 11 | 12 | #ifdef BUILDING_SPARKLE 13 | #define SU_EXPORT __attribute__((visibility("default"))) 14 | #else 15 | #define SU_EXPORT 16 | #endif 17 | 18 | #endif 19 | -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module Sparkle { 2 | umbrella header "Sparkle.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/MacOS/Autoupdate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/MacOS/Autoupdate -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/MacOS/fileop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/MacOS/fileop -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/AppIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/AppIcon.icns -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/SUStatus.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/SUStatus.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/ar.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/ar.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/cs.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/cs.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/da.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/da.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/de.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/de.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/el.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/el.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/en.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/en.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/es.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/es.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/fi.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/fi.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/fr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/fr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/hu.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/hu.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/is.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/is.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/it.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/it.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/ja.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/ja.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/ko.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/ko.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/nb.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/nb.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/nl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/nl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/pl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/pl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/pt_BR.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/pt_BR.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/pt_PT.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/pt_PT.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/ro.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/ro.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/ru.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/ru.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/sk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/sk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/sl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/sl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/sv.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/sv.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/th.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/th.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/tr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/tr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/uk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/uk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/zh_CN.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/zh_CN.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/zh_TW.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/Autoupdate.app/Contents/Resources/zh_TW.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/SUStatus.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/SUStatus.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/ar.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/ar.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/ar.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/ar.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/ar.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/ar.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/ar.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/ar.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/cs.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/cs.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/cs.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/cs.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/cs.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/cs.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/cs.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/cs.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/da.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/da.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/da.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/da.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/da.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/da.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/da.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/da.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/de.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/de.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/de.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/de.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/de.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/de.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/de.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/de.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/el.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/el.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/el.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/el.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/el.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/el.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/el.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/el.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/en.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/en.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/en.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/en.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/en.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/en.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/en.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/en.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/es.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/es.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/es.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/es.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/es.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/es.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/es.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/es.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/fi.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/fi.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/fi.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/fi.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/fi.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/fi.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/fi.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/fi.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/fr.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/fr.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/fr.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/fr.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/fr.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/fr.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/fr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/fr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/fr_CA.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/fr_CA.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/fr_CA.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/fr_CA.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/fr_CA.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/fr_CA.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/fr_CA.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/fr_CA.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/hu.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/hu.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/hu.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/hu.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/hu.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/hu.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/hu.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/hu.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/is.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/is.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/is.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/is.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/is.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/is.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/is.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/is.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/it.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/it.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/it.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/it.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/it.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/it.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/it.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/it.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/ja.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/ja.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/ja.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/ja.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/ja.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/ja.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/ja.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/ja.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/ko.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/ko.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/ko.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/ko.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/ko.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/ko.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/ko.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/ko.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/nb.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/nb.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/nb.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/nb.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/nb.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/nb.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/nb.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/nb.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/nl.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/nl.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/nl.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/nl.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/nl.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/nl.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/nl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/nl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/pl.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/pl.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/pl.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/pl.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/pl.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/pl.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/pl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/pl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/pt.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/pt.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/pt.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/pt.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/pt.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/pt.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/pt.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/pt.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/pt_BR.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/pt_BR.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/pt_BR.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/pt_BR.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/pt_BR.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/pt_BR.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/pt_BR.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/pt_BR.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/pt_PT.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/pt_PT.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/pt_PT.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/pt_PT.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/pt_PT.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/pt_PT.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/pt_PT.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/pt_PT.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/ro.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/ro.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/ro.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/ro.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/ro.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/ro.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/ro.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/ro.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/ru.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/ru.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/ru.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/ru.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/ru.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/ru.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/ru.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/ru.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/sk.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/sk.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/sk.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/sk.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/sk.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/sk.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/sk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/sk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/sl.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/sl.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/sl.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/sl.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/sl.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/sl.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/sl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/sl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/sv.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/sv.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/sv.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/sv.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/sv.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/sv.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/sv.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/sv.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/th.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/th.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/th.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/th.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/th.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/th.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/th.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/th.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/tr.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/tr.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/tr.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/tr.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/tr.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/tr.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/tr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/tr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/uk.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/uk.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/uk.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/uk.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/uk.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/uk.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/uk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/uk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/zh_CN.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/zh_CN.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/zh_CN.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/zh_CN.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/zh_CN.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/zh_CN.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/zh_CN.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/zh_CN.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/zh_TW.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/zh_TW.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/zh_TW.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/zh_TW.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/zh_TW.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/zh_TW.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Resources/zh_TW.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Resources/zh_TW.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Dependencies/Sparkle.framework/Versions/Current/Sparkle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/Sparkle.framework/Versions/Current/Sparkle -------------------------------------------------------------------------------- /Dependencies/swift-protobuf/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | *~ 5 | xcuserdata 6 | xcbaselines 7 | /_test 8 | /docs 9 | /build 10 | mined_words.txt 11 | /DescriptorTestData.bin 12 | 13 | # Intermediate conformance test outputs 14 | failing_tests.txt 15 | nonexistent_tests.txt 16 | -------------------------------------------------------------------------------- /Dependencies/swift-protobuf/.jazzy.yaml: -------------------------------------------------------------------------------- 1 | documentation: "Documentation/{API,GENERATED_CODE,PLUGIN}.md" 2 | -------------------------------------------------------------------------------- /Dependencies/swift-protobuf/Performance/.gitignore: -------------------------------------------------------------------------------- 1 | _generated/ 2 | _results/ 3 | -------------------------------------------------------------------------------- /Dependencies/swift-protobuf/Performance/Protobuf.tracetemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Dependencies/swift-protobuf/Performance/Protobuf.tracetemplate -------------------------------------------------------------------------------- /Dependencies/swift-protobuf/Performance/css/harness-visualization.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 16px; 3 | } 4 | 5 | p.info-text { 6 | padding: 16px; 7 | } 8 | 9 | h3 > small { 10 | float: right; 11 | } 12 | 13 | table.numeric td { 14 | text-align: right; 15 | } 16 | 17 | table.numeric th { 18 | background-color: #eee; 19 | text-align: center; 20 | } 21 | 22 | table.numeric tfoot td { 23 | font-size: 12px; 24 | font-style: italic; 25 | } 26 | 27 | table.numeric td:first-child, 28 | table.numeric th:first-child { 29 | text-align: left; 30 | } 31 | -------------------------------------------------------------------------------- /Dependencies/swift-protobuf/Performance/js/results.js.template: -------------------------------------------------------------------------------- 1 | sessions = [ 2 | //NEW-DATA-HERE 3 | ]; 4 | -------------------------------------------------------------------------------- /Dependencies/swift-protobuf/Protos/README.md: -------------------------------------------------------------------------------- 1 | Various test protos that are used to stress the code generator. 2 | 3 | Many of these were copied from Google's protoc project with only minor changes, hence the Google copyright notices. 4 | 5 | Others were created specifically to test Apple's Swift generator. 6 | 7 | Some are used in various Test cases, but others serve as tests just by verifying that they compile. 8 | -------------------------------------------------------------------------------- /Dependencies/swift-protobuf/Sources/Conformance/failure_list_swift.txt: -------------------------------------------------------------------------------- 1 | # No known failures 2 | -------------------------------------------------------------------------------- /Dependencies/swift-protobuf/SwiftProtobuf.xcodeproj/xcshareddata/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | SchemeUserState 5 | 6 | SwiftProtobuf.xcscheme 7 | 8 | 9 | SuppressBuildableAutocreation 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /EventsUI/EventsUI/EVTMaskButton.h: -------------------------------------------------------------------------------- 1 | // 2 | // EVTMaskButton.h 3 | // EventsUI 4 | // 5 | // Created by Guilherme Rambo on 26/09/15. 6 | // Copyright © 2015 Guilherme Rambo. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | IB_DESIGNABLE 12 | @interface EVTMaskButton : NSControl 13 | 14 | @property (nonatomic, copy) IBInspectable NSColor *__nullable backgroundColor; 15 | @property (nonatomic, copy) IBInspectable NSColor *__nullable tintColor; 16 | @property (nonatomic, strong) IBInspectable NSImage *__nullable image; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /EventsUI/EventsUI/EventsUI.h: -------------------------------------------------------------------------------- 1 | // 2 | // EventsUI.h 3 | // EventsUI 4 | // 5 | // Created by Guilherme Rambo on 05/09/16. 6 | // Copyright © 2016 Guilherme Rambo. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | //! Project version number for EventsUI. 12 | FOUNDATION_EXPORT double EventsUIVersionNumber; 13 | 14 | //! Project version string for EventsUI. 15 | FOUNDATION_EXPORT const unsigned char EventsUIVersionString[]; 16 | 17 | // In this header, you should import all the public headers of your framework using statements like #import 18 | 19 | 20 | #import 21 | -------------------------------------------------------------------------------- /EventsUI/EventsUI/NSImage+CGImage.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSImage+CGImage.h 3 | // GRProKit2 4 | // 5 | // Created by Guilherme Rambo on 21/09/15. 6 | // Copyright © 2015 Guilherme Rambo. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface NSImage (CGImage) 12 | 13 | @property (nonatomic, readonly) CGImageRef CGImage; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /EventsUI/EventsUI/NSImage+CGImage.m: -------------------------------------------------------------------------------- 1 | // 2 | // NSImage+CGImage.m 3 | // GRProKit2 4 | // 5 | // Created by Guilherme Rambo on 21/09/15. 6 | // Copyright © 2015 Guilherme Rambo. All rights reserved. 7 | // 8 | 9 | #import "NSImage+CGImage.h" 10 | 11 | @implementation NSImage (CGImage) 12 | 13 | - (CGImageRef)CGImage 14 | { 15 | CGImageSourceRef source = CGImageSourceCreateWithData((CFDataRef)[self TIFFRepresentation], NULL); 16 | 17 | return CGImageSourceCreateImageAtIndex(source, 0, NULL); 18 | } 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /EventsUI/EventsUI/PiPZoom.car: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/EventsUI/EventsUI/PiPZoom.car -------------------------------------------------------------------------------- /EventsUI/EventsUI/WhiteSpinner.car: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/EventsUI/EventsUI/WhiteSpinner.car -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | This app is not being maintained anymore. 2 | 3 | Apple has moved streaming of Apple Events to the Apple TV app, which is available on the Mac. You can also watch using the [Apple Developer app](https://apps.apple.com/app/apple-developer/id640199958), the [unofficial WWDC app for macOS](https://wwdc.io) or [in your browser](https://apple.com/apple-events). -------------------------------------------------------------------------------- /Releases/AppleEvents_latest.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Releases/AppleEvents_latest.zip -------------------------------------------------------------------------------- /Releases/AppleEvents_v1.6.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Releases/AppleEvents_v1.6.zip -------------------------------------------------------------------------------- /Resources/CastButton.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Resources/CastButton.sketch -------------------------------------------------------------------------------- /Resources/DefaultIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Resources/DefaultIcon.png -------------------------------------------------------------------------------- /Resources/DefaultIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Resources/DefaultIcon@2x.png -------------------------------------------------------------------------------- /Resources/DefaultIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Resources/DefaultIcon@3x.png -------------------------------------------------------------------------------- /Resources/Events Icon.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Resources/Events Icon.sketch -------------------------------------------------------------------------------- /Resources/IconMask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Resources/IconMask.png -------------------------------------------------------------------------------- /Resources/IconMask@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Resources/IconMask@2x.png -------------------------------------------------------------------------------- /Resources/IconMask@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Resources/IconMask@3x.png -------------------------------------------------------------------------------- /Resources/chromecast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Resources/chromecast.png -------------------------------------------------------------------------------- /Resources/chromecast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Resources/chromecast@2x.png -------------------------------------------------------------------------------- /Resources/chromecast@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/Resources/chromecast@3x.png -------------------------------------------------------------------------------- /bootstrap.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | git submodule update --init --recursive 4 | cd ChromeCastCore 5 | ./bootstrap.sh 6 | cd .. -------------------------------------------------------------------------------- /chromecast-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/chromecast-2.png -------------------------------------------------------------------------------- /chromecast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/chromecast.png -------------------------------------------------------------------------------- /dockicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/dockicon.png -------------------------------------------------------------------------------- /pipbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/pipbutton.png -------------------------------------------------------------------------------- /screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/screenshot2.png -------------------------------------------------------------------------------- /screenshot_sep_2018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/AppleEvents/43d34d70b1a772d44f219039e4544aa539bf296f/screenshot_sep_2018.png --------------------------------------------------------------------------------