├── .editorconfig ├── .fauxpas └── extension.json ├── .flake8rc ├── .github └── workflows │ ├── ci_nightly.yml │ ├── ci_testbuild.yml │ ├── generate_release_notes.yml │ ├── new_tag.yml │ ├── pr_label_enforcer.yml │ ├── release_notes_config.json │ └── stale.yml ├── .gitignore ├── .luacheckrc ├── .stickler.yml ├── .syntastic_objc_config ├── Brewfile ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CREDITS.md ├── Hammerspoon Tests ├── HSTestCase.h ├── HSTestCase.m ├── HSalert.m ├── HSappfinder.m ├── HSapplication.m ├── HSaudiodevice.m ├── HSbase64.m ├── HSbrightness.m ├── HScoresetup.m ├── HScrash.m ├── HSdistributednotifications.m ├── HSfs.m ├── HShotkey.m ├── HShttp.m ├── HSimage.m ├── HSinspect.m ├── HSjsonTests.m ├── HSmath.m ├── HSmouse.m ├── HSnoises.m ├── HSosascript.m ├── HSrequire_all.m ├── HSscreen.m ├── HSserial.m ├── HSsocket.m ├── HStask.m ├── HStimer.m ├── HSuielement.m ├── HSwebsocket.m ├── HSwindow.m ├── Info.plist └── testinit.lua ├── Hammerspoon.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── Hammerspoon.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ ├── Hammerspoon.xccheckout │ ├── IDEWorkspaceChecks.plist │ ├── WorkspaceSettings.xcsettings │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── Hammerspoon.xcscheme │ └── Release.xcscheme ├── Hammerspoon ├── Build Configs │ ├── Archive-Export-Options.plist │ ├── Extensions-Base.xcconfig │ ├── Extensions-Ideal.xcconfig │ ├── Hammerspoon-Base.xcconfig │ ├── Hammerspoon-Debug.xcconfig │ ├── Hammerspoon-Profile.xcconfig │ ├── Hammerspoon-Release.xcconfig │ ├── Hammerspoon-Test.xcconfig │ ├── Project-Base.xcconfig │ ├── Project-Release.xcconfig │ └── hs.xcconfig ├── ConsoleWindow.xib ├── Credits.rtf ├── HSAppleScript.h ├── HSAppleScript.m ├── HSExecuteLuaIntentHandler.h ├── HSExecuteLuaIntentHandler.m ├── HSGrowingTextField.h ├── HSGrowingTextField.m ├── HSLogger.h ├── HSLogger.m ├── HSuicore.h ├── HSuicore.m ├── Hammerspoon-Info.plist ├── Hammerspoon-Prefix.pch ├── Hammerspoon-dev.entitlements ├── Hammerspoon.entitlements ├── Hammerspoon.sdef ├── Images.xcassets │ └── AppIcon.appiconset │ │ ├── 1024.png │ │ ├── 128.png │ │ ├── 16.png │ │ ├── 256-1.png │ │ ├── 256.png │ │ ├── 32-1.png │ │ ├── 32.png │ │ ├── 512-1.png │ │ ├── 512.png │ │ ├── 64.png │ │ └── Contents.json ├── Intents.intentdefinition ├── MJAccessibilityUtils.h ├── MJAccessibilityUtils.m ├── MJAppDelegate.h ├── MJAppDelegate.m ├── MJAutoLaunch.h ├── MJAutoLaunch.m ├── MJConfigUtils.h ├── MJConfigUtils.m ├── MJConsoleWindowController.h ├── MJConsoleWindowController.m ├── MJDockIcon.h ├── MJDockIcon.m ├── MJFileUtils.h ├── MJFileUtils.m ├── MJLua.h ├── MJLua.m ├── MJMenuIcon.h ├── MJMenuIcon.m ├── MJPreferencesWindowController.h ├── MJPreferencesWindowController.m ├── MJUserNotificationManager.h ├── MJUserNotificationManager.m ├── MJVersionUtils.h ├── MJVersionUtils.m ├── MainMenu.xib ├── PreferencesWindow.xib ├── Spoon.icns ├── setup.lua ├── statusicon.pdf ├── variables.h └── variables.m ├── HammerspoonUITests ├── Hammerspoon_UITests.m ├── Info.plist └── init.lua ├── LICENSE ├── LuaSkin ├── LuaSkin-Base.xcconfig ├── LuaSkin-Release.xcconfig ├── LuaSkin.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── LuaSkin.xcscheme ├── LuaSkin │ ├── Info.plist │ ├── LuaSkin.h │ ├── Skin.h │ ├── Skin.m │ ├── luaskin.lua │ └── luaskin.m ├── LuaSkinTests │ ├── Info.plist │ ├── LuaSkinTests.m │ ├── lsunit.lua │ └── testinit.lua └── lua-5.4.7 │ ├── Makefile │ ├── README │ ├── doc │ ├── OSIApproved_100X125.png │ ├── contents.html │ ├── index.css │ ├── logo.gif │ ├── lua.1 │ ├── lua.css │ ├── luac.1 │ ├── manual.css │ ├── manual.html │ └── readme.html │ └── src │ ├── Makefile │ ├── lapi.c │ ├── lapi.h │ ├── lauxlib.c │ ├── lauxlib.h │ ├── lbaselib.c │ ├── lcode.c │ ├── lcode.h │ ├── lcorolib.c │ ├── lctype.c │ ├── lctype.h │ ├── ldblib.c │ ├── ldebug.c │ ├── ldebug.h │ ├── ldo.c │ ├── ldo.h │ ├── ldump.c │ ├── lfunc.c │ ├── lfunc.h │ ├── lgc.c │ ├── lgc.h │ ├── linit.c │ ├── liolib.c │ ├── ljumptab.h │ ├── llex.c │ ├── llex.h │ ├── llimits.h │ ├── lmathlib.c │ ├── lmem.c │ ├── lmem.h │ ├── loadlib.c │ ├── lobject.c │ ├── lobject.h │ ├── lobjectivec_exceptions.h │ ├── lobjectivec_exceptions.m │ ├── lopcodes.c │ ├── lopcodes.h │ ├── lopnames.h │ ├── loslib.c │ ├── lparser.c │ ├── lparser.h │ ├── lprefix.h │ ├── lstate.c │ ├── lstate.h │ ├── lstring.c │ ├── lstring.h │ ├── lstrlib.c │ ├── ltable.c │ ├── ltable.h │ ├── ltablib.c │ ├── ltm.c │ ├── ltm.h │ ├── lua.c │ ├── lua.h │ ├── lua.hpp │ ├── luac.c │ ├── luaconf.h │ ├── luaconf.h.orig │ ├── lualib.h │ ├── lundump.c │ ├── lundump.h │ ├── lutf8lib.c │ ├── lvm.c │ ├── lvm.h │ ├── lzio.c │ └── lzio.h ├── Podfile ├── Podfile.lock ├── Pods ├── ASCIImage │ ├── Core │ │ ├── PARImage+ASCIIInput.h │ │ └── PARImage+ASCIIInput.m │ ├── LICENSE │ └── README.md ├── CocoaAsyncSocket │ ├── LICENSE.txt │ ├── README.markdown │ └── Source │ │ └── GCD │ │ ├── GCDAsyncSocket.h │ │ ├── GCDAsyncSocket.m │ │ ├── GCDAsyncUdpSocket.h │ │ └── GCDAsyncUdpSocket.m ├── CocoaHTTPServer │ ├── Core │ │ ├── Categories │ │ │ ├── DDData.h │ │ │ ├── DDData.m │ │ │ ├── DDNumber.h │ │ │ ├── DDNumber.m │ │ │ ├── DDRange.h │ │ │ └── DDRange.m │ │ ├── HTTPAuthenticationRequest.h │ │ ├── HTTPAuthenticationRequest.m │ │ ├── HTTPConnection.h │ │ ├── HTTPConnection.m │ │ ├── HTTPLogging.h │ │ ├── HTTPMessage.h │ │ ├── HTTPMessage.m │ │ ├── HTTPResponse.h │ │ ├── HTTPServer.h │ │ ├── HTTPServer.m │ │ ├── Mime │ │ │ ├── MultipartFormDataParser.h │ │ │ ├── MultipartFormDataParser.m │ │ │ ├── MultipartMessageHeader.h │ │ │ ├── MultipartMessageHeader.m │ │ │ ├── MultipartMessageHeaderField.h │ │ │ └── MultipartMessageHeaderField.m │ │ ├── Responses │ │ │ ├── HTTPAsyncFileResponse.h │ │ │ ├── HTTPAsyncFileResponse.m │ │ │ ├── HTTPDataResponse.h │ │ │ ├── HTTPDataResponse.m │ │ │ ├── HTTPDynamicFileResponse.h │ │ │ ├── HTTPDynamicFileResponse.m │ │ │ ├── HTTPErrorResponse.h │ │ │ ├── HTTPErrorResponse.m │ │ │ ├── HTTPFileResponse.h │ │ │ ├── HTTPFileResponse.m │ │ │ ├── HTTPRedirectResponse.h │ │ │ └── HTTPRedirectResponse.m │ │ ├── WebSocket.h │ │ └── WebSocket.m │ ├── Extensions │ │ └── WebDAV │ │ │ ├── DAVConnection.h │ │ │ ├── DAVConnection.m │ │ │ ├── DAVResponse.h │ │ │ ├── DAVResponse.m │ │ │ ├── DELETEResponse.h │ │ │ ├── DELETEResponse.m │ │ │ ├── PUTResponse.h │ │ │ └── PUTResponse.m │ ├── LICENSE.txt │ └── README.markdown ├── CocoaLumberjack │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ └── Sources │ │ └── CocoaLumberjack │ │ ├── CLI │ │ └── CLIColor.m │ │ ├── DDASLLogCapture.m │ │ ├── DDASLLogger.m │ │ ├── DDAbstractDatabaseLogger.m │ │ ├── DDFileLogger+Internal.h │ │ ├── DDFileLogger.m │ │ ├── DDLog.m │ │ ├── DDLoggerNames.m │ │ ├── DDOSLogger.m │ │ ├── DDTTYLogger.m │ │ ├── Extensions │ │ ├── DDContextFilterLogFormatter+Deprecated.m │ │ ├── DDContextFilterLogFormatter.m │ │ ├── DDDispatchQueueLogFormatter.m │ │ ├── DDFileLogger+Buffering.m │ │ └── DDMultiFormatter.m │ │ ├── PrivacyInfo.xcprivacy │ │ ├── Supporting Files │ │ ├── CocoaLumberjack.h │ │ └── DDLegacyMacros.h │ │ └── include │ │ └── CocoaLumberjack │ │ ├── CLIColor.h │ │ ├── DDASLLogCapture.h │ │ ├── DDASLLogger.h │ │ ├── DDAbstractDatabaseLogger.h │ │ ├── DDAssertMacros.h │ │ ├── DDContextFilterLogFormatter+Deprecated.h │ │ ├── DDContextFilterLogFormatter.h │ │ ├── DDDispatchQueueLogFormatter.h │ │ ├── DDFileLogger+Buffering.h │ │ ├── DDFileLogger.h │ │ ├── DDLog+LOGV.h │ │ ├── DDLog.h │ │ ├── DDLogMacros.h │ │ ├── DDLoggerNames.h │ │ ├── DDMultiFormatter.h │ │ ├── DDOSLogger.h │ │ └── DDTTYLogger.h ├── Headers │ ├── Private │ │ ├── ASCIImage │ │ │ └── PARImage+ASCIIInput.h │ │ ├── CocoaAsyncSocket │ │ │ ├── GCDAsyncSocket.h │ │ │ └── GCDAsyncUdpSocket.h │ │ ├── CocoaHTTPServer │ │ │ ├── DAVConnection.h │ │ │ ├── DAVResponse.h │ │ │ ├── DDData.h │ │ │ ├── DDNumber.h │ │ │ ├── DDRange.h │ │ │ ├── DELETEResponse.h │ │ │ ├── HTTPAsyncFileResponse.h │ │ │ ├── HTTPAuthenticationRequest.h │ │ │ ├── HTTPConnection.h │ │ │ ├── HTTPDataResponse.h │ │ │ ├── HTTPDynamicFileResponse.h │ │ │ ├── HTTPErrorResponse.h │ │ │ ├── HTTPFileResponse.h │ │ │ ├── HTTPLogging.h │ │ │ ├── HTTPMessage.h │ │ │ ├── HTTPRedirectResponse.h │ │ │ ├── HTTPResponse.h │ │ │ ├── HTTPServer.h │ │ │ ├── MultipartFormDataParser.h │ │ │ ├── MultipartMessageHeader.h │ │ │ ├── MultipartMessageHeaderField.h │ │ │ ├── PUTResponse.h │ │ │ └── WebSocket.h │ │ ├── CocoaLumberjack │ │ │ ├── CLIColor.h │ │ │ ├── CocoaLumberjack.h │ │ │ ├── DDASLLogCapture.h │ │ │ ├── DDASLLogger.h │ │ │ ├── DDAbstractDatabaseLogger.h │ │ │ ├── DDAssertMacros.h │ │ │ ├── DDContextFilterLogFormatter+Deprecated.h │ │ │ ├── DDContextFilterLogFormatter.h │ │ │ ├── DDDispatchQueueLogFormatter.h │ │ │ ├── DDFileLogger+Buffering.h │ │ │ ├── DDFileLogger+Internal.h │ │ │ ├── DDFileLogger.h │ │ │ ├── DDLegacyMacros.h │ │ │ ├── DDLog+LOGV.h │ │ │ ├── DDLog.h │ │ │ ├── DDLogMacros.h │ │ │ ├── DDLoggerNames.h │ │ │ ├── DDMultiFormatter.h │ │ │ ├── DDOSLogger.h │ │ │ └── DDTTYLogger.h │ │ ├── MIKMIDI │ │ │ ├── MIKMIDI.h │ │ │ ├── MIKMIDIChannelEvent.h │ │ │ ├── MIKMIDIChannelPressureCommand.h │ │ │ ├── MIKMIDIChannelPressureEvent.h │ │ │ ├── MIKMIDIChannelVoiceCommand.h │ │ │ ├── MIKMIDIChannelVoiceCommand_SubclassMethods.h │ │ │ ├── MIKMIDIClientDestinationEndpoint.h │ │ │ ├── MIKMIDIClientSourceEndpoint.h │ │ │ ├── MIKMIDIClock.h │ │ │ ├── MIKMIDICommand.h │ │ │ ├── MIKMIDICommandScheduler.h │ │ │ ├── MIKMIDICommandThrottler.h │ │ │ ├── MIKMIDICommand_SubclassMethods.h │ │ │ ├── MIKMIDICompilerCompatibility.h │ │ │ ├── MIKMIDIConnectionManager.h │ │ │ ├── MIKMIDIControlChangeCommand+Private.h │ │ │ ├── MIKMIDIControlChangeCommand.h │ │ │ ├── MIKMIDIControlChangeEvent.h │ │ │ ├── MIKMIDIDestinationEndpoint.h │ │ │ ├── MIKMIDIDevice.h │ │ │ ├── MIKMIDIDeviceManager.h │ │ │ ├── MIKMIDIEndpoint.h │ │ │ ├── MIKMIDIEndpointSynthesizer.h │ │ │ ├── MIKMIDIEntity.h │ │ │ ├── MIKMIDIErrors.h │ │ │ ├── MIKMIDIEvent.h │ │ │ ├── MIKMIDIEventIterator.h │ │ │ ├── MIKMIDIEvent_SubclassMethods.h │ │ │ ├── MIKMIDIInputPort.h │ │ │ ├── MIKMIDIMappableResponder.h │ │ │ ├── MIKMIDIMapping.h │ │ │ ├── MIKMIDIMappingGenerator.h │ │ │ ├── MIKMIDIMappingItem.h │ │ │ ├── MIKMIDIMappingManager.h │ │ │ ├── MIKMIDIMappingXMLParser.h │ │ │ ├── MIKMIDIMetaCopyrightEvent.h │ │ │ ├── MIKMIDIMetaCuePointEvent.h │ │ │ ├── MIKMIDIMetaEvent.h │ │ │ ├── MIKMIDIMetaEvent_SubclassMethods.h │ │ │ ├── MIKMIDIMetaInstrumentNameEvent.h │ │ │ ├── MIKMIDIMetaKeySignatureEvent.h │ │ │ ├── MIKMIDIMetaLyricEvent.h │ │ │ ├── MIKMIDIMetaMarkerTextEvent.h │ │ │ ├── MIKMIDIMetaSequenceEvent.h │ │ │ ├── MIKMIDIMetaTextEvent.h │ │ │ ├── MIKMIDIMetaTimeSignatureEvent.h │ │ │ ├── MIKMIDIMetaTrackSequenceNameEvent.h │ │ │ ├── MIKMIDIMetronome.h │ │ │ ├── MIKMIDINoteCommand.h │ │ │ ├── MIKMIDINoteCommand_SubclassMethods.h │ │ │ ├── MIKMIDINoteEvent.h │ │ │ ├── MIKMIDINoteOffCommand.h │ │ │ ├── MIKMIDINoteOnCommand.h │ │ │ ├── MIKMIDIObject.h │ │ │ ├── MIKMIDIObject_SubclassMethods.h │ │ │ ├── MIKMIDIOutputPort.h │ │ │ ├── MIKMIDIPitchBendChangeCommand.h │ │ │ ├── MIKMIDIPitchBendChangeEvent.h │ │ │ ├── MIKMIDIPlayer.h │ │ │ ├── MIKMIDIPolyphonicKeyPressureCommand.h │ │ │ ├── MIKMIDIPolyphonicKeyPressureEvent.h │ │ │ ├── MIKMIDIPort.h │ │ │ ├── MIKMIDIPort_SubclassMethods.h │ │ │ ├── MIKMIDIPrivate.h │ │ │ ├── MIKMIDIPrivateUtilities.h │ │ │ ├── MIKMIDIProgramChangeCommand.h │ │ │ ├── MIKMIDIProgramChangeEvent.h │ │ │ ├── MIKMIDIResponder.h │ │ │ ├── MIKMIDISequence+MIKMIDIPrivate.h │ │ │ ├── MIKMIDISequence.h │ │ │ ├── MIKMIDISequencer+MIKMIDIPrivate.h │ │ │ ├── MIKMIDISequencer.h │ │ │ ├── MIKMIDISourceEndpoint.h │ │ │ ├── MIKMIDISynthesizer.h │ │ │ ├── MIKMIDISynthesizerInstrument.h │ │ │ ├── MIKMIDISynthesizer_SubclassMethods.h │ │ │ ├── MIKMIDISystemExclusiveCommand.h │ │ │ ├── MIKMIDISystemKeepAliveCommand.h │ │ │ ├── MIKMIDISystemMessageCommand.h │ │ │ ├── MIKMIDITempoEvent.h │ │ │ ├── MIKMIDITrack.h │ │ │ ├── MIKMIDITrack_Protected.h │ │ │ ├── MIKMIDITransmittable.h │ │ │ ├── MIKMIDIUtilities.h │ │ │ └── NSUIApplication+MIKMIDI.h │ │ ├── ORSSerialPort │ │ │ ├── ORSSerialBuffer.h │ │ │ ├── ORSSerialPacketDescriptor.h │ │ │ ├── ORSSerialPort.h │ │ │ ├── ORSSerialPortManager.h │ │ │ └── ORSSerialRequest.h │ │ ├── PocketSocket │ │ │ ├── PSWebSocket.h │ │ │ ├── PSWebSocketBuffer.h │ │ │ ├── PSWebSocketDeflater.h │ │ │ ├── PSWebSocketDriver.h │ │ │ ├── PSWebSocketInflater.h │ │ │ ├── PSWebSocketInternal.h │ │ │ ├── PSWebSocketNetworkThread.h │ │ │ ├── PSWebSocketTypes.h │ │ │ └── PSWebSocketUTF8Decoder.h │ │ ├── Sentry │ │ │ ├── NSArray+SentrySanitize.h │ │ │ ├── NSLocale+Sentry.h │ │ │ ├── NSMutableDictionary+Sentry.h │ │ │ ├── PrivateSentrySDKOnly.h │ │ │ ├── PrivatesHeader.h │ │ │ ├── Sentry.h │ │ │ ├── SentryANRTracker.h │ │ │ ├── SentryANRTrackerV2.h │ │ │ ├── SentryANRTrackingIntegration.h │ │ │ ├── SentryANRTrackingIntegrationV2.h │ │ │ ├── SentryAppStartMeasurement.h │ │ │ ├── SentryAppStartTracker.h │ │ │ ├── SentryAppStartTrackingIntegration.h │ │ │ ├── SentryAppState.h │ │ │ ├── SentryAppStateManager.h │ │ │ ├── SentryAsyncSafeLog.h │ │ │ ├── SentryAsynchronousOperation.h │ │ │ ├── SentryAttachment+Private.h │ │ │ ├── SentryAttachment.h │ │ │ ├── SentryAutoBreadcrumbTrackingIntegration.h │ │ │ ├── SentryAutoSessionTrackingIntegration.h │ │ │ ├── SentryBacktrace.hpp │ │ │ ├── SentryBaggage.h │ │ │ ├── SentryBaseIntegration.h │ │ │ ├── SentryBinaryImageCache.h │ │ │ ├── SentryBreadcrumb+Private.h │ │ │ ├── SentryBreadcrumb.h │ │ │ ├── SentryBreadcrumbDelegate.h │ │ │ ├── SentryBreadcrumbTracker.h │ │ │ ├── SentryBuildAppStartSpans.h │ │ │ ├── SentryByteCountFormatter.h │ │ │ ├── SentryCPU.h │ │ │ ├── SentryClient+Private.h │ │ │ ├── SentryClient.h │ │ │ ├── SentryClientReport.h │ │ │ ├── SentryCompiler.h │ │ │ ├── SentryConcurrentRateLimitsDictionary.h │ │ │ ├── SentryContinuousProfiler.h │ │ │ ├── SentryCoreDataSwizzling.h │ │ │ ├── SentryCoreDataTracker.h │ │ │ ├── SentryCoreDataTrackingIntegration.h │ │ │ ├── SentryCrash.h │ │ │ ├── SentryCrashBinaryImageCache.h │ │ │ ├── SentryCrashBinaryImageProvider.h │ │ │ ├── SentryCrashC.h │ │ │ ├── SentryCrashCPU.h │ │ │ ├── SentryCrashCPU_Apple.h │ │ │ ├── SentryCrashCachedData.h │ │ │ ├── SentryCrashDate.h │ │ │ ├── SentryCrashDebug.h │ │ │ ├── SentryCrashDefaultBinaryImageProvider.h │ │ │ ├── SentryCrashDefaultMachineContextWrapper.h │ │ │ ├── SentryCrashDoctor.h │ │ │ ├── SentryCrashDynamicLinker.h │ │ │ ├── SentryCrashExceptionApplication.h │ │ │ ├── SentryCrashFileUtils.h │ │ │ ├── SentryCrashID.h │ │ │ ├── SentryCrashInstallation+Private.h │ │ │ ├── SentryCrashInstallation.h │ │ │ ├── SentryCrashInstallationReporter.h │ │ │ ├── SentryCrashIntegration.h │ │ │ ├── SentryCrashIsAppImage.h │ │ │ ├── SentryCrashJSONCodec.h │ │ │ ├── SentryCrashJSONCodecObjC.h │ │ │ ├── SentryCrashMach.h │ │ │ ├── SentryCrashMachineContext.h │ │ │ ├── SentryCrashMachineContextWrapper.h │ │ │ ├── SentryCrashMachineContext_Apple.h │ │ │ ├── SentryCrashMemory.h │ │ │ ├── SentryCrashMonitor.h │ │ │ ├── SentryCrashMonitorContext.h │ │ │ ├── SentryCrashMonitorType.h │ │ │ ├── SentryCrashMonitor_AppState.h │ │ │ ├── SentryCrashMonitor_CPPException.h │ │ │ ├── SentryCrashMonitor_MachException.h │ │ │ ├── SentryCrashMonitor_NSException.h │ │ │ ├── SentryCrashMonitor_Signal.h │ │ │ ├── SentryCrashMonitor_System.h │ │ │ ├── SentryCrashNSErrorUtil.h │ │ │ ├── SentryCrashObjC.h │ │ │ ├── SentryCrashObjCApple.h │ │ │ ├── SentryCrashPlatformSpecificDefines.h │ │ │ ├── SentryCrashReport.h │ │ │ ├── SentryCrashReportConverter.h │ │ │ ├── SentryCrashReportFields.h │ │ │ ├── SentryCrashReportFilter.h │ │ │ ├── SentryCrashReportFilterBasic.h │ │ │ ├── SentryCrashReportFixer.h │ │ │ ├── SentryCrashReportSink.h │ │ │ ├── SentryCrashReportStore.h │ │ │ ├── SentryCrashReportVersion.h │ │ │ ├── SentryCrashReportWriter.h │ │ │ ├── SentryCrashScopeObserver.h │ │ │ ├── SentryCrashSignalInfo.h │ │ │ ├── SentryCrashStackCursor.h │ │ │ ├── SentryCrashStackCursor_Backtrace.h │ │ │ ├── SentryCrashStackCursor_MachineContext.h │ │ │ ├── SentryCrashStackCursor_SelfThread.h │ │ │ ├── SentryCrashStackEntryMapper.h │ │ │ ├── SentryCrashString.h │ │ │ ├── SentryCrashSymbolicator.h │ │ │ ├── SentryCrashSysCtl.h │ │ │ ├── SentryCrashThread.h │ │ │ ├── SentryCrashUUIDConversion.h │ │ │ ├── SentryCrashVarArgs.h │ │ │ ├── SentryCrashWrapper.h │ │ │ ├── SentryDataCategory.h │ │ │ ├── SentryDataCategoryMapper.h │ │ │ ├── SentryDateUtil.h │ │ │ ├── SentryDateUtils.h │ │ │ ├── SentryDebugImageProvider.h │ │ │ ├── SentryDebugMeta.h │ │ │ ├── SentryDefaultObjCRuntimeWrapper.h │ │ │ ├── SentryDefaultRateLimits.h │ │ │ ├── SentryDefines.h │ │ │ ├── SentryDelayedFrame.h │ │ │ ├── SentryDelayedFramesTracker.h │ │ │ ├── SentryDependencyContainer.h │ │ │ ├── SentryDevice.h │ │ │ ├── SentryDictionaryDeepSearch.h │ │ │ ├── SentryDiscardReason.h │ │ │ ├── SentryDiscardReasonMapper.h │ │ │ ├── SentryDiscardedEvent.h │ │ │ ├── SentryDispatchFactory.h │ │ │ ├── SentryDispatchQueueWrapper.h │ │ │ ├── SentryDispatchSourceWrapper.h │ │ │ ├── SentryDisplayLinkWrapper.h │ │ │ ├── SentryDsn.h │ │ │ ├── SentryEnvelope+Private.h │ │ │ ├── SentryEnvelope.h │ │ │ ├── SentryEnvelopeAttachmentHeader.h │ │ │ ├── SentryEnvelopeItemHeader.h │ │ │ ├── SentryEnvelopeItemType.h │ │ │ ├── SentryEnvelopeRateLimit.h │ │ │ ├── SentryError.h │ │ │ ├── SentryEvent+Private.h │ │ │ ├── SentryEvent.h │ │ │ ├── SentryException.h │ │ │ ├── SentryExtraContextProvider.h │ │ │ ├── SentryFileIOTrackingIntegration.h │ │ │ ├── SentryFileManager.h │ │ │ ├── SentryFormatter.h │ │ │ ├── SentryFrame.h │ │ │ ├── SentryFrameRemover.h │ │ │ ├── SentryFramesTracker.h │ │ │ ├── SentryFramesTrackingIntegration.h │ │ │ ├── SentryGeo.h │ │ │ ├── SentryGlobalEventProcessor.h │ │ │ ├── SentryHttpDateParser.h │ │ │ ├── SentryHttpStatusCodeRange+Private.h │ │ │ ├── SentryHttpStatusCodeRange.h │ │ │ ├── SentryHttpTransport.h │ │ │ ├── SentryHub+Private.h │ │ │ ├── SentryHub.h │ │ │ ├── SentryInAppLogic.h │ │ │ ├── SentryInstallation.h │ │ │ ├── SentryInternalCDefines.h │ │ │ ├── SentryInternalDefines.h │ │ │ ├── SentryInternalNotificationNames.h │ │ │ ├── SentryInternalSerializable.h │ │ │ ├── SentryLaunchProfiling.h │ │ │ ├── SentryLevelHelper.h │ │ │ ├── SentryLevelMapper.h │ │ │ ├── SentryLog.h │ │ │ ├── SentryLogC.h │ │ │ ├── SentryMachLogging.hpp │ │ │ ├── SentryMeasurementUnit.h │ │ │ ├── SentryMeasurementValue.h │ │ │ ├── SentryMechanism.h │ │ │ ├── SentryMechanismMeta.h │ │ │ ├── SentryMessage.h │ │ │ ├── SentryMeta.h │ │ │ ├── SentryMetricKitIntegration.h │ │ │ ├── SentryMetricProfiler.h │ │ │ ├── SentryMigrateSessionInit.h │ │ │ ├── SentryMsgPackSerializer.h │ │ │ ├── SentryNSDataSwizzling.h │ │ │ ├── SentryNSDataTracker.h │ │ │ ├── SentryNSDataUtils.h │ │ │ ├── SentryNSDictionarySanitize.h │ │ │ ├── SentryNSError.h │ │ │ ├── SentryNSNotificationCenterWrapper.h │ │ │ ├── SentryNSProcessInfoWrapper.h │ │ │ ├── SentryNSTimerFactory.h │ │ │ ├── SentryNSURLRequest.h │ │ │ ├── SentryNSURLRequestBuilder.h │ │ │ ├── SentryNSURLSessionTaskSearch.h │ │ │ ├── SentryNetworkTracker.h │ │ │ ├── SentryNetworkTrackingIntegration.h │ │ │ ├── SentryNoOpSpan.h │ │ │ ├── SentryObjCRuntimeWrapper.h │ │ │ ├── SentryOptions+HybridSDKs.h │ │ │ ├── SentryOptions+Private.h │ │ │ ├── SentryOptions.h │ │ │ ├── SentryPerformanceTracker.h │ │ │ ├── SentryPerformanceTrackingIntegration.h │ │ │ ├── SentryPredicateDescriptor.h │ │ │ ├── SentryPrivate.h │ │ │ ├── SentryProfileTimeseries.h │ │ │ ├── SentryProfiledTracerConcurrency.h │ │ │ ├── SentryProfiler+Private.h │ │ │ ├── SentryProfilerDefines.h │ │ │ ├── SentryProfilerSerialization+Test.h │ │ │ ├── SentryProfilerSerialization.h │ │ │ ├── SentryProfilerState+ObjCpp.h │ │ │ ├── SentryProfilerState.h │ │ │ ├── SentryProfilerTestHelpers.h │ │ │ ├── SentryProfilingConditionals.h │ │ │ ├── SentryPropagationContext.h │ │ │ ├── SentryQueueableRequestManager.h │ │ │ ├── SentryRandom.h │ │ │ ├── SentryRateLimitParser.h │ │ │ ├── SentryRateLimits.h │ │ │ ├── SentryReachability.h │ │ │ ├── SentryRequest.h │ │ │ ├── SentryRequestManager.h │ │ │ ├── SentryRequestOperation.h │ │ │ ├── SentryRetryAfterHeaderParser.h │ │ │ ├── SentrySDK+Private.h │ │ │ ├── SentrySDK.h │ │ │ ├── SentrySample.h │ │ │ ├── SentrySampleDecision+Private.h │ │ │ ├── SentrySampleDecision.h │ │ │ ├── SentrySamplerDecision.h │ │ │ ├── SentrySampling.h │ │ │ ├── SentrySamplingContext.h │ │ │ ├── SentrySamplingProfiler.hpp │ │ │ ├── SentryScope+Private.h │ │ │ ├── SentryScope.h │ │ │ ├── SentryScopeObserver.h │ │ │ ├── SentryScopeSyncC.h │ │ │ ├── SentryScreenFrames.h │ │ │ ├── SentryScreenshot.h │ │ │ ├── SentryScreenshotIntegration.h │ │ │ ├── SentrySdkInfo.h │ │ │ ├── SentrySerializable.h │ │ │ ├── SentrySerialization.h │ │ │ ├── SentrySession+Private.h │ │ │ ├── SentrySession.h │ │ │ ├── SentrySessionCrashedHandler.h │ │ │ ├── SentrySessionReplayIntegration+Private.h │ │ │ ├── SentrySessionReplayIntegration-Hybrid.h │ │ │ ├── SentrySessionReplayIntegration.h │ │ │ ├── SentrySessionReplaySyncC.h │ │ │ ├── SentrySessionTracker.h │ │ │ ├── SentrySpan+Private.h │ │ │ ├── SentrySpan.h │ │ │ ├── SentrySpanContext+Private.h │ │ │ ├── SentrySpanContext.h │ │ │ ├── SentrySpanId.h │ │ │ ├── SentrySpanOperations.h │ │ │ ├── SentrySpanProtocol.h │ │ │ ├── SentrySpanStatus.h │ │ │ ├── SentrySpotlightTransport.h │ │ │ ├── SentryStackBounds.hpp │ │ │ ├── SentryStackFrame.hpp │ │ │ ├── SentryStacktrace.h │ │ │ ├── SentryStacktraceBuilder.h │ │ │ ├── SentryStatsdClient.h │ │ │ ├── SentrySubClassFinder.h │ │ │ ├── SentrySwift.h │ │ │ ├── SentrySwiftAsyncIntegration.h │ │ │ ├── SentrySwizzle.h │ │ │ ├── SentrySwizzleWrapper.h │ │ │ ├── SentrySysctl.h │ │ │ ├── SentrySystemEventBreadcrumbs.h │ │ │ ├── SentrySystemWrapper.h │ │ │ ├── SentryThread.h │ │ │ ├── SentryThreadHandle.hpp │ │ │ ├── SentryThreadInspector.h │ │ │ ├── SentryThreadMetadataCache.hpp │ │ │ ├── SentryThreadState.hpp │ │ │ ├── SentryThreadWrapper.h │ │ │ ├── SentryTime.h │ │ │ ├── SentryTimeToDisplayTracker.h │ │ │ ├── SentryTraceContext.h │ │ │ ├── SentryTraceHeader.h │ │ │ ├── SentryTraceOrigins.h │ │ │ ├── SentryTraceProfiler.h │ │ │ ├── SentryTracer+Private.h │ │ │ ├── SentryTracer.h │ │ │ ├── SentryTracerConfiguration.h │ │ │ ├── SentryTransaction.h │ │ │ ├── SentryTransactionContext+Private.h │ │ │ ├── SentryTransactionContext.h │ │ │ ├── SentryTransport.h │ │ │ ├── SentryTransportAdapter.h │ │ │ ├── SentryTransportFactory.h │ │ │ ├── SentryUIApplication.h │ │ │ ├── SentryUIDeviceWrapper.h │ │ │ ├── SentryUIEventTracker.h │ │ │ ├── SentryUIEventTrackerMode.h │ │ │ ├── SentryUIEventTrackerTransactionMode.h │ │ │ ├── SentryUIEventTrackingIntegration.h │ │ │ ├── SentryUIViewControllerPerformanceTracker.h │ │ │ ├── SentryUIViewControllerSwizzling.h │ │ │ ├── SentryUser+Private.h │ │ │ ├── SentryUser.h │ │ │ ├── SentryUserFeedback.h │ │ │ ├── SentryViewHierarchy.h │ │ │ ├── SentryViewHierarchyIntegration.h │ │ │ ├── SentryWatchdogTerminationLogic.h │ │ │ ├── SentryWatchdogTerminationScopeObserver.h │ │ │ ├── SentryWatchdogTerminationTracker.h │ │ │ ├── SentryWatchdogTerminationTrackingIntegration.h │ │ │ ├── SentryWithoutUIKit.h │ │ │ └── UIViewController+Sentry.h │ │ └── SocketRocket │ │ │ ├── NSRunLoop+SRWebSocket.h │ │ │ ├── NSRunLoop+SRWebSocketPrivate.h │ │ │ ├── NSURLRequest+SRWebSocket.h │ │ │ ├── NSURLRequest+SRWebSocketPrivate.h │ │ │ ├── SRConstants.h │ │ │ ├── SRDelegateController.h │ │ │ ├── SRError.h │ │ │ ├── SRHTTPConnectMessage.h │ │ │ ├── SRHash.h │ │ │ ├── SRIOConsumer.h │ │ │ ├── SRIOConsumerPool.h │ │ │ ├── SRLog.h │ │ │ ├── SRMutex.h │ │ │ ├── SRPinningSecurityPolicy.h │ │ │ ├── SRProxyConnect.h │ │ │ ├── SRRandom.h │ │ │ ├── SRRunLoopThread.h │ │ │ ├── SRSIMDHelpers.h │ │ │ ├── SRSecurityPolicy.h │ │ │ ├── SRURLUtilities.h │ │ │ ├── SRWebSocket.h │ │ │ └── SocketRocket.h │ └── Public │ │ ├── ASCIImage │ │ └── PARImage+ASCIIInput.h │ │ ├── CocoaAsyncSocket │ │ ├── GCDAsyncSocket.h │ │ └── GCDAsyncUdpSocket.h │ │ ├── CocoaHTTPServer │ │ ├── DAVConnection.h │ │ ├── DAVResponse.h │ │ ├── DDData.h │ │ ├── DDNumber.h │ │ ├── DDRange.h │ │ ├── DELETEResponse.h │ │ ├── HTTPAsyncFileResponse.h │ │ ├── HTTPAuthenticationRequest.h │ │ ├── HTTPConnection.h │ │ ├── HTTPDataResponse.h │ │ ├── HTTPDynamicFileResponse.h │ │ ├── HTTPErrorResponse.h │ │ ├── HTTPFileResponse.h │ │ ├── HTTPLogging.h │ │ ├── HTTPMessage.h │ │ ├── HTTPRedirectResponse.h │ │ ├── HTTPResponse.h │ │ ├── HTTPServer.h │ │ ├── MultipartFormDataParser.h │ │ ├── MultipartMessageHeader.h │ │ ├── MultipartMessageHeaderField.h │ │ ├── PUTResponse.h │ │ └── WebSocket.h │ │ ├── CocoaLumberjack │ │ ├── CLIColor.h │ │ ├── CocoaLumberjack.h │ │ ├── DDASLLogCapture.h │ │ ├── DDASLLogger.h │ │ ├── DDAbstractDatabaseLogger.h │ │ ├── DDAssertMacros.h │ │ ├── DDContextFilterLogFormatter+Deprecated.h │ │ ├── DDContextFilterLogFormatter.h │ │ ├── DDDispatchQueueLogFormatter.h │ │ ├── DDFileLogger+Buffering.h │ │ ├── DDFileLogger.h │ │ ├── DDLegacyMacros.h │ │ ├── DDLog+LOGV.h │ │ ├── DDLog.h │ │ ├── DDLogMacros.h │ │ ├── DDLoggerNames.h │ │ ├── DDMultiFormatter.h │ │ ├── DDOSLogger.h │ │ └── DDTTYLogger.h │ │ ├── MIKMIDI │ │ ├── MIKMIDI.h │ │ ├── MIKMIDIChannelEvent.h │ │ ├── MIKMIDIChannelPressureCommand.h │ │ ├── MIKMIDIChannelPressureEvent.h │ │ ├── MIKMIDIChannelVoiceCommand.h │ │ ├── MIKMIDIChannelVoiceCommand_SubclassMethods.h │ │ ├── MIKMIDIClientDestinationEndpoint.h │ │ ├── MIKMIDIClientSourceEndpoint.h │ │ ├── MIKMIDIClock.h │ │ ├── MIKMIDICommand.h │ │ ├── MIKMIDICommandScheduler.h │ │ ├── MIKMIDICommandThrottler.h │ │ ├── MIKMIDICommand_SubclassMethods.h │ │ ├── MIKMIDICompilerCompatibility.h │ │ ├── MIKMIDIConnectionManager.h │ │ ├── MIKMIDIControlChangeCommand+Private.h │ │ ├── MIKMIDIControlChangeCommand.h │ │ ├── MIKMIDIControlChangeEvent.h │ │ ├── MIKMIDIDestinationEndpoint.h │ │ ├── MIKMIDIDevice.h │ │ ├── MIKMIDIDeviceManager.h │ │ ├── MIKMIDIEndpoint.h │ │ ├── MIKMIDIEndpointSynthesizer.h │ │ ├── MIKMIDIEntity.h │ │ ├── MIKMIDIErrors.h │ │ ├── MIKMIDIEvent.h │ │ ├── MIKMIDIEventIterator.h │ │ ├── MIKMIDIEvent_SubclassMethods.h │ │ ├── MIKMIDIInputPort.h │ │ ├── MIKMIDIMappableResponder.h │ │ ├── MIKMIDIMapping.h │ │ ├── MIKMIDIMappingGenerator.h │ │ ├── MIKMIDIMappingItem.h │ │ ├── MIKMIDIMappingManager.h │ │ ├── MIKMIDIMappingXMLParser.h │ │ ├── MIKMIDIMetaCopyrightEvent.h │ │ ├── MIKMIDIMetaCuePointEvent.h │ │ ├── MIKMIDIMetaEvent.h │ │ ├── MIKMIDIMetaEvent_SubclassMethods.h │ │ ├── MIKMIDIMetaInstrumentNameEvent.h │ │ ├── MIKMIDIMetaKeySignatureEvent.h │ │ ├── MIKMIDIMetaLyricEvent.h │ │ ├── MIKMIDIMetaMarkerTextEvent.h │ │ ├── MIKMIDIMetaSequenceEvent.h │ │ ├── MIKMIDIMetaTextEvent.h │ │ ├── MIKMIDIMetaTimeSignatureEvent.h │ │ ├── MIKMIDIMetaTrackSequenceNameEvent.h │ │ ├── MIKMIDIMetronome.h │ │ ├── MIKMIDINoteCommand.h │ │ ├── MIKMIDINoteCommand_SubclassMethods.h │ │ ├── MIKMIDINoteEvent.h │ │ ├── MIKMIDINoteOffCommand.h │ │ ├── MIKMIDINoteOnCommand.h │ │ ├── MIKMIDIObject.h │ │ ├── MIKMIDIObject_SubclassMethods.h │ │ ├── MIKMIDIOutputPort.h │ │ ├── MIKMIDIPitchBendChangeCommand.h │ │ ├── MIKMIDIPitchBendChangeEvent.h │ │ ├── MIKMIDIPlayer.h │ │ ├── MIKMIDIPolyphonicKeyPressureCommand.h │ │ ├── MIKMIDIPolyphonicKeyPressureEvent.h │ │ ├── MIKMIDIPort.h │ │ ├── MIKMIDIPort_SubclassMethods.h │ │ ├── MIKMIDIPrivate.h │ │ ├── MIKMIDIProgramChangeCommand.h │ │ ├── MIKMIDIProgramChangeEvent.h │ │ ├── MIKMIDIResponder.h │ │ ├── MIKMIDISequence+MIKMIDIPrivate.h │ │ ├── MIKMIDISequence.h │ │ ├── MIKMIDISequencer+MIKMIDIPrivate.h │ │ ├── MIKMIDISequencer.h │ │ ├── MIKMIDISourceEndpoint.h │ │ ├── MIKMIDISynthesizer.h │ │ ├── MIKMIDISynthesizerInstrument.h │ │ ├── MIKMIDISynthesizer_SubclassMethods.h │ │ ├── MIKMIDISystemExclusiveCommand.h │ │ ├── MIKMIDISystemKeepAliveCommand.h │ │ ├── MIKMIDISystemMessageCommand.h │ │ ├── MIKMIDITempoEvent.h │ │ ├── MIKMIDITrack.h │ │ ├── MIKMIDITrack_Protected.h │ │ ├── MIKMIDITransmittable.h │ │ ├── MIKMIDIUtilities.h │ │ └── NSUIApplication+MIKMIDI.h │ │ ├── ORSSerialPort │ │ ├── ORSSerialPacketDescriptor.h │ │ ├── ORSSerialPort.h │ │ ├── ORSSerialPortManager.h │ │ └── ORSSerialRequest.h │ │ ├── PocketSocket │ │ ├── PSWebSocket.h │ │ ├── PSWebSocketDriver.h │ │ └── PSWebSocketTypes.h │ │ ├── Sentry │ │ ├── Sentry-umbrella.h │ │ ├── Sentry.h │ │ ├── Sentry.modulemap │ │ ├── SentryAttachment.h │ │ ├── SentryBaggage.h │ │ ├── SentryBreadcrumb.h │ │ ├── SentryClient.h │ │ ├── SentryCrashExceptionApplication.h │ │ ├── SentryDebugImageProvider.h │ │ ├── SentryDebugMeta.h │ │ ├── SentryDefines.h │ │ ├── SentryDsn.h │ │ ├── SentryEnvelopeItemHeader.h │ │ ├── SentryError.h │ │ ├── SentryEvent.h │ │ ├── SentryException.h │ │ ├── SentryFrame.h │ │ ├── SentryGeo.h │ │ ├── SentryHttpStatusCodeRange.h │ │ ├── SentryHub.h │ │ ├── SentryMeasurementUnit.h │ │ ├── SentryMechanism.h │ │ ├── SentryMechanismMeta.h │ │ ├── SentryMessage.h │ │ ├── SentryNSError.h │ │ ├── SentryOptions.h │ │ ├── SentryProfilingConditionals.h │ │ ├── SentryRequest.h │ │ ├── SentrySDK.h │ │ ├── SentrySampleDecision.h │ │ ├── SentrySamplingContext.h │ │ ├── SentryScope.h │ │ ├── SentrySerializable.h │ │ ├── SentrySpanContext.h │ │ ├── SentrySpanId.h │ │ ├── SentrySpanProtocol.h │ │ ├── SentrySpanStatus.h │ │ ├── SentryStacktrace.h │ │ ├── SentryThread.h │ │ ├── SentryTraceContext.h │ │ ├── SentryTraceHeader.h │ │ ├── SentryTransactionContext.h │ │ ├── SentryUser.h │ │ ├── SentryUserFeedback.h │ │ └── SentryWithoutUIKit.h │ │ └── SocketRocket │ │ ├── NSRunLoop+SRWebSocket.h │ │ ├── NSURLRequest+SRWebSocket.h │ │ ├── SRSecurityPolicy.h │ │ ├── SRWebSocket.h │ │ └── SocketRocket.h ├── Local Podspecs │ ├── CocoaHTTPServer.podspec.json │ └── Sentry.podspec.json ├── MIKMIDI │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── MIKMIDI.h │ │ ├── MIKMIDIChannelEvent.h │ │ ├── MIKMIDIChannelEvent.m │ │ ├── MIKMIDIChannelPressureCommand.h │ │ ├── MIKMIDIChannelPressureCommand.m │ │ ├── MIKMIDIChannelPressureEvent.h │ │ ├── MIKMIDIChannelPressureEvent.m │ │ ├── MIKMIDIChannelVoiceCommand.h │ │ ├── MIKMIDIChannelVoiceCommand.m │ │ ├── MIKMIDIChannelVoiceCommand_SubclassMethods.h │ │ ├── MIKMIDIClientDestinationEndpoint.h │ │ ├── MIKMIDIClientDestinationEndpoint.m │ │ ├── MIKMIDIClientSourceEndpoint.h │ │ ├── MIKMIDIClientSourceEndpoint.m │ │ ├── MIKMIDIClock.h │ │ ├── MIKMIDIClock.m │ │ ├── MIKMIDICommand.h │ │ ├── MIKMIDICommand.m │ │ ├── MIKMIDICommandScheduler.h │ │ ├── MIKMIDICommandThrottler.h │ │ ├── MIKMIDICommandThrottler.m │ │ ├── MIKMIDICommand_SubclassMethods.h │ │ ├── MIKMIDICompilerCompatibility.h │ │ ├── MIKMIDIConnectionManager.h │ │ ├── MIKMIDIConnectionManager.m │ │ ├── MIKMIDIControlChangeCommand+Private.h │ │ ├── MIKMIDIControlChangeCommand.h │ │ ├── MIKMIDIControlChangeCommand.m │ │ ├── MIKMIDIControlChangeEvent.h │ │ ├── MIKMIDIControlChangeEvent.m │ │ ├── MIKMIDIDestinationEndpoint.h │ │ ├── MIKMIDIDestinationEndpoint.m │ │ ├── MIKMIDIDevice.h │ │ ├── MIKMIDIDevice.m │ │ ├── MIKMIDIDeviceManager.h │ │ ├── MIKMIDIDeviceManager.m │ │ ├── MIKMIDIEndpoint.h │ │ ├── MIKMIDIEndpoint.m │ │ ├── MIKMIDIEndpointSynthesizer.h │ │ ├── MIKMIDIEndpointSynthesizer.m │ │ ├── MIKMIDIEntity.h │ │ ├── MIKMIDIEntity.m │ │ ├── MIKMIDIErrors.h │ │ ├── MIKMIDIErrors.m │ │ ├── MIKMIDIEvent.h │ │ ├── MIKMIDIEvent.m │ │ ├── MIKMIDIEventIterator.h │ │ ├── MIKMIDIEventIterator.m │ │ ├── MIKMIDIEvent_SubclassMethods.h │ │ ├── MIKMIDIInputPort.h │ │ ├── MIKMIDIInputPort.m │ │ ├── MIKMIDIMacDebugQuickLookSupport.m │ │ ├── MIKMIDIMappableResponder.h │ │ ├── MIKMIDIMapping.h │ │ ├── MIKMIDIMapping.m │ │ ├── MIKMIDIMappingGenerator.h │ │ ├── MIKMIDIMappingGenerator.m │ │ ├── MIKMIDIMappingItem.h │ │ ├── MIKMIDIMappingItem.m │ │ ├── MIKMIDIMappingManager.h │ │ ├── MIKMIDIMappingManager.m │ │ ├── MIKMIDIMappingXMLParser.h │ │ ├── MIKMIDIMappingXMLParser.m │ │ ├── MIKMIDIMetaCopyrightEvent.h │ │ ├── MIKMIDIMetaCopyrightEvent.m │ │ ├── MIKMIDIMetaCuePointEvent.h │ │ ├── MIKMIDIMetaCuePointEvent.m │ │ ├── MIKMIDIMetaEvent.h │ │ ├── MIKMIDIMetaEvent.m │ │ ├── MIKMIDIMetaEvent_SubclassMethods.h │ │ ├── MIKMIDIMetaInstrumentNameEvent.h │ │ ├── MIKMIDIMetaInstrumentNameEvent.m │ │ ├── MIKMIDIMetaKeySignatureEvent.h │ │ ├── MIKMIDIMetaKeySignatureEvent.m │ │ ├── MIKMIDIMetaLyricEvent.h │ │ ├── MIKMIDIMetaLyricEvent.m │ │ ├── MIKMIDIMetaMarkerTextEvent.h │ │ ├── MIKMIDIMetaMarkerTextEvent.m │ │ ├── MIKMIDIMetaSequenceEvent.h │ │ ├── MIKMIDIMetaSequenceEvent.m │ │ ├── MIKMIDIMetaTextEvent.h │ │ ├── MIKMIDIMetaTextEvent.m │ │ ├── MIKMIDIMetaTimeSignatureEvent.h │ │ ├── MIKMIDIMetaTimeSignatureEvent.m │ │ ├── MIKMIDIMetaTrackSequenceNameEvent.h │ │ ├── MIKMIDIMetaTrackSequenceNameEvent.m │ │ ├── MIKMIDIMetronome.h │ │ ├── MIKMIDIMetronome.m │ │ ├── MIKMIDINoteCommand.h │ │ ├── MIKMIDINoteCommand.m │ │ ├── MIKMIDINoteCommand_SubclassMethods.h │ │ ├── MIKMIDINoteEvent.h │ │ ├── MIKMIDINoteEvent.m │ │ ├── MIKMIDINoteOffCommand.h │ │ ├── MIKMIDINoteOffCommand.m │ │ ├── MIKMIDINoteOnCommand.h │ │ ├── MIKMIDINoteOnCommand.m │ │ ├── MIKMIDIObject.h │ │ ├── MIKMIDIObject.m │ │ ├── MIKMIDIObject_SubclassMethods.h │ │ ├── MIKMIDIOutputPort.h │ │ ├── MIKMIDIOutputPort.m │ │ ├── MIKMIDIPitchBendChangeCommand.h │ │ ├── MIKMIDIPitchBendChangeCommand.m │ │ ├── MIKMIDIPitchBendChangeEvent.h │ │ ├── MIKMIDIPitchBendChangeEvent.m │ │ ├── MIKMIDIPlayer.h │ │ ├── MIKMIDIPlayer.m │ │ ├── MIKMIDIPolyphonicKeyPressureCommand.h │ │ ├── MIKMIDIPolyphonicKeyPressureCommand.m │ │ ├── MIKMIDIPolyphonicKeyPressureEvent.h │ │ ├── MIKMIDIPolyphonicKeyPressureEvent.m │ │ ├── MIKMIDIPort.h │ │ ├── MIKMIDIPort.m │ │ ├── MIKMIDIPort_SubclassMethods.h │ │ ├── MIKMIDIPrivate.h │ │ ├── MIKMIDIPrivateUtilities.h │ │ ├── MIKMIDIPrivateUtilities.m │ │ ├── MIKMIDIProgramChangeCommand.h │ │ ├── MIKMIDIProgramChangeCommand.m │ │ ├── MIKMIDIProgramChangeEvent.h │ │ ├── MIKMIDIProgramChangeEvent.m │ │ ├── MIKMIDIResponder.h │ │ ├── MIKMIDISequence+MIKMIDIPrivate.h │ │ ├── MIKMIDISequence.h │ │ ├── MIKMIDISequence.m │ │ ├── MIKMIDISequencer+MIKMIDIPrivate.h │ │ ├── MIKMIDISequencer.h │ │ ├── MIKMIDISequencer.m │ │ ├── MIKMIDISourceEndpoint.h │ │ ├── MIKMIDISourceEndpoint.m │ │ ├── MIKMIDISynthesizer.h │ │ ├── MIKMIDISynthesizer.m │ │ ├── MIKMIDISynthesizerInstrument.h │ │ ├── MIKMIDISynthesizerInstrument.m │ │ ├── MIKMIDISynthesizer_SubclassMethods.h │ │ ├── MIKMIDISystemExclusiveCommand.h │ │ ├── MIKMIDISystemExclusiveCommand.m │ │ ├── MIKMIDISystemKeepAliveCommand.h │ │ ├── MIKMIDISystemKeepAliveCommand.m │ │ ├── MIKMIDISystemMessageCommand.h │ │ ├── MIKMIDISystemMessageCommand.m │ │ ├── MIKMIDITempoEvent.h │ │ ├── MIKMIDITempoEvent.m │ │ ├── MIKMIDITrack.h │ │ ├── MIKMIDITrack.m │ │ ├── MIKMIDITrack_Protected.h │ │ ├── MIKMIDITransmittable.h │ │ ├── MIKMIDIUtilities.h │ │ ├── MIKMIDIUtilities.m │ │ ├── NSUIApplication+MIKMIDI.h │ │ └── NSUIApplication+MIKMIDI.m ├── Manifest.lock ├── ORSSerialPort │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── ORSSerialBuffer.h │ │ ├── ORSSerialBuffer.m │ │ ├── ORSSerialPacketDescriptor.h │ │ ├── ORSSerialPacketDescriptor.m │ │ ├── ORSSerialPort.h │ │ ├── ORSSerialPort.m │ │ ├── ORSSerialPortManager.h │ │ ├── ORSSerialPortManager.m │ │ ├── ORSSerialRequest.h │ │ └── ORSSerialRequest.m ├── PocketSocket │ ├── LICENSE │ ├── PocketSocket │ │ ├── PSWebSocket.h │ │ ├── PSWebSocket.m │ │ ├── PSWebSocketBuffer.h │ │ ├── PSWebSocketBuffer.m │ │ ├── PSWebSocketDeflater.h │ │ ├── PSWebSocketDeflater.m │ │ ├── PSWebSocketDriver.h │ │ ├── PSWebSocketDriver.m │ │ ├── PSWebSocketInflater.h │ │ ├── PSWebSocketInflater.m │ │ ├── PSWebSocketInternal.h │ │ ├── PSWebSocketNetworkThread.h │ │ ├── PSWebSocketNetworkThread.m │ │ ├── PSWebSocketTypes.h │ │ ├── PSWebSocketUTF8Decoder.h │ │ └── PSWebSocketUTF8Decoder.m │ └── README.md ├── Pods.xcodeproj │ └── project.pbxproj ├── Sentry │ ├── LICENSE.md │ ├── README.md │ └── Sources │ │ ├── Resources │ │ └── PrivacyInfo.xcprivacy │ │ ├── Sentry │ │ ├── NSArray+SentrySanitize.m │ │ ├── NSLocale+Sentry.m │ │ ├── NSMutableDictionary+Sentry.m │ │ ├── PrivateSentrySDKOnly.mm │ │ ├── Profiling │ │ │ ├── SentryContinuousProfiler.mm │ │ │ ├── SentryLaunchProfiling.m │ │ │ ├── SentryProfiledTracerConcurrency.mm │ │ │ ├── SentryProfilerDefines.h │ │ │ ├── SentryProfilerSerialization+Test.h │ │ │ ├── SentryProfilerSerialization.mm │ │ │ ├── SentryProfilerState.mm │ │ │ ├── SentryProfilerTestHelpers.m │ │ │ ├── SentrySample.m │ │ │ └── SentryTraceProfiler.mm │ │ ├── Public │ │ │ ├── Sentry.h │ │ │ ├── SentryAttachment.h │ │ │ ├── SentryBaggage.h │ │ │ ├── SentryBreadcrumb.h │ │ │ ├── SentryClient.h │ │ │ ├── SentryCrashExceptionApplication.h │ │ │ ├── SentryDebugImageProvider.h │ │ │ ├── SentryDebugMeta.h │ │ │ ├── SentryDefines.h │ │ │ ├── SentryDsn.h │ │ │ ├── SentryEnvelopeItemHeader.h │ │ │ ├── SentryError.h │ │ │ ├── SentryEvent.h │ │ │ ├── SentryException.h │ │ │ ├── SentryFrame.h │ │ │ ├── SentryGeo.h │ │ │ ├── SentryHttpStatusCodeRange.h │ │ │ ├── SentryHub.h │ │ │ ├── SentryMeasurementUnit.h │ │ │ ├── SentryMechanism.h │ │ │ ├── SentryMechanismMeta.h │ │ │ ├── SentryMessage.h │ │ │ ├── SentryNSError.h │ │ │ ├── SentryOptions.h │ │ │ ├── SentryProfilingConditionals.h │ │ │ ├── SentryRequest.h │ │ │ ├── SentrySDK.h │ │ │ ├── SentrySampleDecision.h │ │ │ ├── SentrySamplingContext.h │ │ │ ├── SentryScope.h │ │ │ ├── SentrySerializable.h │ │ │ ├── SentrySpanContext.h │ │ │ ├── SentrySpanId.h │ │ │ ├── SentrySpanProtocol.h │ │ │ ├── SentrySpanStatus.h │ │ │ ├── SentryStacktrace.h │ │ │ ├── SentryThread.h │ │ │ ├── SentryTraceContext.h │ │ │ ├── SentryTraceHeader.h │ │ │ ├── SentryTransactionContext.h │ │ │ ├── SentryUser.h │ │ │ ├── SentryUserFeedback.h │ │ │ └── SentryWithoutUIKit.h │ │ ├── SentryANRTracker.m │ │ ├── SentryANRTrackerV2.m │ │ ├── SentryANRTrackingIntegration.m │ │ ├── SentryANRTrackingIntegrationV2.m │ │ ├── SentryAppStartMeasurement.m │ │ ├── SentryAppStartTracker.m │ │ ├── SentryAppStartTrackingIntegration.m │ │ ├── SentryAppState.m │ │ ├── SentryAppStateManager.m │ │ ├── SentryAsyncSafeLog.c │ │ ├── SentryAsyncSafeLog.h │ │ ├── SentryAsynchronousOperation.m │ │ ├── SentryAttachment.m │ │ ├── SentryAutoBreadcrumbTrackingIntegration.m │ │ ├── SentryAutoSessionTrackingIntegration.m │ │ ├── SentryBacktrace.cpp │ │ ├── SentryBaggage.m │ │ ├── SentryBaseIntegration.m │ │ ├── SentryBinaryImageCache.m │ │ ├── SentryBreadcrumb.m │ │ ├── SentryBreadcrumbTracker.m │ │ ├── SentryBuildAppStartSpans.m │ │ ├── SentryByteCountFormatter.m │ │ ├── SentryClient.m │ │ ├── SentryClientReport.m │ │ ├── SentryConcurrentRateLimitsDictionary.m │ │ ├── SentryCoreDataSwizzling.m │ │ ├── SentryCoreDataTracker.m │ │ ├── SentryCoreDataTrackingIntegration.m │ │ ├── SentryCrashDefaultBinaryImageProvider.m │ │ ├── SentryCrashDefaultMachineContextWrapper.m │ │ ├── SentryCrashExceptionApplication.m │ │ ├── SentryCrashInstallationReporter.m │ │ ├── SentryCrashIntegration.m │ │ ├── SentryCrashReportConverter.m │ │ ├── SentryCrashReportSink.m │ │ ├── SentryCrashScopeObserver.m │ │ ├── SentryCrashStackEntryMapper.m │ │ ├── SentryCrashWrapper.m │ │ ├── SentryDataCategoryMapper.m │ │ ├── SentryDateUtil.m │ │ ├── SentryDateUtils.m │ │ ├── SentryDebugImageProvider.m │ │ ├── SentryDebugMeta.m │ │ ├── SentryDefaultObjCRuntimeWrapper.m │ │ ├── SentryDefaultRateLimits.m │ │ ├── SentryDelayedFrame.m │ │ ├── SentryDelayedFramesTracker.m │ │ ├── SentryDependencyContainer.m │ │ ├── SentryDevice.mm │ │ ├── SentryDiscardReasonMapper.m │ │ ├── SentryDiscardedEvent.m │ │ ├── SentryDispatchFactory.m │ │ ├── SentryDispatchQueueWrapper.m │ │ ├── SentryDispatchSourceWrapper.m │ │ ├── SentryDsn.m │ │ ├── SentryEnvelope.m │ │ ├── SentryEnvelopeAttachmentHeader.m │ │ ├── SentryEnvelopeItemHeader.m │ │ ├── SentryEnvelopeRateLimit.m │ │ ├── SentryError.mm │ │ ├── SentryEvent.m │ │ ├── SentryException.m │ │ ├── SentryExtraContextProvider.h │ │ ├── SentryExtraContextProvider.m │ │ ├── SentryFileIOTrackingIntegration.m │ │ ├── SentryFileManager.m │ │ ├── SentryFrame.m │ │ ├── SentryFrameRemover.m │ │ ├── SentryFramesTracker.m │ │ ├── SentryFramesTrackingIntegration.m │ │ ├── SentryGeo.m │ │ ├── SentryGlobalEventProcessor.m │ │ ├── SentryHttpDateParser.m │ │ ├── SentryHttpStatusCodeRange.m │ │ ├── SentryHttpTransport.m │ │ ├── SentryHub.m │ │ ├── SentryInAppLogic.m │ │ ├── SentryInstallation.m │ │ ├── SentryLevelHelper.m │ │ ├── SentryLevelMapper.m │ │ ├── SentryLogC.m │ │ ├── SentryMachLogging.cpp │ │ ├── SentryMeasurementUnit.m │ │ ├── SentryMeasurementValue.m │ │ ├── SentryMechanism.m │ │ ├── SentryMechanismMeta.m │ │ ├── SentryMessage.m │ │ ├── SentryMeta.m │ │ ├── SentryMetricKitIntegration.m │ │ ├── SentryMetricProfiler.mm │ │ ├── SentryMigrateSessionInit.m │ │ ├── SentryMsgPackSerializer.m │ │ ├── SentryNSDataSwizzling.m │ │ ├── SentryNSDataTracker.m │ │ ├── SentryNSDataUtils.m │ │ ├── SentryNSDictionarySanitize.m │ │ ├── SentryNSError.m │ │ ├── SentryNSNotificationCenterWrapper.m │ │ ├── SentryNSProcessInfoWrapper.mm │ │ ├── SentryNSTimerFactory.m │ │ ├── SentryNSURLRequest.m │ │ ├── SentryNSURLRequestBuilder.m │ │ ├── SentryNSURLSessionTaskSearch.m │ │ ├── SentryNetworkTracker.m │ │ ├── SentryNetworkTrackingIntegration.m │ │ ├── SentryNoOpSpan.m │ │ ├── SentryOptions.m │ │ ├── SentryPerformanceTracker.m │ │ ├── SentryPerformanceTrackingIntegration.m │ │ ├── SentryPredicateDescriptor.m │ │ ├── SentryProfileTimeseries.mm │ │ ├── SentryProfiler.mm │ │ ├── SentryPropagationContext.h │ │ ├── SentryPropagationContext.m │ │ ├── SentryQueueableRequestManager.m │ │ ├── SentryRandom.m │ │ ├── SentryRateLimitParser.m │ │ ├── SentryReachability.m │ │ ├── SentryRequest.m │ │ ├── SentryRequestOperation.m │ │ ├── SentryRetryAfterHeaderParser.m │ │ ├── SentrySDK.m │ │ ├── SentrySampleDecision.m │ │ ├── SentrySamplerDecision.m │ │ ├── SentrySampling.m │ │ ├── SentrySamplingContext.m │ │ ├── SentrySamplingProfiler.cpp │ │ ├── SentryScope.m │ │ ├── SentryScopeSyncC.c │ │ ├── SentryScreenFrames.m │ │ ├── SentryScreenshot.m │ │ ├── SentryScreenshotIntegration.m │ │ ├── SentrySdkInfo.m │ │ ├── SentrySerialization.m │ │ ├── SentrySession.m │ │ ├── SentrySessionCrashedHandler.m │ │ ├── SentrySessionReplayIntegration.m │ │ ├── SentrySessionReplaySyncC.c │ │ ├── SentrySessionTracker.m │ │ ├── SentrySpan.m │ │ ├── SentrySpanContext.m │ │ ├── SentrySpanId.m │ │ ├── SentrySpanStatus.m │ │ ├── SentrySpotlightTransport.m │ │ ├── SentryStacktrace.m │ │ ├── SentryStacktraceBuilder.m │ │ ├── SentryStatsdClient.m │ │ ├── SentrySubClassFinder.m │ │ ├── SentrySwiftAsyncIntegration.m │ │ ├── SentrySwizzle.m │ │ ├── SentrySwizzleWrapper.m │ │ ├── SentrySysctl.m │ │ ├── SentrySystemEventBreadcrumbs.m │ │ ├── SentrySystemWrapper.mm │ │ ├── SentryThread.m │ │ ├── SentryThreadHandle.cpp │ │ ├── SentryThreadInspector.m │ │ ├── SentryThreadMetadataCache.cpp │ │ ├── SentryThreadWrapper.m │ │ ├── SentryTime.mm │ │ ├── SentryTimeToDisplayTracker.m │ │ ├── SentryTraceContext.m │ │ ├── SentryTraceHeader.m │ │ ├── SentryTracer.m │ │ ├── SentryTracerConfiguration.m │ │ ├── SentryTransaction.m │ │ ├── SentryTransactionContext.mm │ │ ├── SentryTransportAdapter.m │ │ ├── SentryTransportFactory.m │ │ ├── SentryUIApplication.m │ │ ├── SentryUIDeviceWrapper.m │ │ ├── SentryUIEventTracker.m │ │ ├── SentryUIEventTrackerTransactionMode.m │ │ ├── SentryUIEventTrackingIntegration.m │ │ ├── SentryUIViewControllerPerformanceTracker.m │ │ ├── SentryUIViewControllerSwizzling.m │ │ ├── SentryUser.m │ │ ├── SentryUserFeedback.m │ │ ├── SentryViewHierarchy.m │ │ ├── SentryViewHierarchyIntegration.m │ │ ├── SentryWatchdogTerminationLogic.m │ │ ├── SentryWatchdogTerminationScopeObserver.m │ │ ├── SentryWatchdogTerminationTracker.m │ │ ├── SentryWatchdogTerminationTrackingIntegration.m │ │ ├── UIViewController+Sentry.m │ │ └── include │ │ │ ├── HybridPublic │ │ │ ├── PrivateSentrySDKOnly.h │ │ │ ├── PrivatesHeader.h │ │ │ ├── SentryAppStartMeasurement.h │ │ │ ├── SentryBinaryImageCache.h │ │ │ ├── SentryBreadcrumb+Private.h │ │ │ ├── SentryDependencyContainer.h │ │ │ ├── SentryEnvelope.h │ │ │ ├── SentryEnvelopeItemType.h │ │ │ ├── SentryFormatter.h │ │ │ ├── SentryFramesTracker.h │ │ │ ├── SentryOptions+HybridSDKs.h │ │ │ ├── SentryScreenFrames.h │ │ │ ├── SentrySessionReplayIntegration-Hybrid.h │ │ │ ├── SentrySwizzle.h │ │ │ └── SentryUser+Private.h │ │ │ ├── NSArray+SentrySanitize.h │ │ │ ├── NSLocale+Sentry.h │ │ │ ├── NSMutableDictionary+Sentry.h │ │ │ ├── SentryANRTracker.h │ │ │ ├── SentryANRTrackerV2.h │ │ │ ├── SentryANRTrackingIntegration.h │ │ │ ├── SentryANRTrackingIntegrationV2.h │ │ │ ├── SentryAppStartTracker.h │ │ │ ├── SentryAppStartTrackingIntegration.h │ │ │ ├── SentryAppState.h │ │ │ ├── SentryAppStateManager.h │ │ │ ├── SentryAsynchronousOperation.h │ │ │ ├── SentryAttachment+Private.h │ │ │ ├── SentryAutoBreadcrumbTrackingIntegration.h │ │ │ ├── SentryAutoSessionTrackingIntegration.h │ │ │ ├── SentryBacktrace.hpp │ │ │ ├── SentryBaseIntegration.h │ │ │ ├── SentryBreadcrumbDelegate.h │ │ │ ├── SentryBreadcrumbTracker.h │ │ │ ├── SentryBuildAppStartSpans.h │ │ │ ├── SentryByteCountFormatter.h │ │ │ ├── SentryCPU.h │ │ │ ├── SentryClient+Private.h │ │ │ ├── SentryClientReport.h │ │ │ ├── SentryCompiler.h │ │ │ ├── SentryConcurrentRateLimitsDictionary.h │ │ │ ├── SentryContinuousProfiler.h │ │ │ ├── SentryCoreDataSwizzling.h │ │ │ ├── SentryCoreDataTracker.h │ │ │ ├── SentryCoreDataTrackingIntegration.h │ │ │ ├── SentryCrashBinaryImageProvider.h │ │ │ ├── SentryCrashDefaultBinaryImageProvider.h │ │ │ ├── SentryCrashDefaultMachineContextWrapper.h │ │ │ ├── SentryCrashInstallationReporter.h │ │ │ ├── SentryCrashIntegration.h │ │ │ ├── SentryCrashIsAppImage.h │ │ │ ├── SentryCrashMachineContextWrapper.h │ │ │ ├── SentryCrashReportConverter.h │ │ │ ├── SentryCrashReportSink.h │ │ │ ├── SentryCrashScopeObserver.h │ │ │ ├── SentryCrashStackEntryMapper.h │ │ │ ├── SentryCrashWrapper.h │ │ │ ├── SentryDataCategory.h │ │ │ ├── SentryDataCategoryMapper.h │ │ │ ├── SentryDateUtil.h │ │ │ ├── SentryDateUtils.h │ │ │ ├── SentryDefaultObjCRuntimeWrapper.h │ │ │ ├── SentryDefaultRateLimits.h │ │ │ ├── SentryDelayedFrame.h │ │ │ ├── SentryDelayedFramesTracker.h │ │ │ ├── SentryDevice.h │ │ │ ├── SentryDiscardReason.h │ │ │ ├── SentryDiscardReasonMapper.h │ │ │ ├── SentryDiscardedEvent.h │ │ │ ├── SentryDispatchFactory.h │ │ │ ├── SentryDispatchQueueWrapper.h │ │ │ ├── SentryDispatchSourceWrapper.h │ │ │ ├── SentryDisplayLinkWrapper.h │ │ │ ├── SentryDisplayLinkWrapper.m │ │ │ ├── SentryEnvelope+Private.h │ │ │ ├── SentryEnvelopeAttachmentHeader.h │ │ │ ├── SentryEnvelopeRateLimit.h │ │ │ ├── SentryEvent+Private.h │ │ │ ├── SentryFileIOTrackingIntegration.h │ │ │ ├── SentryFileManager.h │ │ │ ├── SentryFrameRemover.h │ │ │ ├── SentryFramesTrackingIntegration.h │ │ │ ├── SentryGlobalEventProcessor.h │ │ │ ├── SentryHttpDateParser.h │ │ │ ├── SentryHttpStatusCodeRange+Private.h │ │ │ ├── SentryHttpTransport.h │ │ │ ├── SentryHub+Private.h │ │ │ ├── SentryInAppLogic.h │ │ │ ├── SentryInstallation.h │ │ │ ├── SentryInternalCDefines.h │ │ │ ├── SentryInternalDefines.h │ │ │ ├── SentryInternalNotificationNames.h │ │ │ ├── SentryInternalSerializable.h │ │ │ ├── SentryLaunchProfiling.h │ │ │ ├── SentryLevelHelper.h │ │ │ ├── SentryLevelMapper.h │ │ │ ├── SentryLog.h │ │ │ ├── SentryLogC.h │ │ │ ├── SentryMachLogging.hpp │ │ │ ├── SentryMeasurementValue.h │ │ │ ├── SentryMeta.h │ │ │ ├── SentryMetricKitIntegration.h │ │ │ ├── SentryMetricProfiler.h │ │ │ ├── SentryMigrateSessionInit.h │ │ │ ├── SentryMsgPackSerializer.h │ │ │ ├── SentryNSDataSwizzling.h │ │ │ ├── SentryNSDataTracker.h │ │ │ ├── SentryNSDataUtils.h │ │ │ ├── SentryNSDictionarySanitize.h │ │ │ ├── SentryNSNotificationCenterWrapper.h │ │ │ ├── SentryNSProcessInfoWrapper.h │ │ │ ├── SentryNSTimerFactory.h │ │ │ ├── SentryNSURLRequest.h │ │ │ ├── SentryNSURLRequestBuilder.h │ │ │ ├── SentryNSURLSessionTaskSearch.h │ │ │ ├── SentryNetworkTracker.h │ │ │ ├── SentryNetworkTrackingIntegration.h │ │ │ ├── SentryNoOpSpan.h │ │ │ ├── SentryObjCRuntimeWrapper.h │ │ │ ├── SentryOptions+Private.h │ │ │ ├── SentryPerformanceTracker.h │ │ │ ├── SentryPerformanceTrackingIntegration.h │ │ │ ├── SentryPredicateDescriptor.h │ │ │ ├── SentryPrivate.h │ │ │ ├── SentryProfileTimeseries.h │ │ │ ├── SentryProfiledTracerConcurrency.h │ │ │ ├── SentryProfiler+Private.h │ │ │ ├── SentryProfilerSerialization.h │ │ │ ├── SentryProfilerState+ObjCpp.h │ │ │ ├── SentryProfilerState.h │ │ │ ├── SentryProfilerTestHelpers.h │ │ │ ├── SentryQueueableRequestManager.h │ │ │ ├── SentryRandom.h │ │ │ ├── SentryRateLimitParser.h │ │ │ ├── SentryRateLimits.h │ │ │ ├── SentryReachability.h │ │ │ ├── SentryRequestManager.h │ │ │ ├── SentryRequestOperation.h │ │ │ ├── SentryRetryAfterHeaderParser.h │ │ │ ├── SentrySDK+Private.h │ │ │ ├── SentrySample.h │ │ │ ├── SentrySampleDecision+Private.h │ │ │ ├── SentrySamplerDecision.h │ │ │ ├── SentrySampling.h │ │ │ ├── SentrySamplingProfiler.hpp │ │ │ ├── SentryScope+Private.h │ │ │ ├── SentryScopeObserver.h │ │ │ ├── SentryScopeSyncC.h │ │ │ ├── SentryScreenshot.h │ │ │ ├── SentryScreenshotIntegration.h │ │ │ ├── SentrySdkInfo.h │ │ │ ├── SentrySerialization.h │ │ │ ├── SentrySession+Private.h │ │ │ ├── SentrySession.h │ │ │ ├── SentrySessionCrashedHandler.h │ │ │ ├── SentrySessionReplayIntegration+Private.h │ │ │ ├── SentrySessionReplayIntegration.h │ │ │ ├── SentrySessionReplaySyncC.h │ │ │ ├── SentrySessionTracker.h │ │ │ ├── SentrySpan+Private.h │ │ │ ├── SentrySpan.h │ │ │ ├── SentrySpanContext+Private.h │ │ │ ├── SentrySpanOperations.h │ │ │ ├── SentrySpotlightTransport.h │ │ │ ├── SentryStackBounds.hpp │ │ │ ├── SentryStackFrame.hpp │ │ │ ├── SentryStacktraceBuilder.h │ │ │ ├── SentryStatsdClient.h │ │ │ ├── SentrySubClassFinder.h │ │ │ ├── SentrySwift.h │ │ │ ├── SentrySwiftAsyncIntegration.h │ │ │ ├── SentrySwizzleWrapper.h │ │ │ ├── SentrySysctl.h │ │ │ ├── SentrySystemEventBreadcrumbs.h │ │ │ ├── SentrySystemWrapper.h │ │ │ ├── SentryThreadHandle.hpp │ │ │ ├── SentryThreadInspector.h │ │ │ ├── SentryThreadMetadataCache.hpp │ │ │ ├── SentryThreadState.hpp │ │ │ ├── SentryThreadWrapper.h │ │ │ ├── SentryTime.h │ │ │ ├── SentryTimeToDisplayTracker.h │ │ │ ├── SentryTraceOrigins.h │ │ │ ├── SentryTraceProfiler.h │ │ │ ├── SentryTracer+Private.h │ │ │ ├── SentryTracer.h │ │ │ ├── SentryTracerConfiguration.h │ │ │ ├── SentryTransaction.h │ │ │ ├── SentryTransactionContext+Private.h │ │ │ ├── SentryTransport.h │ │ │ ├── SentryTransportAdapter.h │ │ │ ├── SentryTransportFactory.h │ │ │ ├── SentryUIApplication.h │ │ │ ├── SentryUIDeviceWrapper.h │ │ │ ├── SentryUIEventTracker.h │ │ │ ├── SentryUIEventTrackerMode.h │ │ │ ├── SentryUIEventTrackerTransactionMode.h │ │ │ ├── SentryUIEventTrackingIntegration.h │ │ │ ├── SentryUIViewControllerPerformanceTracker.h │ │ │ ├── SentryUIViewControllerSwizzling.h │ │ │ ├── SentryViewHierarchy.h │ │ │ ├── SentryViewHierarchyIntegration.h │ │ │ ├── SentryWatchdogTerminationLogic.h │ │ │ ├── SentryWatchdogTerminationScopeObserver.h │ │ │ ├── SentryWatchdogTerminationTracker.h │ │ │ ├── SentryWatchdogTerminationTrackingIntegration.h │ │ │ ├── UIViewController+Sentry.h │ │ │ └── module.modulemap │ │ ├── SentryCrash │ │ ├── Installations │ │ │ ├── SentryCrashInstallation+Private.h │ │ │ ├── SentryCrashInstallation.h │ │ │ └── SentryCrashInstallation.m │ │ ├── Recording │ │ │ ├── Monitors │ │ │ │ ├── SentryCrashMonitor.c │ │ │ │ ├── SentryCrashMonitor.h │ │ │ │ ├── SentryCrashMonitorContext.h │ │ │ │ ├── SentryCrashMonitorType.c │ │ │ │ ├── SentryCrashMonitorType.h │ │ │ │ ├── SentryCrashMonitor_AppState.c │ │ │ │ ├── SentryCrashMonitor_AppState.h │ │ │ │ ├── SentryCrashMonitor_CPPException.cpp │ │ │ │ ├── SentryCrashMonitor_CPPException.h │ │ │ │ ├── SentryCrashMonitor_MachException.c │ │ │ │ ├── SentryCrashMonitor_MachException.h │ │ │ │ ├── SentryCrashMonitor_NSException.h │ │ │ │ ├── SentryCrashMonitor_NSException.m │ │ │ │ ├── SentryCrashMonitor_Signal.c │ │ │ │ ├── SentryCrashMonitor_Signal.h │ │ │ │ ├── SentryCrashMonitor_System.h │ │ │ │ └── SentryCrashMonitor_System.m │ │ │ ├── SentryCrash.h │ │ │ ├── SentryCrash.m │ │ │ ├── SentryCrashBinaryImageCache.c │ │ │ ├── SentryCrashBinaryImageCache.h │ │ │ ├── SentryCrashC.c │ │ │ ├── SentryCrashC.h │ │ │ ├── SentryCrashCachedData.c │ │ │ ├── SentryCrashCachedData.h │ │ │ ├── SentryCrashDoctor.h │ │ │ ├── SentryCrashDoctor.m │ │ │ ├── SentryCrashReport.c │ │ │ ├── SentryCrashReport.h │ │ │ ├── SentryCrashReportFields.h │ │ │ ├── SentryCrashReportFixer.c │ │ │ ├── SentryCrashReportFixer.h │ │ │ ├── SentryCrashReportStore.c │ │ │ ├── SentryCrashReportStore.h │ │ │ ├── SentryCrashReportVersion.h │ │ │ ├── SentryCrashReportWriter.h │ │ │ └── Tools │ │ │ │ ├── SentryCrashCPU.c │ │ │ │ ├── SentryCrashCPU.h │ │ │ │ ├── SentryCrashCPU_Apple.h │ │ │ │ ├── SentryCrashCPU_arm.c │ │ │ │ ├── SentryCrashCPU_arm64.c │ │ │ │ ├── SentryCrashCPU_x86_32.c │ │ │ │ ├── SentryCrashCPU_x86_64.c │ │ │ │ ├── SentryCrashDate.c │ │ │ │ ├── SentryCrashDate.h │ │ │ │ ├── SentryCrashDebug.c │ │ │ │ ├── SentryCrashDebug.h │ │ │ │ ├── SentryCrashDynamicLinker.c │ │ │ │ ├── SentryCrashDynamicLinker.h │ │ │ │ ├── SentryCrashFileUtils.c │ │ │ │ ├── SentryCrashFileUtils.h │ │ │ │ ├── SentryCrashID.c │ │ │ │ ├── SentryCrashID.h │ │ │ │ ├── SentryCrashJSONCodec.c │ │ │ │ ├── SentryCrashJSONCodec.h │ │ │ │ ├── SentryCrashJSONCodecObjC.h │ │ │ │ ├── SentryCrashJSONCodecObjC.m │ │ │ │ ├── SentryCrashMach.c │ │ │ │ ├── SentryCrashMach.h │ │ │ │ ├── SentryCrashMachineContext.c │ │ │ │ ├── SentryCrashMachineContext.h │ │ │ │ ├── SentryCrashMachineContext_Apple.h │ │ │ │ ├── SentryCrashMemory.c │ │ │ │ ├── SentryCrashMemory.h │ │ │ │ ├── SentryCrashNSErrorUtil.h │ │ │ │ ├── SentryCrashNSErrorUtil.m │ │ │ │ ├── SentryCrashObjC.c │ │ │ │ ├── SentryCrashObjC.h │ │ │ │ ├── SentryCrashObjCApple.h │ │ │ │ ├── SentryCrashPlatformSpecificDefines.h │ │ │ │ ├── SentryCrashSignalInfo.c │ │ │ │ ├── SentryCrashSignalInfo.h │ │ │ │ ├── SentryCrashStackCursor.c │ │ │ │ ├── SentryCrashStackCursor.h │ │ │ │ ├── SentryCrashStackCursor_Backtrace.c │ │ │ │ ├── SentryCrashStackCursor_Backtrace.h │ │ │ │ ├── SentryCrashStackCursor_MachineContext.c │ │ │ │ ├── SentryCrashStackCursor_MachineContext.h │ │ │ │ ├── SentryCrashStackCursor_SelfThread.h │ │ │ │ ├── SentryCrashStackCursor_SelfThread.m │ │ │ │ ├── SentryCrashString.c │ │ │ │ ├── SentryCrashString.h │ │ │ │ ├── SentryCrashSymbolicator.c │ │ │ │ ├── SentryCrashSymbolicator.h │ │ │ │ ├── SentryCrashSysCtl.c │ │ │ │ ├── SentryCrashSysCtl.h │ │ │ │ ├── SentryCrashThread.c │ │ │ │ ├── SentryCrashThread.h │ │ │ │ ├── SentryCrashUUIDConversion.c │ │ │ │ └── SentryCrashUUIDConversion.h │ │ └── Reporting │ │ │ └── Filters │ │ │ ├── SentryCrashReportFilter.h │ │ │ ├── SentryCrashReportFilterBasic.h │ │ │ ├── SentryCrashReportFilterBasic.m │ │ │ └── Tools │ │ │ ├── SentryCrashVarArgs.h │ │ │ ├── SentryDictionaryDeepSearch.h │ │ │ └── SentryDictionaryDeepSearch.m │ │ └── Swift │ │ ├── Extensions │ │ ├── NSLock.swift │ │ ├── NumberExtensions.swift │ │ ├── StringExtensions.swift │ │ └── UIViewExtensions.swift │ │ ├── Helper │ │ ├── Log │ │ │ └── SentryLevel.swift │ │ ├── SentryBaggageSerialization.swift │ │ ├── SentryCurrentDateProvider.swift │ │ ├── SentryEnabledFeaturesBuilder.swift │ │ └── SentryFileContents.swift │ │ ├── Integrations │ │ ├── ANR │ │ │ └── SentryANRTrackerV2Delegate.swift │ │ ├── FramesTracking │ │ │ └── SentryFramesDelayResult.swift │ │ ├── Performance │ │ │ └── SentryTransactionNameSource.swift │ │ └── SessionReplay │ │ │ ├── RRWeb │ │ │ ├── SentryRRWebBreadcrumbEvent.swift │ │ │ ├── SentryRRWebCustomEvent.swift │ │ │ ├── SentryRRWebEvent.swift │ │ │ ├── SentryRRWebMetaEvent.swift │ │ │ ├── SentryRRWebSpanEvent.swift │ │ │ ├── SentryRRWebTouchEvent.swift │ │ │ └── SentryRRWebVideoEvent.swift │ │ │ ├── SentryOnDemandReplay.swift │ │ │ ├── SentryPixelBuffer.swift │ │ │ ├── SentryReplayEvent.swift │ │ │ ├── SentryReplayOptions.swift │ │ │ ├── SentryReplayRecording.swift │ │ │ ├── SentryReplayType.swift │ │ │ ├── SentryReplayVideoMaker.swift │ │ │ ├── SentrySRDefaultBreadcrumbConverter.swift │ │ │ ├── SentrySessionReplay.swift │ │ │ ├── SentryTouchTracker.swift │ │ │ └── SentryVideoInfo.swift │ │ ├── MetricKit │ │ ├── SentryMXCallStackTree.swift │ │ └── SentryMXManager.swift │ │ ├── Metrics │ │ ├── BucketsMetricsAggregator.swift │ │ ├── CounterMetric.swift │ │ ├── DistributionMetric.swift │ │ ├── EncodeMetrics.swift │ │ ├── GaugeMetric.swift │ │ ├── LocalMetricsAggregator.swift │ │ ├── Metric.swift │ │ ├── MetricsAggregator.swift │ │ ├── SentryMetricsAPI.swift │ │ ├── SentryMetricsClient.swift │ │ └── SetMetric.swift │ │ ├── Protocol │ │ ├── SentryId.swift │ │ ├── SentryIntegrationProtocol.swift │ │ ├── SentryRedactOptions.swift │ │ └── SentrySessionListener.swift │ │ ├── SentryExperimentalOptions.swift │ │ ├── SwiftDescriptor.swift │ │ └── Tools │ │ ├── HTTPHeaderSanitizer.swift │ │ ├── SentryLog.swift │ │ ├── SentryLogOutput.swift │ │ ├── SentryViewPhotographer.swift │ │ ├── SentryViewScreenshotProvider.swift │ │ ├── UIImageHelper.swift │ │ ├── UIRedactBuilder.swift │ │ ├── URLSessionTaskHelper.swift │ │ └── UrlSanitized.swift ├── SocketRocket │ ├── LICENSE │ ├── LICENSE-examples │ ├── README.md │ └── SocketRocket │ │ ├── Internal │ │ ├── Delegate │ │ │ ├── SRDelegateController.h │ │ │ └── SRDelegateController.m │ │ ├── IOConsumer │ │ │ ├── SRIOConsumer.h │ │ │ ├── SRIOConsumer.m │ │ │ ├── SRIOConsumerPool.h │ │ │ └── SRIOConsumerPool.m │ │ ├── NSRunLoop+SRWebSocketPrivate.h │ │ ├── NSURLRequest+SRWebSocketPrivate.h │ │ ├── Proxy │ │ │ ├── SRProxyConnect.h │ │ │ └── SRProxyConnect.m │ │ ├── RunLoop │ │ │ ├── SRRunLoopThread.h │ │ │ └── SRRunLoopThread.m │ │ ├── SRConstants.h │ │ ├── SRConstants.m │ │ ├── Security │ │ │ ├── SRPinningSecurityPolicy.h │ │ │ └── SRPinningSecurityPolicy.m │ │ └── Utilities │ │ │ ├── SRError.h │ │ │ ├── SRError.m │ │ │ ├── SRHTTPConnectMessage.h │ │ │ ├── SRHTTPConnectMessage.m │ │ │ ├── SRHash.h │ │ │ ├── SRHash.m │ │ │ ├── SRLog.h │ │ │ ├── SRLog.m │ │ │ ├── SRMutex.h │ │ │ ├── SRMutex.m │ │ │ ├── SRRandom.h │ │ │ ├── SRRandom.m │ │ │ ├── SRSIMDHelpers.h │ │ │ ├── SRSIMDHelpers.m │ │ │ ├── SRURLUtilities.h │ │ │ └── SRURLUtilities.m │ │ ├── NSRunLoop+SRWebSocket.h │ │ ├── NSRunLoop+SRWebSocket.m │ │ ├── NSURLRequest+SRWebSocket.h │ │ ├── NSURLRequest+SRWebSocket.m │ │ ├── SRSecurityPolicy.h │ │ ├── SRSecurityPolicy.m │ │ ├── SRWebSocket.h │ │ ├── SRWebSocket.m │ │ └── SocketRocket.h ├── Sparkle │ ├── LICENSE │ ├── Sparkle.framework │ │ ├── Autoupdate │ │ ├── Headers │ │ ├── Modules │ │ ├── PrivateHeaders │ │ ├── Resources │ │ ├── Sparkle │ │ ├── Updater.app │ │ ├── Versions │ │ │ ├── B │ │ │ │ ├── Autoupdate │ │ │ │ ├── Headers │ │ │ │ │ ├── SPUDownloadData.h │ │ │ │ │ ├── SPUStandardUpdaterController.h │ │ │ │ │ ├── SPUStandardUserDriver.h │ │ │ │ │ ├── SPUStandardUserDriverDelegate.h │ │ │ │ │ ├── SPUUpdateCheck.h │ │ │ │ │ ├── SPUUpdatePermissionRequest.h │ │ │ │ │ ├── SPUUpdater.h │ │ │ │ │ ├── SPUUpdaterDelegate.h │ │ │ │ │ ├── SPUUpdaterSettings.h │ │ │ │ │ ├── SPUUserDriver.h │ │ │ │ │ ├── SPUUserUpdateState.h │ │ │ │ │ ├── SUAppcast.h │ │ │ │ │ ├── SUAppcastItem.h │ │ │ │ │ ├── SUErrors.h │ │ │ │ │ ├── SUExport.h │ │ │ │ │ ├── SUStandardVersionComparator.h │ │ │ │ │ ├── SUUpdatePermissionResponse.h │ │ │ │ │ ├── SUUpdater.h │ │ │ │ │ ├── SUUpdaterDelegate.h │ │ │ │ │ ├── SUVersionComparisonProtocol.h │ │ │ │ │ ├── SUVersionDisplayProtocol.h │ │ │ │ │ └── Sparkle.h │ │ │ │ ├── Modules │ │ │ │ │ └── module.modulemap │ │ │ │ ├── PrivateHeaders │ │ │ │ │ ├── SPUAppcastItemStateResolver.h │ │ │ │ │ ├── SPUGentleUserDriverReminders.h │ │ │ │ │ ├── SPUInstallationType.h │ │ │ │ │ ├── SPUStandardUserDriver+Private.h │ │ │ │ │ ├── SPUUserAgent+Private.h │ │ │ │ │ ├── SUAppcastItem+Private.h │ │ │ │ │ └── SUInstallerLauncher+Private.h │ │ │ │ ├── Resources │ │ │ │ │ ├── Base.lproj │ │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ │ │ ├── keyedobjects-101300.nib │ │ │ │ │ │ │ └── keyedobjects-110000.nib │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── ReleaseNotesColorStyle.css │ │ │ │ │ ├── SUStatus.nib │ │ │ │ │ ├── ar.lproj │ │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── ca.lproj │ │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── cs.lproj │ │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── da.lproj │ │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── de.lproj │ │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── el.lproj │ │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ │ └── SUUpdatePermissionPrompt.strings │ │ │ │ │ ├── es.lproj │ │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── fa.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── fi.lproj │ │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── fr.lproj │ │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── he.lproj │ │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── hr.lproj │ │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── hu.lproj │ │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── is.lproj │ │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── it.lproj │ │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── ja.lproj │ │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── ko.lproj │ │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── nb.lproj │ │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── nl.lproj │ │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── nn.lproj │ │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── pl.lproj │ │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── pt-BR.lproj │ │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── pt-PT.lproj │ │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── ro.lproj │ │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── ru.lproj │ │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── sk.lproj │ │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── sl.lproj │ │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── sv.lproj │ │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── th.lproj │ │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── tr.lproj │ │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── uk.lproj │ │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── zh_CN.lproj │ │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── zh_HK.lproj │ │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ └── zh_TW.lproj │ │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── Sparkle │ │ │ │ ├── Updater.app │ │ │ │ │ └── Contents │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── MacOS │ │ │ │ │ │ └── Updater │ │ │ │ │ │ ├── PkgInfo │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── SUStatus.nib │ │ │ │ │ │ └── _CodeSignature │ │ │ │ │ │ └── CodeResources │ │ │ │ ├── XPCServices │ │ │ │ │ ├── Downloader.xpc │ │ │ │ │ │ └── Contents │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ ├── MacOS │ │ │ │ │ │ │ └── Downloader │ │ │ │ │ │ │ └── _CodeSignature │ │ │ │ │ │ │ └── CodeResources │ │ │ │ │ └── Installer.xpc │ │ │ │ │ │ └── Contents │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── MacOS │ │ │ │ │ │ └── Installer │ │ │ │ │ │ └── _CodeSignature │ │ │ │ │ │ └── CodeResources │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ └── Current │ │ └── XPCServices │ └── bin │ │ ├── BinaryDelta │ │ ├── generate_appcast │ │ ├── generate_keys │ │ ├── old_dsa_scripts │ │ └── sign_update │ │ └── sign_update └── Target Support Files │ ├── ASCIImage │ ├── ASCIImage-dummy.m │ ├── ASCIImage-prefix.pch │ ├── ASCIImage.debug.xcconfig │ ├── ASCIImage.release.xcconfig │ └── ASCIImage.xcconfig │ ├── CocoaAsyncSocket │ ├── CocoaAsyncSocket-dummy.m │ ├── CocoaAsyncSocket-prefix.pch │ ├── CocoaAsyncSocket.debug.xcconfig │ ├── CocoaAsyncSocket.release.xcconfig │ └── CocoaAsyncSocket.xcconfig │ ├── CocoaHTTPServer │ ├── CocoaHTTPServer-dummy.m │ ├── CocoaHTTPServer-prefix.pch │ ├── CocoaHTTPServer.debug.xcconfig │ ├── CocoaHTTPServer.release.xcconfig │ └── CocoaHTTPServer.xcconfig │ ├── CocoaLumberjack │ ├── CocoaLumberjack-dummy.m │ ├── CocoaLumberjack-prefix.pch │ ├── CocoaLumberjack.debug.xcconfig │ ├── CocoaLumberjack.release.xcconfig │ ├── CocoaLumberjack.xcconfig │ └── ResourceBundle-CocoaLumberjackPrivacy-CocoaLumberjack-Info.plist │ ├── MIKMIDI │ ├── MIKMIDI-dummy.m │ ├── MIKMIDI-prefix.pch │ ├── MIKMIDI.debug.xcconfig │ ├── MIKMIDI.release.xcconfig │ └── MIKMIDI.xcconfig │ ├── ORSSerialPort │ ├── ORSSerialPort-dummy.m │ ├── ORSSerialPort-prefix.pch │ ├── ORSSerialPort.debug.xcconfig │ └── ORSSerialPort.release.xcconfig │ ├── PocketSocket │ ├── PocketSocket-dummy.m │ ├── PocketSocket-prefix.pch │ ├── PocketSocket.debug.xcconfig │ └── PocketSocket.release.xcconfig │ ├── Pods-Hammerspoon │ ├── Pods-Hammerspoon-acknowledgements.markdown │ ├── Pods-Hammerspoon-acknowledgements.plist │ ├── Pods-Hammerspoon-dummy.m │ ├── Pods-Hammerspoon-frameworks.sh │ ├── Pods-Hammerspoon-resources.sh │ ├── Pods-Hammerspoon-umbrella.h │ ├── Pods-Hammerspoon.debug.xcconfig │ ├── Pods-Hammerspoon.modulemap │ ├── Pods-Hammerspoon.profile.xcconfig │ └── Pods-Hammerspoon.release.xcconfig │ ├── Sentry │ ├── ResourceBundle-Sentry-Sentry-Info.plist │ ├── Sentry-dummy.m │ ├── Sentry-prefix.pch │ ├── Sentry-umbrella.h │ ├── Sentry.debug.xcconfig │ ├── Sentry.modulemap │ ├── Sentry.release.xcconfig │ └── Sentry.xcconfig │ ├── SocketRocket │ ├── SocketRocket-dummy.m │ ├── SocketRocket-prefix.pch │ ├── SocketRocket.debug.xcconfig │ ├── SocketRocket.release.xcconfig │ └── SocketRocket.xcconfig │ └── Sparkle │ ├── Sparkle-copy-dsyms-input-files.xcfilelist │ ├── Sparkle-copy-dsyms-output-files.xcfilelist │ ├── Sparkle-copy-dsyms.sh │ ├── Sparkle.debug.xcconfig │ ├── Sparkle.release.xcconfig │ └── Sparkle.xcconfig ├── README.md ├── SPOONS.md ├── appcast.xml ├── codecov.yml ├── extensions ├── _coresetup │ ├── _coresetup.lua │ └── test_coresetup.lua ├── alert │ ├── LICENSE │ ├── alert.lua │ └── test_alert.lua ├── appfinder │ ├── LICENSE │ ├── appfinder.lua │ └── test_appfinder.lua ├── applescript │ ├── LICENSE │ └── applescript.lua ├── application │ ├── LICENSE │ ├── application.lua │ ├── libapplication.m │ ├── libapplication_watcher.m │ └── test_application.lua ├── audiodevice │ ├── LICENSE │ ├── audiodevice.lua │ ├── libaudiodevice.m │ ├── libaudiodevice_watcher.m │ └── test_audiodevice.lua ├── axuielement │ ├── ExternalReferences.h │ ├── axtextmarker.m │ ├── axuielement.lua │ ├── common.h │ ├── common.m │ ├── libaxuielement.m │ └── observer.m ├── base64 │ ├── LICENSE │ ├── base64.lua │ ├── libbase64.m │ └── test_base64.lua ├── battery │ ├── LICENSE │ ├── battery.lua │ ├── libbattery.m │ └── libbattery_watcher.m ├── bonjour │ ├── bonjour.lua │ ├── libbonjoir.m │ └── libbonjour_service.m ├── brightness │ ├── LICENSE │ ├── brightness.lua │ ├── libbrightness.m │ └── test_brightness.lua ├── caffeinate │ ├── LICENSE │ ├── caffeinate.lua │ ├── libcaffeinate.m │ └── libcaffeinate_watcher.m ├── camera │ ├── camera.lua │ └── libcamera.m ├── canvas │ ├── Canvas.h │ ├── canvas.lua │ ├── canvas_matrix.lua │ ├── imageAdditions.m │ ├── libcanvas.m │ └── libcanvas_matrix.m ├── chooser │ ├── HSChooser.h │ ├── HSChooser.m │ ├── HSChooserCell.h │ ├── HSChooserCell.m │ ├── HSChooserRootView.h │ ├── HSChooserRootView.m │ ├── HSChooserTableView.h │ ├── HSChooserTableView.m │ ├── HSChooserVerticallyCenteringTextFieldCell.h │ ├── HSChooserVerticallyCenteringTextFieldCell.m │ ├── HSChooserWindow.h │ ├── HSChooserWindow.m │ ├── HSChooserWindow.xib │ ├── LICENSE │ ├── chooser.h │ ├── chooser.lua │ └── libchooser.m ├── console │ ├── console.lua │ └── libconsole.m ├── crash │ ├── LICENSE │ ├── crash.lua │ ├── libcrash.m │ └── test_crash.lua ├── deezer │ ├── LICENSE │ └── deezer.lua ├── dialog │ ├── LICENSE │ ├── dialog.lua │ └── libdialog.m ├── distributednotifications │ ├── LICENSE │ ├── distributednotifications.lua │ ├── libdistributednotifications.m │ └── test_distributednotifications.lua ├── doc │ ├── LICENSE │ ├── autolink.c │ ├── autolink.h │ ├── buffer.c │ ├── buffer.h │ ├── doc.lua │ ├── doc_builder.lua │ ├── houdini.h │ ├── houdini_href_e.c │ ├── houdini_html_e.c │ ├── hsdocs │ │ ├── common.lp │ │ ├── form.lp │ │ ├── gfm.lp │ │ ├── hsminweb │ │ │ ├── functions.md │ │ │ ├── index.md │ │ │ └── templates.md │ │ ├── index.lp │ │ ├── index.md │ │ ├── init.lua │ │ ├── module.lp │ │ ├── sample.lp │ │ └── search.lp │ ├── html.c │ ├── html.h │ ├── html_blocks.h │ ├── libdoc.m │ ├── lua.json │ ├── makeLuaDocs.lua │ ├── markdown.c │ ├── markdown.h │ ├── markdown.m │ ├── plaintext.c │ ├── plaintext.h │ ├── stack.c │ └── stack.h ├── dockicon │ ├── LICENSE │ ├── dockicon.lua │ └── libdockicon.m ├── drawing │ ├── LICENSE │ ├── color │ │ ├── drawing_color.lua │ │ └── libdrawing_color.m │ ├── drawing.lua │ └── drawing_canvasWrapper.lua ├── eventtap │ ├── IOHIDEventData.h │ ├── IOHIDEventTypes.h │ ├── LICENSE.md │ ├── TouchEvents.c │ ├── TouchEvents.h │ ├── eventtap.lua │ ├── eventtap_event.h │ ├── libeventtap.m │ └── libeventtap_event.m ├── expose │ └── expose.lua ├── fnutils │ ├── LICENSE │ ├── fnutils.lua │ └── test_fnutils.lua ├── fs │ ├── LICENSE │ ├── fs.lua │ ├── lfs.h │ ├── libfs.m │ ├── libfs_volume.m │ ├── libfs_xattr.m │ └── test_fs.lua ├── geometry │ ├── LICENSE │ └── geometry.lua ├── grid │ ├── LICENSE │ └── grid.lua ├── hash │ ├── LICENSE │ ├── algorithms.h │ ├── algorithms.m │ ├── byte_order.h │ ├── hash.lua │ ├── libhash.m │ ├── sha3.h │ └── sha3.m ├── hid │ ├── hid.lua │ ├── led.m │ └── libhid.m ├── hints │ ├── LICENSE │ ├── hints.lua │ └── internal.m ├── host │ ├── LICENSE │ ├── host.lua │ ├── libhost.m │ └── locale │ │ ├── host_locale.lua │ │ └── libhost_locale.m ├── hotkey │ ├── LICENSE │ ├── hotkey.lua │ ├── libhotkey.m │ └── test_hotkey.lua ├── http │ ├── http.lua │ ├── libhttp.m │ └── test_http.lua ├── httpserver │ ├── LICENSE │ ├── LICENSE.timeout3 │ ├── MYAnonymousIdentity.h │ ├── MYAnonymousIdentity.m │ ├── cgilua_compatibility_functions.lua │ ├── httpserver.lua │ ├── httpserver_hsminweb.lua │ ├── libhttpserver.m │ ├── mkCertTemplate.sh │ ├── openssl.conf │ └── timeout3 ├── image │ ├── image.lua │ ├── libimage.m │ └── test_image.lua ├── inspect │ ├── LICENSE │ ├── inspect.lua │ └── test_inspect.lua ├── ipc │ ├── LICENSE │ ├── cli │ │ ├── hs.m │ │ └── hs.man │ ├── ipc.lua │ └── libipc.m ├── itunes │ ├── LICENSE │ └── itunes.lua ├── javascript │ ├── LICENSE │ └── javascript.lua ├── json │ ├── LICENSE │ ├── json.lua │ ├── libjson.m │ └── test_json.lua ├── keycodes │ ├── LICENSE │ ├── keycodes.lua │ └── libkeycodes.m ├── layout │ ├── LICENSE │ └── layout.lua ├── location │ ├── EDSunriseSet.h │ ├── EDSunriseSet.m │ ├── LICENSE │ ├── liblocation.m │ ├── location.lua │ └── location_geocoder.lua ├── logger │ └── logger.lua ├── math │ ├── libmath.m │ ├── math.lua │ └── test_math.lua ├── menubar │ ├── LICENSE │ ├── libmenubar.m │ └── menubar.lua ├── messages │ ├── LICENSE │ └── messages.lua ├── midi │ ├── LICENSE │ ├── libmidi.m │ └── midi.lua ├── milight │ ├── LICENSE │ ├── libmilight.m │ └── milight.lua ├── mjomatic │ ├── LICENSE │ └── mjomatic.lua ├── mouse │ ├── LICENSE │ ├── libmouse.m │ ├── manymouse │ │ └── LICENSE.txt │ ├── mouse.lua │ └── test_mouse.lua ├── network │ ├── libnetwork_configuration.m │ ├── libnetwork_host.m │ ├── libnetwork_reachability.m │ ├── network.lua │ ├── network_configuration.lua │ ├── network_host.lua │ ├── network_reachability.lua │ └── ping │ │ ├── LICENSE │ │ ├── LICENSE.SimplePing │ │ ├── SimplePing.h │ │ ├── SimplePing.m │ │ ├── libnetwork_ping.m │ │ └── network_ping.lua ├── noises │ ├── LICENSE │ ├── detectors.cpp │ ├── detectors.h │ ├── libnoises.m │ ├── noises.lua │ ├── popTemplate.h │ └── test_noises.lua ├── notify │ ├── LICENSE │ ├── libnotify.m │ └── notify.lua ├── osascript │ ├── LICENSE │ ├── NSAppleEventDescriptor+Parsing.h │ ├── NSAppleEventDescriptor+Parsing.m │ ├── libosascript.m │ ├── osascript.lua │ ├── test_applescript.lua │ ├── test_javascript.lua │ └── test_osascript.lua ├── pasteboard │ ├── LICENSE │ ├── libpasteboard.m │ ├── libpasteboard_watcher.m │ └── pasteboard.lua ├── pathwatcher │ ├── LICENSE │ ├── libpathwatcher.m │ └── pathwatcher.lua ├── plist │ ├── libplist.m │ └── plist.lua ├── razer │ ├── HSRazerDevice.h │ ├── HSRazerDevice.m │ ├── HSRazerManager.h │ ├── HSRazerManager.m │ ├── HSRazerTartarusV2Device.h │ ├── HSRazerTartarusV2Device.m │ ├── LICENSE.md │ ├── librazer.m │ ├── razer.h │ └── razer.lua ├── redshift │ └── redshift.lua ├── screen │ ├── LICENSE │ ├── libscreen.m │ ├── libscreen_watcher.m │ ├── screen.lua │ └── test_screen.lua ├── serial │ ├── libserial.m │ ├── serial.lua │ └── test_serial.lua ├── settings │ ├── LICENSE │ ├── libsettings.m │ └── settings.lua ├── sharing │ ├── libsharing.m │ └── sharing.lua ├── shortcuts │ ├── ShortcutsEvents.h │ ├── libshortcuts.m │ └── shortcuts.lua ├── socket │ ├── LICENSE │ ├── libsocket.m │ ├── libsocket_udp.m │ ├── socket.h │ ├── socket.lua │ ├── test_socket.lua │ └── test_udpsocket.lua ├── sound │ ├── LICENSE │ ├── libsound.m │ └── sound.lua ├── spaces │ ├── libspaces.m │ ├── libspaces_watcher.m │ ├── private.h │ └── spaces.lua ├── speech │ ├── LICENSE │ ├── libspeech.m │ ├── libspeech_listener.m │ └── speech.lua ├── spoons │ ├── spoons.lua │ └── templates │ │ └── init.tpl ├── spotify │ ├── LICENSE │ └── spotify.lua ├── spotlight │ ├── libspotlight.m │ └── spotlight.lua ├── sqlite3 │ ├── lsqlite3.c │ └── sqlite3.lua ├── streamdeck │ ├── HSStreamDeckDevice.h │ ├── HSStreamDeckDevice.m │ ├── HSStreamDeckDeviceMini.h │ ├── HSStreamDeckDeviceMini.m │ ├── HSStreamDeckDeviceMk2.h │ ├── HSStreamDeckDeviceMk2.m │ ├── HSStreamDeckDeviceOriginal.h │ ├── HSStreamDeckDeviceOriginal.m │ ├── HSStreamDeckDeviceOriginalV2.h │ ├── HSStreamDeckDeviceOriginalV2.m │ ├── HSStreamDeckDevicePedal.h │ ├── HSStreamDeckDevicePedal.m │ ├── HSStreamDeckDevicePlus.h │ ├── HSStreamDeckDevicePlus.m │ ├── HSStreamDeckDeviceXL.h │ ├── HSStreamDeckDeviceXL.m │ ├── HSStreamDeckManager.h │ ├── HSStreamDeckManager.m │ ├── LICENSE │ ├── NSImage+BMP.h │ ├── NSImage+BMP.m │ ├── NSImage+Flipped.h │ ├── NSImage+Flipped.m │ ├── NSImage+JPEG.h │ ├── NSImage+JPEG.m │ ├── NSImage+Rotated.h │ ├── NSImage+Rotated.m │ ├── libstreamdeck.m │ ├── streamdeck.h │ └── streamdeck.lua ├── styledtext │ ├── libstyledtext.m │ └── styledtext.lua ├── tabs │ ├── LICENSE │ └── tabs.lua ├── tangent │ ├── LICENSE │ └── tangent.lua ├── task │ ├── LICENSE │ ├── libtask.m │ ├── task.lua │ └── test_task.lua ├── timer │ ├── LICENSE │ ├── libtimer.m │ ├── test_timer.lua │ └── timer.lua ├── uielement │ ├── LICENSE │ ├── libuielement.m │ ├── libuielement_watcher.m │ ├── test_uielement.lua │ └── uielement.lua ├── urlevent │ ├── LICENSE │ ├── liburlevent.m │ └── urlevent.lua ├── usb │ ├── LICENSE │ ├── libusb.m │ ├── libusb_watcher.m │ └── usb.lua ├── utf8 │ ├── LICENSE │ └── utf8.lua ├── vox │ ├── LICENSE │ └── vox.lua ├── watchable │ └── watchable.lua ├── websocket │ ├── libwebsocket.m │ ├── test_websocket.lua │ └── websocket.lua ├── webview │ ├── libwebview.m │ ├── libwebview_datastore.m │ ├── libwebview_toolbar.m │ ├── libwebview_usercontent.m │ ├── webview.h │ ├── webview.lua │ └── webview_toolbar.lua ├── wifi │ ├── LICENSE │ ├── libwifi.m │ ├── libwifi_watcher.m │ └── wifi.lua └── window │ ├── LICENSE │ ├── libwindow.m │ ├── test_window.lua │ ├── window.lua │ ├── window_filter.lua │ ├── window_highlight.lua │ ├── window_layout.lua │ ├── window_switcher.lua │ └── window_tiling.lua ├── requirements.txt └── scripts ├── build.sh ├── docs ├── README.md ├── bin │ ├── build_docs.py │ └── download └── templates │ ├── Hammerspoon.docset │ ├── Contents │ │ ├── Info.plist │ │ └── Resources │ │ │ └── Documents │ │ │ └── .gitkeep │ ├── icon.png │ └── icon@2x.png │ ├── docs.css │ ├── index.j2.html │ ├── index.j2.md │ ├── jquery.js │ ├── module.j2.html │ └── module.j2.md ├── github-ci-docs.sh ├── github-ci-pre.sh ├── github-ci-test.sh ├── github-ci-testbuild.sh ├── libbuild.sh ├── lua_stackguard_enforcer.py ├── rebuild.sh ├── release.sh ├── sentry-cli └── update_version_build_numbers.sh /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*.h] 4 | indent_style = space 5 | indent_size = 4 6 | 7 | [*.m] 8 | indent_style = space 9 | indent_size = 4 10 | 11 | [*.lua] 12 | indent_style = space 13 | indent_size = 2 14 | -------------------------------------------------------------------------------- /.flake8rc: -------------------------------------------------------------------------------- 1 | [flake8] 2 | ignore = E501 3 | -------------------------------------------------------------------------------- /.stickler.yml: -------------------------------------------------------------------------------- 1 | linters: 2 | flake8: 3 | config: '.flake8rc' 4 | shellcheck: 5 | shell: bash 6 | luacheck: 7 | config: '.luacheckrc' 8 | -------------------------------------------------------------------------------- /.syntastic_objc_config: -------------------------------------------------------------------------------- 1 | syntastic_objc_include_dirs = ["LuaSkin"] 2 | -------------------------------------------------------------------------------- /Brewfile: -------------------------------------------------------------------------------- 1 | tap "a7ex/homebrew-formulae" 2 | 3 | brew "coreutils" 4 | brew "jq" 5 | brew "xcbeautify" 6 | brew "gawk" 7 | brew "cocoapods" 8 | brew "gh" 9 | brew "gpg" 10 | brew "a7ex/homebrew-formulae/xcresultparser" 11 | -------------------------------------------------------------------------------- /Hammerspoon.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Hammerspoon.xcworkspace/xcshareddata/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Hammerspoon/Hammerspoon-Prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #define LUA_USE_MACOSX 1 6 | -------------------------------------------------------------------------------- /Hammerspoon/Images.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Hammerspoon/Images.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /Hammerspoon/Images.xcassets/AppIcon.appiconset/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Hammerspoon/Images.xcassets/AppIcon.appiconset/128.png -------------------------------------------------------------------------------- /Hammerspoon/Images.xcassets/AppIcon.appiconset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Hammerspoon/Images.xcassets/AppIcon.appiconset/16.png -------------------------------------------------------------------------------- /Hammerspoon/Images.xcassets/AppIcon.appiconset/256-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Hammerspoon/Images.xcassets/AppIcon.appiconset/256-1.png -------------------------------------------------------------------------------- /Hammerspoon/Images.xcassets/AppIcon.appiconset/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Hammerspoon/Images.xcassets/AppIcon.appiconset/256.png -------------------------------------------------------------------------------- /Hammerspoon/Images.xcassets/AppIcon.appiconset/32-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Hammerspoon/Images.xcassets/AppIcon.appiconset/32-1.png -------------------------------------------------------------------------------- /Hammerspoon/Images.xcassets/AppIcon.appiconset/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Hammerspoon/Images.xcassets/AppIcon.appiconset/32.png -------------------------------------------------------------------------------- /Hammerspoon/Images.xcassets/AppIcon.appiconset/512-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Hammerspoon/Images.xcassets/AppIcon.appiconset/512-1.png -------------------------------------------------------------------------------- /Hammerspoon/Images.xcassets/AppIcon.appiconset/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Hammerspoon/Images.xcassets/AppIcon.appiconset/512.png -------------------------------------------------------------------------------- /Hammerspoon/Images.xcassets/AppIcon.appiconset/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Hammerspoon/Images.xcassets/AppIcon.appiconset/64.png -------------------------------------------------------------------------------- /Hammerspoon/MJAccessibilityUtils.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | BOOL MJAccessibilityIsEnabled(void); 4 | void MJAccessibilityOpenPanel(void); 5 | -------------------------------------------------------------------------------- /Hammerspoon/MJAutoLaunch.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | BOOL MJAutoLaunchGet(void); 4 | void MJAutoLaunchSet(BOOL opensAtLogin); 5 | -------------------------------------------------------------------------------- /Hammerspoon/MJConfigUtils.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | NSString* MJConfigDir(void); 4 | NSString* MJConfigDirAbsolute(void); 5 | NSString* MJConfigFileFullPath(void); 6 | -------------------------------------------------------------------------------- /Hammerspoon/MJDockIcon.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | void MJDockIconSetup(void); 4 | BOOL MJDockIconVisible(void); 5 | void MJDockIconSetVisible(BOOL visible); 6 | 7 | BOOL HSOpenConsoleOnDockClickEnabled(void); 8 | void HSOpenConsoleOnDockClickSetEnabled(BOOL enabled); 9 | -------------------------------------------------------------------------------- /Hammerspoon/MJFileUtils.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | BOOL MJEnsureDirectoryExists(NSString* dir); 4 | -------------------------------------------------------------------------------- /Hammerspoon/MJMenuIcon.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | void MJMenuIconSetup(NSMenu* menu); 4 | BOOL MJMenuIconVisible(void); 5 | void MJMenuIconSetVisible(BOOL visible); 6 | -------------------------------------------------------------------------------- /Hammerspoon/MJUserNotificationManager.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface MJUserNotificationManager : NSObject 4 | 5 | + (MJUserNotificationManager*) sharedManager; 6 | 7 | - (void) sendNotification:(NSString*)title handler:(dispatch_block_t)handler; 8 | 9 | @end 10 | -------------------------------------------------------------------------------- /Hammerspoon/MJVersionUtils.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | int MJVersionFromThisApp(void); 4 | int MJVersionFromString(NSString* str); 5 | -------------------------------------------------------------------------------- /Hammerspoon/Spoon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Hammerspoon/Spoon.icns -------------------------------------------------------------------------------- /Hammerspoon/statusicon.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Hammerspoon/statusicon.pdf -------------------------------------------------------------------------------- /Hammerspoon/variables.m: -------------------------------------------------------------------------------- 1 | // 2 | // variables.m 3 | // Hammerspoon 4 | // 5 | // Created by Peter van Dijk on 28/10/14. 6 | // Copyright (c) 2014 Hammerspoon. All rights reserved. 7 | // 8 | 9 | NSString* MJConfigFile = @"~/.hammerspoon/init.lua"; 10 | -------------------------------------------------------------------------------- /HammerspoonUITests/init.lua: -------------------------------------------------------------------------------- 1 | print("NOOP UI Tests init.lua") -------------------------------------------------------------------------------- /LuaSkin/LuaSkin.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /LuaSkin/LuaSkin.xcodeproj/xcshareddata/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /LuaSkin/LuaSkinTests/testinit.lua: -------------------------------------------------------------------------------- 1 | -- Note: This file is loaded by lsunit.lua 2 | 3 | print("-- LuaSkinTests testinit.lua loaded") -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/README: -------------------------------------------------------------------------------- 1 | 2 | This is Lua 5.4.7, released on 13 Jun 2024. 3 | 4 | For installation instructions, license details, and 5 | further information about Lua, see doc/readme.html. 6 | 7 | -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/doc/OSIApproved_100X125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/LuaSkin/lua-5.4.7/doc/OSIApproved_100X125.png -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/doc/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/LuaSkin/lua-5.4.7/doc/logo.gif -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/lua.hpp: -------------------------------------------------------------------------------- 1 | // lua.hpp 2 | // Lua header files for C++ 3 | // <> not supplied automatically because Lua also compiles as C++ 4 | 5 | extern "C" { 6 | #include "lua.h" 7 | #include "lualib.h" 8 | #include "lauxlib.h" 9 | } 10 | -------------------------------------------------------------------------------- /Pods/CocoaHTTPServer/Core/Categories/DDData.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface NSData (DDData) 4 | 5 | - (NSData *)md5Digest; 6 | 7 | - (NSData *)sha1Digest; 8 | 9 | - (NSString *)hexStringValue; 10 | 11 | - (NSString *)base64Encoded; 12 | - (NSData *)base64Decoded; 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /Pods/CocoaHTTPServer/Core/Responses/HTTPDataResponse.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import "HTTPResponse.h" 3 | 4 | 5 | @interface HTTPDataResponse : NSObject 6 | { 7 | NSUInteger offset; 8 | NSData *data; 9 | } 10 | 11 | - (id)initWithData:(NSData *)data; 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Pods/CocoaHTTPServer/Core/Responses/HTTPErrorResponse.h: -------------------------------------------------------------------------------- 1 | #import "HTTPResponse.h" 2 | 3 | @interface HTTPErrorResponse : NSObject { 4 | NSInteger _status; 5 | } 6 | 7 | - (id)initWithErrorCode:(int)httpErrorCode; 8 | 9 | @end 10 | -------------------------------------------------------------------------------- /Pods/CocoaHTTPServer/Core/Responses/HTTPRedirectResponse.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import "HTTPResponse.h" 3 | 4 | 5 | @interface HTTPRedirectResponse : NSObject 6 | { 7 | NSString *redirectPath; 8 | } 9 | 10 | - (id)initWithPath:(NSString *)redirectPath; 11 | 12 | @end 13 | -------------------------------------------------------------------------------- /Pods/CocoaHTTPServer/Extensions/WebDAV/DAVConnection.h: -------------------------------------------------------------------------------- 1 | #import "HTTPConnection.h" 2 | 3 | @interface DAVConnection : HTTPConnection { 4 | id requestContentBody; 5 | NSOutputStream* requestContentStream; 6 | } 7 | @end 8 | -------------------------------------------------------------------------------- /Pods/CocoaHTTPServer/Extensions/WebDAV/DELETEResponse.h: -------------------------------------------------------------------------------- 1 | #import "HTTPResponse.h" 2 | 3 | @interface DELETEResponse : NSObject { 4 | NSInteger _status; 5 | } 6 | - (id) initWithFilePath:(NSString*)path; 7 | @end 8 | -------------------------------------------------------------------------------- /Pods/Headers/Private/ASCIImage/PARImage+ASCIIInput.h: -------------------------------------------------------------------------------- 1 | ../../../ASCIImage/Core/PARImage+ASCIIInput.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaAsyncSocket/GCDAsyncSocket.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaAsyncSocket/Source/GCD/GCDAsyncSocket.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaAsyncSocket/GCDAsyncUdpSocket.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaAsyncSocket/Source/GCD/GCDAsyncUdpSocket.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaHTTPServer/DAVConnection.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaHTTPServer/Extensions/WebDAV/DAVConnection.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaHTTPServer/DAVResponse.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaHTTPServer/Extensions/WebDAV/DAVResponse.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaHTTPServer/DDData.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaHTTPServer/Core/Categories/DDData.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaHTTPServer/DDNumber.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaHTTPServer/Core/Categories/DDNumber.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaHTTPServer/DDRange.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaHTTPServer/Core/Categories/DDRange.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaHTTPServer/DELETEResponse.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaHTTPServer/Extensions/WebDAV/DELETEResponse.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaHTTPServer/HTTPAsyncFileResponse.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaHTTPServer/Core/Responses/HTTPAsyncFileResponse.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaHTTPServer/HTTPAuthenticationRequest.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaHTTPServer/Core/HTTPAuthenticationRequest.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaHTTPServer/HTTPConnection.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaHTTPServer/Core/HTTPConnection.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaHTTPServer/HTTPDataResponse.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaHTTPServer/Core/Responses/HTTPDataResponse.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaHTTPServer/HTTPDynamicFileResponse.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaHTTPServer/Core/Responses/HTTPDynamicFileResponse.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaHTTPServer/HTTPErrorResponse.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaHTTPServer/Core/Responses/HTTPErrorResponse.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaHTTPServer/HTTPFileResponse.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaHTTPServer/Core/Responses/HTTPFileResponse.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaHTTPServer/HTTPLogging.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaHTTPServer/Core/HTTPLogging.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaHTTPServer/HTTPMessage.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaHTTPServer/Core/HTTPMessage.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaHTTPServer/HTTPRedirectResponse.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaHTTPServer/Core/Responses/HTTPRedirectResponse.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaHTTPServer/HTTPResponse.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaHTTPServer/Core/HTTPResponse.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaHTTPServer/HTTPServer.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaHTTPServer/Core/HTTPServer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaHTTPServer/MultipartFormDataParser.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaHTTPServer/Core/Mime/MultipartFormDataParser.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaHTTPServer/MultipartMessageHeader.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaHTTPServer/Core/Mime/MultipartMessageHeader.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaHTTPServer/MultipartMessageHeaderField.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaHTTPServer/Core/Mime/MultipartMessageHeaderField.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaHTTPServer/PUTResponse.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaHTTPServer/Extensions/WebDAV/PUTResponse.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaHTTPServer/WebSocket.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaHTTPServer/Core/WebSocket.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaLumberjack/CLIColor.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/CocoaLumberjack/CLIColor.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaLumberjack/CocoaLumberjack.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/Supporting Files/CocoaLumberjack.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaLumberjack/DDASLLogCapture.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/CocoaLumberjack/DDASLLogCapture.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaLumberjack/DDASLLogger.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/CocoaLumberjack/DDASLLogger.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaLumberjack/DDAbstractDatabaseLogger.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/CocoaLumberjack/DDAbstractDatabaseLogger.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaLumberjack/DDAssertMacros.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/CocoaLumberjack/DDAssertMacros.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaLumberjack/DDContextFilterLogFormatter+Deprecated.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/CocoaLumberjack/DDContextFilterLogFormatter+Deprecated.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaLumberjack/DDContextFilterLogFormatter.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/CocoaLumberjack/DDContextFilterLogFormatter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaLumberjack/DDDispatchQueueLogFormatter.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/CocoaLumberjack/DDDispatchQueueLogFormatter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaLumberjack/DDFileLogger+Buffering.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/CocoaLumberjack/DDFileLogger+Buffering.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaLumberjack/DDFileLogger+Internal.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/DDFileLogger+Internal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaLumberjack/DDFileLogger.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/CocoaLumberjack/DDFileLogger.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaLumberjack/DDLegacyMacros.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/Supporting Files/DDLegacyMacros.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaLumberjack/DDLog+LOGV.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/CocoaLumberjack/DDLog+LOGV.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaLumberjack/DDLog.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/CocoaLumberjack/DDLog.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaLumberjack/DDLogMacros.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/CocoaLumberjack/DDLogMacros.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaLumberjack/DDLoggerNames.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/CocoaLumberjack/DDLoggerNames.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaLumberjack/DDMultiFormatter.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/CocoaLumberjack/DDMultiFormatter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaLumberjack/DDOSLogger.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/CocoaLumberjack/DDOSLogger.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaLumberjack/DDTTYLogger.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/CocoaLumberjack/DDTTYLogger.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDI.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDI.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIChannelEvent.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIChannelEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIChannelPressureCommand.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIChannelPressureCommand.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIChannelPressureEvent.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIChannelPressureEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIChannelVoiceCommand.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIChannelVoiceCommand.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIChannelVoiceCommand_SubclassMethods.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIChannelVoiceCommand_SubclassMethods.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIClientDestinationEndpoint.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIClientDestinationEndpoint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIClientSourceEndpoint.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIClientSourceEndpoint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIClock.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIClock.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDICommand.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDICommand.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDICommandScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDICommandScheduler.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDICommandThrottler.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDICommandThrottler.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDICommand_SubclassMethods.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDICommand_SubclassMethods.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDICompilerCompatibility.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDICompilerCompatibility.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIConnectionManager.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIConnectionManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIControlChangeCommand+Private.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIControlChangeCommand+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIControlChangeCommand.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIControlChangeCommand.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIControlChangeEvent.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIControlChangeEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIDestinationEndpoint.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIDestinationEndpoint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIDevice.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIDevice.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIDeviceManager.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIDeviceManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIEndpoint.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIEndpoint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIEndpointSynthesizer.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIEndpointSynthesizer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIEntity.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIEntity.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIErrors.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIErrors.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIEvent.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIEventIterator.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIEventIterator.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIEvent_SubclassMethods.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIEvent_SubclassMethods.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIInputPort.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIInputPort.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIMappableResponder.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIMappableResponder.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIMapping.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIMapping.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIMappingGenerator.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIMappingGenerator.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIMappingItem.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIMappingItem.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIMappingManager.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIMappingManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIMappingXMLParser.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIMappingXMLParser.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIMetaCopyrightEvent.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIMetaCopyrightEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIMetaCuePointEvent.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIMetaCuePointEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIMetaEvent.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIMetaEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIMetaEvent_SubclassMethods.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIMetaEvent_SubclassMethods.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIMetaInstrumentNameEvent.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIMetaInstrumentNameEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIMetaKeySignatureEvent.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIMetaKeySignatureEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIMetaLyricEvent.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIMetaLyricEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIMetaMarkerTextEvent.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIMetaMarkerTextEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIMetaSequenceEvent.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIMetaSequenceEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIMetaTextEvent.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIMetaTextEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIMetaTimeSignatureEvent.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIMetaTimeSignatureEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIMetaTrackSequenceNameEvent.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIMetaTrackSequenceNameEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIMetronome.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIMetronome.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDINoteCommand.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDINoteCommand.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDINoteCommand_SubclassMethods.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDINoteCommand_SubclassMethods.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDINoteEvent.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDINoteEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDINoteOffCommand.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDINoteOffCommand.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDINoteOnCommand.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDINoteOnCommand.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIObject.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIObject.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIObject_SubclassMethods.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIObject_SubclassMethods.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIOutputPort.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIOutputPort.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIPitchBendChangeCommand.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIPitchBendChangeCommand.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIPitchBendChangeEvent.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIPitchBendChangeEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIPlayer.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIPlayer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIPolyphonicKeyPressureCommand.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIPolyphonicKeyPressureCommand.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIPolyphonicKeyPressureEvent.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIPolyphonicKeyPressureEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIPort.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIPort.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIPort_SubclassMethods.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIPort_SubclassMethods.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIPrivate.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIPrivate.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIPrivateUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIPrivateUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIProgramChangeCommand.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIProgramChangeCommand.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIProgramChangeEvent.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIProgramChangeEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIResponder.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIResponder.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDISequence+MIKMIDIPrivate.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDISequence+MIKMIDIPrivate.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDISequence.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDISequence.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDISequencer+MIKMIDIPrivate.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDISequencer+MIKMIDIPrivate.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDISequencer.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDISequencer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDISourceEndpoint.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDISourceEndpoint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDISynthesizer.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDISynthesizer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDISynthesizerInstrument.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDISynthesizerInstrument.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDISynthesizer_SubclassMethods.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDISynthesizer_SubclassMethods.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDISystemExclusiveCommand.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDISystemExclusiveCommand.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDISystemKeepAliveCommand.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDISystemKeepAliveCommand.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDISystemMessageCommand.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDISystemMessageCommand.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDITempoEvent.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDITempoEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDITrack.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDITrack.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDITrack_Protected.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDITrack_Protected.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDITransmittable.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDITransmittable.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/MIKMIDIUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MIKMIDI/NSUIApplication+MIKMIDI.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/NSUIApplication+MIKMIDI.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ORSSerialPort/ORSSerialBuffer.h: -------------------------------------------------------------------------------- 1 | ../../../ORSSerialPort/Source/ORSSerialBuffer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ORSSerialPort/ORSSerialPacketDescriptor.h: -------------------------------------------------------------------------------- 1 | ../../../ORSSerialPort/Source/ORSSerialPacketDescriptor.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ORSSerialPort/ORSSerialPort.h: -------------------------------------------------------------------------------- 1 | ../../../ORSSerialPort/Source/ORSSerialPort.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ORSSerialPort/ORSSerialPortManager.h: -------------------------------------------------------------------------------- 1 | ../../../ORSSerialPort/Source/ORSSerialPortManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ORSSerialPort/ORSSerialRequest.h: -------------------------------------------------------------------------------- 1 | ../../../ORSSerialPort/Source/ORSSerialRequest.h -------------------------------------------------------------------------------- /Pods/Headers/Private/PocketSocket/PSWebSocket.h: -------------------------------------------------------------------------------- 1 | ../../../PocketSocket/PocketSocket/PSWebSocket.h -------------------------------------------------------------------------------- /Pods/Headers/Private/PocketSocket/PSWebSocketBuffer.h: -------------------------------------------------------------------------------- 1 | ../../../PocketSocket/PocketSocket/PSWebSocketBuffer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/PocketSocket/PSWebSocketDeflater.h: -------------------------------------------------------------------------------- 1 | ../../../PocketSocket/PocketSocket/PSWebSocketDeflater.h -------------------------------------------------------------------------------- /Pods/Headers/Private/PocketSocket/PSWebSocketDriver.h: -------------------------------------------------------------------------------- 1 | ../../../PocketSocket/PocketSocket/PSWebSocketDriver.h -------------------------------------------------------------------------------- /Pods/Headers/Private/PocketSocket/PSWebSocketInflater.h: -------------------------------------------------------------------------------- 1 | ../../../PocketSocket/PocketSocket/PSWebSocketInflater.h -------------------------------------------------------------------------------- /Pods/Headers/Private/PocketSocket/PSWebSocketInternal.h: -------------------------------------------------------------------------------- 1 | ../../../PocketSocket/PocketSocket/PSWebSocketInternal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/PocketSocket/PSWebSocketNetworkThread.h: -------------------------------------------------------------------------------- 1 | ../../../PocketSocket/PocketSocket/PSWebSocketNetworkThread.h -------------------------------------------------------------------------------- /Pods/Headers/Private/PocketSocket/PSWebSocketTypes.h: -------------------------------------------------------------------------------- 1 | ../../../PocketSocket/PocketSocket/PSWebSocketTypes.h -------------------------------------------------------------------------------- /Pods/Headers/Private/PocketSocket/PSWebSocketUTF8Decoder.h: -------------------------------------------------------------------------------- 1 | ../../../PocketSocket/PocketSocket/PSWebSocketUTF8Decoder.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/NSArray+SentrySanitize.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/NSArray+SentrySanitize.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/NSLocale+Sentry.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/NSLocale+Sentry.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/NSMutableDictionary+Sentry.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/NSMutableDictionary+Sentry.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/PrivateSentrySDKOnly.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/HybridPublic/PrivateSentrySDKOnly.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/PrivatesHeader.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/HybridPublic/PrivatesHeader.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/Sentry.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/Sentry.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryANRTracker.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryANRTracker.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryANRTrackerV2.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryANRTrackerV2.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryANRTrackingIntegration.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryANRTrackingIntegration.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryANRTrackingIntegrationV2.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryANRTrackingIntegrationV2.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryAppStartMeasurement.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/HybridPublic/SentryAppStartMeasurement.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryAppStartTracker.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryAppStartTracker.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryAppStartTrackingIntegration.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryAppStartTrackingIntegration.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryAppState.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryAppState.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryAppStateManager.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryAppStateManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryAsyncSafeLog.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/SentryAsyncSafeLog.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryAsynchronousOperation.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryAsynchronousOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryAttachment+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryAttachment+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryAttachment.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryAttachment.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryAutoBreadcrumbTrackingIntegration.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryAutoBreadcrumbTrackingIntegration.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryAutoSessionTrackingIntegration.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryAutoSessionTrackingIntegration.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryBacktrace.hpp: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryBacktrace.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryBaggage.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryBaggage.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryBaseIntegration.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryBaseIntegration.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryBinaryImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/HybridPublic/SentryBinaryImageCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryBreadcrumb+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/HybridPublic/SentryBreadcrumb+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryBreadcrumb.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryBreadcrumb.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryBreadcrumbDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryBreadcrumbDelegate.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryBreadcrumbTracker.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryBreadcrumbTracker.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryBuildAppStartSpans.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryBuildAppStartSpans.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryByteCountFormatter.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryByteCountFormatter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCPU.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryCPU.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryClient+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryClient+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryClient.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryClient.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryClientReport.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryClientReport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCompiler.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryCompiler.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryConcurrentRateLimitsDictionary.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryConcurrentRateLimitsDictionary.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryContinuousProfiler.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryContinuousProfiler.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCoreDataSwizzling.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryCoreDataSwizzling.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCoreDataTracker.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryCoreDataTracker.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCoreDataTrackingIntegration.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryCoreDataTrackingIntegration.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrash.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/SentryCrash.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashBinaryImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/SentryCrashBinaryImageCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashBinaryImageProvider.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryCrashBinaryImageProvider.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashC.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/SentryCrashC.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashCPU.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashCPU.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashCPU_Apple.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashCPU_Apple.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashCachedData.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/SentryCrashCachedData.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashDate.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashDate.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashDebug.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashDebug.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashDefaultBinaryImageProvider.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryCrashDefaultBinaryImageProvider.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashDefaultMachineContextWrapper.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryCrashDefaultMachineContextWrapper.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashDoctor.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/SentryCrashDoctor.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashDynamicLinker.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashDynamicLinker.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashExceptionApplication.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryCrashExceptionApplication.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashFileUtils.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashFileUtils.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashID.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashID.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashInstallation+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Installations/SentryCrashInstallation+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashInstallation.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Installations/SentryCrashInstallation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashInstallationReporter.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryCrashInstallationReporter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashIntegration.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryCrashIntegration.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashIsAppImage.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryCrashIsAppImage.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashJSONCodec.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashJSONCodec.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashJSONCodecObjC.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashJSONCodecObjC.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashMach.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashMach.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashMachineContext.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashMachineContext.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashMachineContextWrapper.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryCrashMachineContextWrapper.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashMachineContext_Apple.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashMachineContext_Apple.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashMemory.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashMemory.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashMonitor.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Monitors/SentryCrashMonitor.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashMonitorContext.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Monitors/SentryCrashMonitorContext.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashMonitorType.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Monitors/SentryCrashMonitorType.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashMonitor_AppState.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Monitors/SentryCrashMonitor_AppState.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashMonitor_CPPException.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Monitors/SentryCrashMonitor_CPPException.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashMonitor_MachException.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Monitors/SentryCrashMonitor_MachException.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashMonitor_NSException.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Monitors/SentryCrashMonitor_NSException.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashMonitor_Signal.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Monitors/SentryCrashMonitor_Signal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashMonitor_System.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Monitors/SentryCrashMonitor_System.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashNSErrorUtil.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashNSErrorUtil.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashObjC.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashObjC.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashObjCApple.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashObjCApple.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashPlatformSpecificDefines.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashPlatformSpecificDefines.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashReport.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/SentryCrashReport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashReportConverter.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryCrashReportConverter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashReportFields.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/SentryCrashReportFields.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashReportFilter.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Reporting/Filters/SentryCrashReportFilter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashReportFilterBasic.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Reporting/Filters/SentryCrashReportFilterBasic.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashReportFixer.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/SentryCrashReportFixer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashReportSink.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryCrashReportSink.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashReportStore.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/SentryCrashReportStore.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashReportVersion.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/SentryCrashReportVersion.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashReportWriter.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/SentryCrashReportWriter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashScopeObserver.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryCrashScopeObserver.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashSignalInfo.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashSignalInfo.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashStackCursor.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashStackCursor.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashStackCursor_Backtrace.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashStackCursor_Backtrace.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashStackCursor_MachineContext.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashStackCursor_MachineContext.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashStackCursor_SelfThread.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashStackCursor_SelfThread.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashStackEntryMapper.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryCrashStackEntryMapper.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashString.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashString.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashSymbolicator.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashSymbolicator.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashSysCtl.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashSysCtl.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashThread.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashThread.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashUUIDConversion.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashUUIDConversion.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashVarArgs.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Reporting/Filters/Tools/SentryCrashVarArgs.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashWrapper.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryCrashWrapper.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryDataCategory.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryDataCategory.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryDataCategoryMapper.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryDataCategoryMapper.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryDateUtil.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryDateUtil.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryDateUtils.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryDateUtils.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryDebugImageProvider.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryDebugImageProvider.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryDebugMeta.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryDebugMeta.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryDefaultObjCRuntimeWrapper.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryDefaultObjCRuntimeWrapper.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryDefaultRateLimits.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryDefaultRateLimits.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryDefines.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryDefines.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryDelayedFrame.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryDelayedFrame.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryDelayedFramesTracker.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryDelayedFramesTracker.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryDependencyContainer.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/HybridPublic/SentryDependencyContainer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryDevice.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryDevice.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryDictionaryDeepSearch.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Reporting/Filters/Tools/SentryDictionaryDeepSearch.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryDiscardReason.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryDiscardReason.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryDiscardReasonMapper.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryDiscardReasonMapper.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryDiscardedEvent.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryDiscardedEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryDispatchFactory.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryDispatchFactory.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryDispatchQueueWrapper.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryDispatchQueueWrapper.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryDispatchSourceWrapper.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryDispatchSourceWrapper.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryDisplayLinkWrapper.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryDisplayLinkWrapper.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryDsn.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryDsn.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryEnvelope+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryEnvelope+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryEnvelope.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/HybridPublic/SentryEnvelope.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryEnvelopeAttachmentHeader.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryEnvelopeAttachmentHeader.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryEnvelopeItemHeader.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryEnvelopeItemHeader.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryEnvelopeItemType.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/HybridPublic/SentryEnvelopeItemType.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryEnvelopeRateLimit.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryEnvelopeRateLimit.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryError.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryError.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryEvent+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryEvent+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryEvent.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryException.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryException.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryExtraContextProvider.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/SentryExtraContextProvider.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryFileIOTrackingIntegration.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryFileIOTrackingIntegration.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryFileManager.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryFileManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryFormatter.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/HybridPublic/SentryFormatter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryFrame.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryFrame.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryFrameRemover.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryFrameRemover.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryFramesTracker.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/HybridPublic/SentryFramesTracker.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryFramesTrackingIntegration.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryFramesTrackingIntegration.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryGeo.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryGeo.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryGlobalEventProcessor.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryGlobalEventProcessor.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryHttpDateParser.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryHttpDateParser.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryHttpStatusCodeRange+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryHttpStatusCodeRange+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryHttpStatusCodeRange.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryHttpStatusCodeRange.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryHttpTransport.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryHttpTransport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryHub+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryHub+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryHub.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryHub.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryInAppLogic.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryInAppLogic.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryInstallation.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryInstallation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryInternalCDefines.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryInternalCDefines.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryInternalDefines.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryInternalDefines.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryInternalNotificationNames.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryInternalNotificationNames.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryInternalSerializable.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryInternalSerializable.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryLaunchProfiling.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryLaunchProfiling.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryLevelHelper.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryLevelHelper.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryLevelMapper.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryLevelMapper.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryLog.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryLog.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryLogC.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryLogC.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryMachLogging.hpp: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryMachLogging.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryMeasurementUnit.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryMeasurementUnit.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryMeasurementValue.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryMeasurementValue.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryMechanism.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryMechanism.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryMechanismMeta.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryMechanismMeta.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryMessage.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryMessage.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryMeta.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryMeta.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryMetricKitIntegration.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryMetricKitIntegration.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryMetricProfiler.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryMetricProfiler.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryMigrateSessionInit.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryMigrateSessionInit.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryMsgPackSerializer.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryMsgPackSerializer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryNSDataSwizzling.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryNSDataSwizzling.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryNSDataTracker.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryNSDataTracker.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryNSDataUtils.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryNSDataUtils.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryNSDictionarySanitize.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryNSDictionarySanitize.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryNSError.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryNSError.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryNSNotificationCenterWrapper.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryNSNotificationCenterWrapper.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryNSProcessInfoWrapper.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryNSProcessInfoWrapper.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryNSTimerFactory.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryNSTimerFactory.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryNSURLRequest.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryNSURLRequest.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryNSURLRequestBuilder.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryNSURLRequestBuilder.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryNSURLSessionTaskSearch.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryNSURLSessionTaskSearch.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryNetworkTracker.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryNetworkTracker.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryNetworkTrackingIntegration.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryNetworkTrackingIntegration.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryNoOpSpan.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryNoOpSpan.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryObjCRuntimeWrapper.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryObjCRuntimeWrapper.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryOptions+HybridSDKs.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/HybridPublic/SentryOptions+HybridSDKs.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryOptions+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryOptions+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryOptions.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryOptions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryPerformanceTracker.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryPerformanceTracker.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryPerformanceTrackingIntegration.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryPerformanceTrackingIntegration.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryPredicateDescriptor.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryPredicateDescriptor.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryPrivate.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryPrivate.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryProfileTimeseries.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryProfileTimeseries.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryProfiledTracerConcurrency.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryProfiledTracerConcurrency.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryProfiler+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryProfiler+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryProfilerDefines.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Profiling/SentryProfilerDefines.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryProfilerSerialization+Test.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Profiling/SentryProfilerSerialization+Test.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryProfilerSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryProfilerSerialization.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryProfilerState+ObjCpp.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryProfilerState+ObjCpp.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryProfilerState.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryProfilerState.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryProfilerTestHelpers.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryProfilerTestHelpers.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryProfilingConditionals.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryProfilingConditionals.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryPropagationContext.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/SentryPropagationContext.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryQueueableRequestManager.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryQueueableRequestManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryRandom.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryRandom.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryRateLimitParser.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryRateLimitParser.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryRateLimits.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryRateLimits.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryReachability.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryReachability.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryRequest.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryRequest.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryRequestManager.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryRequestManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryRequestOperation.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryRequestOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryRetryAfterHeaderParser.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryRetryAfterHeaderParser.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySDK+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentrySDK+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySDK.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentrySDK.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySample.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentrySample.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySampleDecision+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentrySampleDecision+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySampleDecision.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentrySampleDecision.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySamplerDecision.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentrySamplerDecision.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySampling.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentrySampling.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySamplingContext.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentrySamplingContext.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySamplingProfiler.hpp: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentrySamplingProfiler.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryScope+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryScope+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryScope.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryScope.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryScopeObserver.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryScopeObserver.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryScopeSyncC.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryScopeSyncC.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryScreenFrames.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/HybridPublic/SentryScreenFrames.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryScreenshot.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryScreenshot.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryScreenshotIntegration.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryScreenshotIntegration.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySdkInfo.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentrySdkInfo.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySerializable.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentrySerializable.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySerialization.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentrySerialization.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySession+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentrySession+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySession.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentrySession.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySessionCrashedHandler.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentrySessionCrashedHandler.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySessionReplayIntegration+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentrySessionReplayIntegration+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySessionReplayIntegration-Hybrid.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/HybridPublic/SentrySessionReplayIntegration-Hybrid.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySessionReplayIntegration.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentrySessionReplayIntegration.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySessionReplaySyncC.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentrySessionReplaySyncC.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySessionTracker.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentrySessionTracker.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySpan+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentrySpan+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySpan.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentrySpan.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySpanContext+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentrySpanContext+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySpanContext.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentrySpanContext.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySpanId.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentrySpanId.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySpanOperations.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentrySpanOperations.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySpanProtocol.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentrySpanProtocol.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySpanStatus.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentrySpanStatus.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySpotlightTransport.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentrySpotlightTransport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryStackBounds.hpp: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryStackBounds.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryStackFrame.hpp: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryStackFrame.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryStacktrace.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryStacktrace.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryStacktraceBuilder.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryStacktraceBuilder.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryStatsdClient.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryStatsdClient.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySubClassFinder.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentrySubClassFinder.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySwift.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentrySwift.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySwiftAsyncIntegration.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentrySwiftAsyncIntegration.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySwizzle.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/HybridPublic/SentrySwizzle.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySwizzleWrapper.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentrySwizzleWrapper.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySysctl.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentrySysctl.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySystemEventBreadcrumbs.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentrySystemEventBreadcrumbs.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySystemWrapper.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentrySystemWrapper.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryThread.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryThread.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryThreadHandle.hpp: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryThreadHandle.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryThreadInspector.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryThreadInspector.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryThreadMetadataCache.hpp: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryThreadMetadataCache.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryThreadState.hpp: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryThreadState.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryThreadWrapper.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryThreadWrapper.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryTime.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryTime.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryTimeToDisplayTracker.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryTimeToDisplayTracker.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryTraceContext.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryTraceContext.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryTraceHeader.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryTraceHeader.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryTraceOrigins.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryTraceOrigins.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryTraceProfiler.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryTraceProfiler.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryTracer+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryTracer+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryTracer.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryTracer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryTracerConfiguration.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryTracerConfiguration.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryTransaction.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryTransaction.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryTransactionContext+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryTransactionContext+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryTransactionContext.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryTransactionContext.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryTransport.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryTransport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryTransportAdapter.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryTransportAdapter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryTransportFactory.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryTransportFactory.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryUIApplication.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryUIApplication.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryUIDeviceWrapper.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryUIDeviceWrapper.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryUIEventTracker.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryUIEventTracker.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryUIEventTrackerMode.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryUIEventTrackerMode.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryUIEventTrackerTransactionMode.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryUIEventTrackerTransactionMode.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryUIEventTrackingIntegration.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryUIEventTrackingIntegration.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryUIViewControllerPerformanceTracker.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryUIViewControllerPerformanceTracker.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryUIViewControllerSwizzling.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryUIViewControllerSwizzling.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryUser+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/HybridPublic/SentryUser+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryUser.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryUser.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryUserFeedback.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryUserFeedback.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryViewHierarchy.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryViewHierarchy.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryViewHierarchyIntegration.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryViewHierarchyIntegration.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryWatchdogTerminationLogic.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryWatchdogTerminationLogic.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryWatchdogTerminationScopeObserver.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryWatchdogTerminationScopeObserver.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryWatchdogTerminationTracker.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryWatchdogTerminationTracker.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryWatchdogTerminationTrackingIntegration.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryWatchdogTerminationTrackingIntegration.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryWithoutUIKit.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryWithoutUIKit.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/UIViewController+Sentry.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/UIViewController+Sentry.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SocketRocket/NSRunLoop+SRWebSocket.h: -------------------------------------------------------------------------------- 1 | ../../../SocketRocket/SocketRocket/NSRunLoop+SRWebSocket.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SocketRocket/NSRunLoop+SRWebSocketPrivate.h: -------------------------------------------------------------------------------- 1 | ../../../SocketRocket/SocketRocket/Internal/NSRunLoop+SRWebSocketPrivate.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SocketRocket/NSURLRequest+SRWebSocket.h: -------------------------------------------------------------------------------- 1 | ../../../SocketRocket/SocketRocket/NSURLRequest+SRWebSocket.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SocketRocket/NSURLRequest+SRWebSocketPrivate.h: -------------------------------------------------------------------------------- 1 | ../../../SocketRocket/SocketRocket/Internal/NSURLRequest+SRWebSocketPrivate.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SocketRocket/SRConstants.h: -------------------------------------------------------------------------------- 1 | ../../../SocketRocket/SocketRocket/Internal/SRConstants.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SocketRocket/SRDelegateController.h: -------------------------------------------------------------------------------- 1 | ../../../SocketRocket/SocketRocket/Internal/Delegate/SRDelegateController.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SocketRocket/SRError.h: -------------------------------------------------------------------------------- 1 | ../../../SocketRocket/SocketRocket/Internal/Utilities/SRError.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SocketRocket/SRHTTPConnectMessage.h: -------------------------------------------------------------------------------- 1 | ../../../SocketRocket/SocketRocket/Internal/Utilities/SRHTTPConnectMessage.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SocketRocket/SRHash.h: -------------------------------------------------------------------------------- 1 | ../../../SocketRocket/SocketRocket/Internal/Utilities/SRHash.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SocketRocket/SRIOConsumer.h: -------------------------------------------------------------------------------- 1 | ../../../SocketRocket/SocketRocket/Internal/IOConsumer/SRIOConsumer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SocketRocket/SRIOConsumerPool.h: -------------------------------------------------------------------------------- 1 | ../../../SocketRocket/SocketRocket/Internal/IOConsumer/SRIOConsumerPool.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SocketRocket/SRLog.h: -------------------------------------------------------------------------------- 1 | ../../../SocketRocket/SocketRocket/Internal/Utilities/SRLog.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SocketRocket/SRMutex.h: -------------------------------------------------------------------------------- 1 | ../../../SocketRocket/SocketRocket/Internal/Utilities/SRMutex.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SocketRocket/SRPinningSecurityPolicy.h: -------------------------------------------------------------------------------- 1 | ../../../SocketRocket/SocketRocket/Internal/Security/SRPinningSecurityPolicy.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SocketRocket/SRProxyConnect.h: -------------------------------------------------------------------------------- 1 | ../../../SocketRocket/SocketRocket/Internal/Proxy/SRProxyConnect.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SocketRocket/SRRandom.h: -------------------------------------------------------------------------------- 1 | ../../../SocketRocket/SocketRocket/Internal/Utilities/SRRandom.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SocketRocket/SRRunLoopThread.h: -------------------------------------------------------------------------------- 1 | ../../../SocketRocket/SocketRocket/Internal/RunLoop/SRRunLoopThread.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SocketRocket/SRSIMDHelpers.h: -------------------------------------------------------------------------------- 1 | ../../../SocketRocket/SocketRocket/Internal/Utilities/SRSIMDHelpers.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SocketRocket/SRSecurityPolicy.h: -------------------------------------------------------------------------------- 1 | ../../../SocketRocket/SocketRocket/SRSecurityPolicy.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SocketRocket/SRURLUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../SocketRocket/SocketRocket/Internal/Utilities/SRURLUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SocketRocket/SRWebSocket.h: -------------------------------------------------------------------------------- 1 | ../../../SocketRocket/SocketRocket/SRWebSocket.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SocketRocket/SocketRocket.h: -------------------------------------------------------------------------------- 1 | ../../../SocketRocket/SocketRocket/SocketRocket.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ASCIImage/PARImage+ASCIIInput.h: -------------------------------------------------------------------------------- 1 | ../../../ASCIImage/Core/PARImage+ASCIIInput.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaAsyncSocket/GCDAsyncSocket.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaAsyncSocket/Source/GCD/GCDAsyncSocket.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaAsyncSocket/GCDAsyncUdpSocket.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaAsyncSocket/Source/GCD/GCDAsyncUdpSocket.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaHTTPServer/DAVConnection.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaHTTPServer/Extensions/WebDAV/DAVConnection.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaHTTPServer/DAVResponse.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaHTTPServer/Extensions/WebDAV/DAVResponse.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaHTTPServer/DDData.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaHTTPServer/Core/Categories/DDData.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaHTTPServer/DDNumber.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaHTTPServer/Core/Categories/DDNumber.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaHTTPServer/DDRange.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaHTTPServer/Core/Categories/DDRange.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaHTTPServer/DELETEResponse.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaHTTPServer/Extensions/WebDAV/DELETEResponse.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaHTTPServer/HTTPAsyncFileResponse.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaHTTPServer/Core/Responses/HTTPAsyncFileResponse.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaHTTPServer/HTTPAuthenticationRequest.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaHTTPServer/Core/HTTPAuthenticationRequest.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaHTTPServer/HTTPConnection.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaHTTPServer/Core/HTTPConnection.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaHTTPServer/HTTPDataResponse.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaHTTPServer/Core/Responses/HTTPDataResponse.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaHTTPServer/HTTPDynamicFileResponse.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaHTTPServer/Core/Responses/HTTPDynamicFileResponse.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaHTTPServer/HTTPErrorResponse.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaHTTPServer/Core/Responses/HTTPErrorResponse.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaHTTPServer/HTTPFileResponse.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaHTTPServer/Core/Responses/HTTPFileResponse.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaHTTPServer/HTTPLogging.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaHTTPServer/Core/HTTPLogging.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaHTTPServer/HTTPMessage.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaHTTPServer/Core/HTTPMessage.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaHTTPServer/HTTPRedirectResponse.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaHTTPServer/Core/Responses/HTTPRedirectResponse.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaHTTPServer/HTTPResponse.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaHTTPServer/Core/HTTPResponse.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaHTTPServer/HTTPServer.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaHTTPServer/Core/HTTPServer.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaHTTPServer/MultipartFormDataParser.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaHTTPServer/Core/Mime/MultipartFormDataParser.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaHTTPServer/MultipartMessageHeader.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaHTTPServer/Core/Mime/MultipartMessageHeader.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaHTTPServer/MultipartMessageHeaderField.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaHTTPServer/Core/Mime/MultipartMessageHeaderField.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaHTTPServer/PUTResponse.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaHTTPServer/Extensions/WebDAV/PUTResponse.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaHTTPServer/WebSocket.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaHTTPServer/Core/WebSocket.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaLumberjack/CLIColor.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/CocoaLumberjack/CLIColor.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaLumberjack/CocoaLumberjack.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/Supporting Files/CocoaLumberjack.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaLumberjack/DDASLLogCapture.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/CocoaLumberjack/DDASLLogCapture.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaLumberjack/DDASLLogger.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/CocoaLumberjack/DDASLLogger.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaLumberjack/DDAbstractDatabaseLogger.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/CocoaLumberjack/DDAbstractDatabaseLogger.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaLumberjack/DDAssertMacros.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/CocoaLumberjack/DDAssertMacros.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaLumberjack/DDContextFilterLogFormatter+Deprecated.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/CocoaLumberjack/DDContextFilterLogFormatter+Deprecated.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaLumberjack/DDContextFilterLogFormatter.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/CocoaLumberjack/DDContextFilterLogFormatter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaLumberjack/DDDispatchQueueLogFormatter.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/CocoaLumberjack/DDDispatchQueueLogFormatter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaLumberjack/DDFileLogger+Buffering.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/CocoaLumberjack/DDFileLogger+Buffering.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaLumberjack/DDFileLogger.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/CocoaLumberjack/DDFileLogger.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaLumberjack/DDLegacyMacros.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/Supporting Files/DDLegacyMacros.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaLumberjack/DDLog+LOGV.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/CocoaLumberjack/DDLog+LOGV.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaLumberjack/DDLog.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/CocoaLumberjack/DDLog.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaLumberjack/DDLogMacros.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/CocoaLumberjack/DDLogMacros.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaLumberjack/DDLoggerNames.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/CocoaLumberjack/DDLoggerNames.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaLumberjack/DDMultiFormatter.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/CocoaLumberjack/DDMultiFormatter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaLumberjack/DDOSLogger.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/CocoaLumberjack/DDOSLogger.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaLumberjack/DDTTYLogger.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/CocoaLumberjack/DDTTYLogger.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDI.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDI.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIChannelEvent.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIChannelEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIChannelPressureCommand.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIChannelPressureCommand.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIChannelPressureEvent.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIChannelPressureEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIChannelVoiceCommand.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIChannelVoiceCommand.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIChannelVoiceCommand_SubclassMethods.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIChannelVoiceCommand_SubclassMethods.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIClientDestinationEndpoint.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIClientDestinationEndpoint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIClientSourceEndpoint.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIClientSourceEndpoint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIClock.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIClock.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDICommand.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDICommand.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDICommandScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDICommandScheduler.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDICommandThrottler.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDICommandThrottler.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDICommand_SubclassMethods.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDICommand_SubclassMethods.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDICompilerCompatibility.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDICompilerCompatibility.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIConnectionManager.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIConnectionManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIControlChangeCommand+Private.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIControlChangeCommand+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIControlChangeCommand.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIControlChangeCommand.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIControlChangeEvent.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIControlChangeEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIDestinationEndpoint.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIDestinationEndpoint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIDevice.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIDevice.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIDeviceManager.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIDeviceManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIEndpoint.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIEndpoint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIEndpointSynthesizer.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIEndpointSynthesizer.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIEntity.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIEntity.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIErrors.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIErrors.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIEvent.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIEventIterator.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIEventIterator.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIEvent_SubclassMethods.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIEvent_SubclassMethods.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIInputPort.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIInputPort.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIMappableResponder.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIMappableResponder.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIMapping.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIMapping.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIMappingGenerator.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIMappingGenerator.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIMappingItem.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIMappingItem.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIMappingManager.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIMappingManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIMappingXMLParser.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIMappingXMLParser.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIMetaCopyrightEvent.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIMetaCopyrightEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIMetaCuePointEvent.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIMetaCuePointEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIMetaEvent.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIMetaEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIMetaEvent_SubclassMethods.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIMetaEvent_SubclassMethods.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIMetaInstrumentNameEvent.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIMetaInstrumentNameEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIMetaKeySignatureEvent.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIMetaKeySignatureEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIMetaLyricEvent.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIMetaLyricEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIMetaMarkerTextEvent.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIMetaMarkerTextEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIMetaSequenceEvent.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIMetaSequenceEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIMetaTextEvent.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIMetaTextEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIMetaTimeSignatureEvent.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIMetaTimeSignatureEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIMetaTrackSequenceNameEvent.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIMetaTrackSequenceNameEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIMetronome.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIMetronome.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDINoteCommand.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDINoteCommand.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDINoteCommand_SubclassMethods.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDINoteCommand_SubclassMethods.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDINoteEvent.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDINoteEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDINoteOffCommand.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDINoteOffCommand.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDINoteOnCommand.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDINoteOnCommand.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIObject.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIObject.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIObject_SubclassMethods.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIObject_SubclassMethods.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIOutputPort.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIOutputPort.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIPitchBendChangeCommand.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIPitchBendChangeCommand.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIPitchBendChangeEvent.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIPitchBendChangeEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIPlayer.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIPlayer.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIPolyphonicKeyPressureCommand.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIPolyphonicKeyPressureCommand.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIPolyphonicKeyPressureEvent.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIPolyphonicKeyPressureEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIPort.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIPort.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIPort_SubclassMethods.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIPort_SubclassMethods.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIPrivate.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIPrivate.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIProgramChangeCommand.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIProgramChangeCommand.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIProgramChangeEvent.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIProgramChangeEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIResponder.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIResponder.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDISequence+MIKMIDIPrivate.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDISequence+MIKMIDIPrivate.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDISequence.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDISequence.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDISequencer+MIKMIDIPrivate.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDISequencer+MIKMIDIPrivate.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDISequencer.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDISequencer.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDISourceEndpoint.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDISourceEndpoint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDISynthesizer.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDISynthesizer.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDISynthesizerInstrument.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDISynthesizerInstrument.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDISynthesizer_SubclassMethods.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDISynthesizer_SubclassMethods.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDISystemExclusiveCommand.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDISystemExclusiveCommand.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDISystemKeepAliveCommand.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDISystemKeepAliveCommand.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDISystemMessageCommand.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDISystemMessageCommand.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDITempoEvent.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDITempoEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDITrack.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDITrack.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDITrack_Protected.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDITrack_Protected.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDITransmittable.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDITransmittable.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/MIKMIDIUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/MIKMIDIUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MIKMIDI/NSUIApplication+MIKMIDI.h: -------------------------------------------------------------------------------- 1 | ../../../MIKMIDI/Source/NSUIApplication+MIKMIDI.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ORSSerialPort/ORSSerialPacketDescriptor.h: -------------------------------------------------------------------------------- 1 | ../../../ORSSerialPort/Source/ORSSerialPacketDescriptor.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ORSSerialPort/ORSSerialPort.h: -------------------------------------------------------------------------------- 1 | ../../../ORSSerialPort/Source/ORSSerialPort.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ORSSerialPort/ORSSerialPortManager.h: -------------------------------------------------------------------------------- 1 | ../../../ORSSerialPort/Source/ORSSerialPortManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ORSSerialPort/ORSSerialRequest.h: -------------------------------------------------------------------------------- 1 | ../../../ORSSerialPort/Source/ORSSerialRequest.h -------------------------------------------------------------------------------- /Pods/Headers/Public/PocketSocket/PSWebSocket.h: -------------------------------------------------------------------------------- 1 | ../../../PocketSocket/PocketSocket/PSWebSocket.h -------------------------------------------------------------------------------- /Pods/Headers/Public/PocketSocket/PSWebSocketDriver.h: -------------------------------------------------------------------------------- 1 | ../../../PocketSocket/PocketSocket/PSWebSocketDriver.h -------------------------------------------------------------------------------- /Pods/Headers/Public/PocketSocket/PSWebSocketTypes.h: -------------------------------------------------------------------------------- 1 | ../../../PocketSocket/PocketSocket/PSWebSocketTypes.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/Sentry-umbrella.h: -------------------------------------------------------------------------------- 1 | ../../../Target Support Files/Sentry/Sentry-umbrella.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/Sentry.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/Sentry.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/Sentry.modulemap: -------------------------------------------------------------------------------- 1 | ../../../Target Support Files/Sentry/Sentry.modulemap -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryAttachment.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryAttachment.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryBaggage.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryBaggage.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryBreadcrumb.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryBreadcrumb.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryClient.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryClient.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryCrashExceptionApplication.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryCrashExceptionApplication.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryDebugImageProvider.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryDebugImageProvider.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryDebugMeta.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryDebugMeta.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryDefines.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryDefines.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryDsn.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryDsn.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryEnvelopeItemHeader.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryEnvelopeItemHeader.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryError.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryError.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryEvent.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryException.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryException.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryFrame.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryFrame.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryGeo.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryGeo.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryHttpStatusCodeRange.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryHttpStatusCodeRange.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryHub.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryHub.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryMeasurementUnit.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryMeasurementUnit.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryMechanism.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryMechanism.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryMechanismMeta.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryMechanismMeta.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryMessage.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryMessage.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryNSError.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryNSError.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryOptions.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryOptions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryProfilingConditionals.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryProfilingConditionals.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryRequest.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryRequest.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentrySDK.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentrySDK.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentrySampleDecision.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentrySampleDecision.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentrySamplingContext.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentrySamplingContext.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryScope.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryScope.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentrySerializable.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentrySerializable.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentrySpanContext.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentrySpanContext.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentrySpanId.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentrySpanId.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentrySpanProtocol.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentrySpanProtocol.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentrySpanStatus.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentrySpanStatus.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryStacktrace.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryStacktrace.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryThread.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryThread.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryTraceContext.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryTraceContext.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryTraceHeader.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryTraceHeader.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryTransactionContext.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryTransactionContext.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryUser.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryUser.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryUserFeedback.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryUserFeedback.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryWithoutUIKit.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryWithoutUIKit.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SocketRocket/NSRunLoop+SRWebSocket.h: -------------------------------------------------------------------------------- 1 | ../../../SocketRocket/SocketRocket/NSRunLoop+SRWebSocket.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SocketRocket/NSURLRequest+SRWebSocket.h: -------------------------------------------------------------------------------- 1 | ../../../SocketRocket/SocketRocket/NSURLRequest+SRWebSocket.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SocketRocket/SRSecurityPolicy.h: -------------------------------------------------------------------------------- 1 | ../../../SocketRocket/SocketRocket/SRSecurityPolicy.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SocketRocket/SRWebSocket.h: -------------------------------------------------------------------------------- 1 | ../../../SocketRocket/SocketRocket/SRWebSocket.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SocketRocket/SocketRocket.h: -------------------------------------------------------------------------------- 1 | ../../../SocketRocket/SocketRocket/SocketRocket.h -------------------------------------------------------------------------------- /Pods/Sentry/Sources/Sentry/Profiling/SentrySample.m: -------------------------------------------------------------------------------- 1 | #import "SentrySample.h" 2 | 3 | @implementation SentrySample 4 | @end 5 | -------------------------------------------------------------------------------- /Pods/Sentry/Sources/Sentry/SentryLevelHelper.m: -------------------------------------------------------------------------------- 1 | #import "SentryLevelHelper.h" 2 | #import "SentryBreadcrumb+Private.h" 3 | 4 | NSUInteger 5 | sentry_breadcrumbLevel(SentryBreadcrumb *breadcrumb) 6 | { 7 | return breadcrumb.level; 8 | } 9 | -------------------------------------------------------------------------------- /Pods/Sentry/Sources/Sentry/include/NSArray+SentrySanitize.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | NS_ASSUME_NONNULL_BEGIN 4 | 5 | @interface SentryArray : NSObject 6 | 7 | + (NSArray *)sanitizeArray:(NSArray *)array; 8 | 9 | @end 10 | 11 | NS_ASSUME_NONNULL_END 12 | -------------------------------------------------------------------------------- /Pods/Sentry/Sources/Sentry/include/NSLocale+Sentry.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface SentryLocale : NSObject 4 | 5 | + (BOOL)timeIs24HourFormat; 6 | 7 | @end 8 | -------------------------------------------------------------------------------- /Pods/Sentry/Sources/Sentry/include/SentryAsynchronousOperation.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | NS_ASSUME_NONNULL_BEGIN 4 | 5 | @interface SentryAsynchronousOperation : NSOperation 6 | 7 | - (void)completeOperation; 8 | 9 | @end 10 | 11 | NS_ASSUME_NONNULL_END 12 | -------------------------------------------------------------------------------- /Pods/Sentry/Sources/Sentry/include/SentryBreadcrumbDelegate.h: -------------------------------------------------------------------------------- 1 | #import "SentryInternalDefines.h" 2 | 3 | NS_ASSUME_NONNULL_BEGIN 4 | 5 | @protocol SentryBreadcrumbDelegate 6 | 7 | - (void)addBreadcrumb:(SentryBreadcrumb *)crumb; 8 | 9 | @end 10 | 11 | NS_ASSUME_NONNULL_END 12 | -------------------------------------------------------------------------------- /Pods/Sentry/Sources/Sentry/include/SentryCrashIsAppImage.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | NS_ASSUME_NONNULL_BEGIN 4 | 5 | @interface SentryCrashBinaryImageUtil : NSObject 6 | 7 | @end 8 | 9 | NS_ASSUME_NONNULL_END 10 | -------------------------------------------------------------------------------- /Pods/Sentry/Sources/Sentry/include/SentryHttpStatusCodeRange+Private.h: -------------------------------------------------------------------------------- 1 | #import "SentryHttpStatusCodeRange.h" 2 | 3 | NS_ASSUME_NONNULL_BEGIN 4 | 5 | @interface 6 | SentryHttpStatusCodeRange () 7 | 8 | - (BOOL)isInRange:(NSInteger)statusCode; 9 | 10 | @end 11 | 12 | NS_ASSUME_NONNULL_END 13 | -------------------------------------------------------------------------------- /Pods/Sentry/Sources/Sentry/include/SentryLogC.h: -------------------------------------------------------------------------------- 1 | #ifndef SentryLogC_h 2 | #define SentryLogC_h 3 | void sentry_initializeAsyncLogFile(void); 4 | #endif 5 | -------------------------------------------------------------------------------- /Pods/Sentry/Sources/Sentry/include/SentryNSDictionarySanitize.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | NS_ASSUME_NONNULL_BEGIN 4 | 5 | NSDictionary *_Nullable sentry_sanitize(NSDictionary *_Nullable dictionary); 6 | 7 | NS_ASSUME_NONNULL_END 8 | -------------------------------------------------------------------------------- /Pods/Sentry/Sources/Sentry/include/SentryNSURLSessionTaskSearch.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | NS_ASSUME_NONNULL_BEGIN 4 | 5 | @interface SentryNSURLSessionTaskSearch : NSObject 6 | 7 | + (NSArray *)urlSessionTaskClassesToTrack; 8 | 9 | @end 10 | 11 | NS_ASSUME_NONNULL_END 12 | -------------------------------------------------------------------------------- /Pods/Sentry/Sources/Sentry/include/SentrySampleDecision+Private.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | #import "SentrySampleDecision.h" 4 | 5 | /** 6 | Returns the value to use when serializing a SentrySampleDecision. 7 | */ 8 | NSNumber *valueForSentrySampleDecision(SentrySampleDecision decision); 9 | -------------------------------------------------------------------------------- /Pods/Sentry/Sources/Sentry/include/module.modulemap: -------------------------------------------------------------------------------- 1 | module _SentryPrivate { 2 | header "SentryPrivate.h" 3 | } 4 | -------------------------------------------------------------------------------- /Pods/Sentry/Sources/Swift/Protocol/SentryRedactOptions.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | @objc 4 | protocol SentryRedactOptions { 5 | var redactAllText: Bool { get } 6 | var redactAllImages: Bool { get } 7 | } 8 | -------------------------------------------------------------------------------- /Pods/Sentry/Sources/Swift/Tools/SentryLogOutput.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | class SentryLogOutput { 4 | func log(_ message: String) { 5 | print(message) 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Autoupdate: -------------------------------------------------------------------------------- 1 | Versions/Current/Autoupdate -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/PrivateHeaders: -------------------------------------------------------------------------------- 1 | Versions/Current/PrivateHeaders -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Sparkle: -------------------------------------------------------------------------------- 1 | Versions/Current/Sparkle -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Updater.app: -------------------------------------------------------------------------------- 1 | Versions/Current/Updater.app -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/B/Autoupdate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Pods/Sparkle/Sparkle.framework/Versions/B/Autoupdate -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/B/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module Sparkle { 2 | umbrella header "Sparkle.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/B/Resources/Base.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Pods/Sparkle/Sparkle.framework/Versions/B/Resources/Base.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/B/Resources/Base.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Pods/Sparkle/Sparkle.framework/Versions/B/Resources/Base.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/B/Resources/SUStatus.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Pods/Sparkle/Sparkle.framework/Versions/B/Resources/SUStatus.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/B/Resources/ar.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Pods/Sparkle/Sparkle.framework/Versions/B/Resources/ar.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/B/Resources/ca.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Pods/Sparkle/Sparkle.framework/Versions/B/Resources/ca.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/B/Resources/cs.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Pods/Sparkle/Sparkle.framework/Versions/B/Resources/cs.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/B/Resources/da.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Pods/Sparkle/Sparkle.framework/Versions/B/Resources/da.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/B/Resources/de.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Pods/Sparkle/Sparkle.framework/Versions/B/Resources/de.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/B/Resources/el.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Pods/Sparkle/Sparkle.framework/Versions/B/Resources/el.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/B/Resources/es.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Pods/Sparkle/Sparkle.framework/Versions/B/Resources/es.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/B/Resources/fa.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Pods/Sparkle/Sparkle.framework/Versions/B/Resources/fa.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/B/Resources/fi.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Pods/Sparkle/Sparkle.framework/Versions/B/Resources/fi.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/B/Resources/fr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Pods/Sparkle/Sparkle.framework/Versions/B/Resources/fr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/B/Resources/he.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Pods/Sparkle/Sparkle.framework/Versions/B/Resources/he.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/B/Resources/hr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Pods/Sparkle/Sparkle.framework/Versions/B/Resources/hr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/B/Resources/hu.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Pods/Sparkle/Sparkle.framework/Versions/B/Resources/hu.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/B/Resources/is.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Pods/Sparkle/Sparkle.framework/Versions/B/Resources/is.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/B/Resources/it.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Pods/Sparkle/Sparkle.framework/Versions/B/Resources/it.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/B/Resources/ja.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Pods/Sparkle/Sparkle.framework/Versions/B/Resources/ja.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/B/Resources/ko.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Pods/Sparkle/Sparkle.framework/Versions/B/Resources/ko.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/B/Resources/nb.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Pods/Sparkle/Sparkle.framework/Versions/B/Resources/nb.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/B/Resources/nl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Pods/Sparkle/Sparkle.framework/Versions/B/Resources/nl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/B/Resources/nn.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Pods/Sparkle/Sparkle.framework/Versions/B/Resources/nn.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/B/Resources/pl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Pods/Sparkle/Sparkle.framework/Versions/B/Resources/pl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/B/Resources/pt-BR.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Pods/Sparkle/Sparkle.framework/Versions/B/Resources/pt-BR.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/B/Resources/pt-PT.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Pods/Sparkle/Sparkle.framework/Versions/B/Resources/pt-PT.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/B/Resources/ro.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Pods/Sparkle/Sparkle.framework/Versions/B/Resources/ro.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/B/Resources/ru.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Pods/Sparkle/Sparkle.framework/Versions/B/Resources/ru.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/B/Resources/sk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Pods/Sparkle/Sparkle.framework/Versions/B/Resources/sk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/B/Resources/sl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Pods/Sparkle/Sparkle.framework/Versions/B/Resources/sl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/B/Resources/sv.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Pods/Sparkle/Sparkle.framework/Versions/B/Resources/sv.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/B/Resources/th.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Pods/Sparkle/Sparkle.framework/Versions/B/Resources/th.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/B/Resources/tr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Pods/Sparkle/Sparkle.framework/Versions/B/Resources/tr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/B/Resources/uk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Pods/Sparkle/Sparkle.framework/Versions/B/Resources/uk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/B/Resources/zh_CN.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Pods/Sparkle/Sparkle.framework/Versions/B/Resources/zh_CN.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/B/Resources/zh_HK.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Pods/Sparkle/Sparkle.framework/Versions/B/Resources/zh_HK.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/B/Resources/zh_TW.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Pods/Sparkle/Sparkle.framework/Versions/B/Resources/zh_TW.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/B/Sparkle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Pods/Sparkle/Sparkle.framework/Versions/B/Sparkle -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/B/Updater.app/Contents/MacOS/Updater: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Pods/Sparkle/Sparkle.framework/Versions/B/Updater.app/Contents/MacOS/Updater -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/B/Updater.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/B/Updater.app/Contents/Resources/SUStatus.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Pods/Sparkle/Sparkle.framework/Versions/B/Updater.app/Contents/Resources/SUStatus.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/B/XPCServices/Downloader.xpc/Contents/MacOS/Downloader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Pods/Sparkle/Sparkle.framework/Versions/B/XPCServices/Downloader.xpc/Contents/MacOS/Downloader -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/B/XPCServices/Installer.xpc/Contents/MacOS/Installer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Pods/Sparkle/Sparkle.framework/Versions/B/XPCServices/Installer.xpc/Contents/MacOS/Installer -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | B -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/XPCServices: -------------------------------------------------------------------------------- 1 | Versions/Current/XPCServices -------------------------------------------------------------------------------- /Pods/Sparkle/bin/BinaryDelta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Pods/Sparkle/bin/BinaryDelta -------------------------------------------------------------------------------- /Pods/Sparkle/bin/generate_appcast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Pods/Sparkle/bin/generate_appcast -------------------------------------------------------------------------------- /Pods/Sparkle/bin/generate_keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Pods/Sparkle/bin/generate_keys -------------------------------------------------------------------------------- /Pods/Sparkle/bin/sign_update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/Pods/Sparkle/bin/sign_update -------------------------------------------------------------------------------- /Pods/Target Support Files/ASCIImage/ASCIImage-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_ASCIImage : NSObject 3 | @end 4 | @implementation PodsDummy_ASCIImage 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/ASCIImage/ASCIImage-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /Pods/Target Support Files/CocoaAsyncSocket/CocoaAsyncSocket-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_CocoaAsyncSocket : NSObject 3 | @end 4 | @implementation PodsDummy_CocoaAsyncSocket 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/CocoaHTTPServer/CocoaHTTPServer-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_CocoaHTTPServer : NSObject 3 | @end 4 | @implementation PodsDummy_CocoaHTTPServer 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/CocoaLumberjack/CocoaLumberjack-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_CocoaLumberjack : NSObject 3 | @end 4 | @implementation PodsDummy_CocoaLumberjack 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/MIKMIDI/MIKMIDI-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_MIKMIDI : NSObject 3 | @end 4 | @implementation PodsDummy_MIKMIDI 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/MIKMIDI/MIKMIDI-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /Pods/Target Support Files/ORSSerialPort/ORSSerialPort-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_ORSSerialPort : NSObject 3 | @end 4 | @implementation PodsDummy_ORSSerialPort 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/ORSSerialPort/ORSSerialPort-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /Pods/Target Support Files/PocketSocket/PocketSocket-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_PocketSocket : NSObject 3 | @end 4 | @implementation PodsDummy_PocketSocket 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/PocketSocket/PocketSocket-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Hammerspoon/Pods-Hammerspoon-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_Hammerspoon : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_Hammerspoon 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Hammerspoon/Pods-Hammerspoon.modulemap: -------------------------------------------------------------------------------- 1 | module Pods_Hammerspoon { 2 | umbrella header "Pods-Hammerspoon-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Sentry/Sentry-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Sentry : NSObject 3 | @end 4 | @implementation PodsDummy_Sentry 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Sentry/Sentry-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Sentry/Sentry.modulemap: -------------------------------------------------------------------------------- 1 | module Sentry { 2 | umbrella header "Sentry-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SocketRocket/SocketRocket-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_SocketRocket : NSObject 3 | @end 4 | @implementation PodsDummy_SocketRocket 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SocketRocket/SocketRocket-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Sparkle/Sparkle-copy-dsyms-input-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${PODS_ROOT}/Sparkle/Sparkle.framework.dSYM -------------------------------------------------------------------------------- /Pods/Target Support Files/Sparkle/Sparkle-copy-dsyms-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${DWARF_DSYM_FOLDER_PATH}/Sparkle.framework.dSYM -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- 1 | comment: 2 | layout: header, changes, diff 3 | coverage: 4 | ignore: 5 | - HammerspoonUITests/.* 6 | - Pods/.* 7 | - LuaSkin/LuaSkinTests/.* 8 | - LuaSkin/lua-.* 9 | 10 | -------------------------------------------------------------------------------- /extensions/camera/camera.lua: -------------------------------------------------------------------------------- 1 | --- === hs.camera === 2 | --- 3 | --- Inspect the system's camera devices 4 | 5 | local module = require("hs.libcamera") 6 | 7 | -- Return Module Object -------------------------------------------------- 8 | return module 9 | -------------------------------------------------------------------------------- /extensions/chooser/HSChooserRootView.h: -------------------------------------------------------------------------------- 1 | // 2 | // HSChooserRootView.h 3 | // Hammerspoon 4 | // 5 | // Created by Chris Jones on 26/10/2016. 6 | // Copyright © 2016 Hammerspoon. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface HSChooserRootView : NSView 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /extensions/chooser/HSChooserWindow.h: -------------------------------------------------------------------------------- 1 | // 2 | // HSChooserWindow.h 3 | // Hammerspoon 4 | // 5 | // Created by Chris Jones on 29/12/2015. 6 | // Copyright © 2015 Hammerspoon. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface HSChooserWindow : NSPanel 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /extensions/crash/test_crash.lua: -------------------------------------------------------------------------------- 1 | hs.crash = require("hs.crash") 2 | 3 | function testResidentSize() 4 | local value = hs.crash.residentSize() 5 | assertIsNumber(value) 6 | return success() 7 | end 8 | 9 | function testThrowTheWorld() 10 | hs.crash.throwObjCException("foo", "bar") 11 | end 12 | -------------------------------------------------------------------------------- /extensions/doc/hsdocs/hsminweb/index.md: -------------------------------------------------------------------------------- 1 | ### HSMINWEB Supporting Documentation 2 | 3 | This folder provides specific documentation and examples for getting the most out of `hs.httpserver.hsminweb`. 4 | 5 | * [Custom Error Functions](functions.md) 6 | * [Lua Template Files](templates.md) 7 | -------------------------------------------------------------------------------- /extensions/doc/hsdocs/hsminweb/templates.md: -------------------------------------------------------------------------------- 1 | CGILua and Lua Template Pages 2 | ----------------------------- 3 | 4 | TBD 5 | -------------------------------------------------------------------------------- /extensions/fs/lfs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | // This file is probably no longer necessary 4 | 5 | #ifdef __cplusplus 6 | extern "C" { 7 | #endif 8 | 9 | int luaopen_lfs (lua_State *L); 10 | 11 | #ifdef __cplusplus 12 | } 13 | #endif 14 | -------------------------------------------------------------------------------- /extensions/osascript/test_osascript.lua: -------------------------------------------------------------------------------- 1 | require "test_javascript" 2 | require "test_applescript" 3 | -------------------------------------------------------------------------------- /extensions/plist/plist.lua: -------------------------------------------------------------------------------- 1 | --- === hs.plist === 2 | --- 3 | --- Read and write Property List files 4 | 5 | local USERDATA_TAG = "hs.plist" 6 | local module = require("hs.libplist") 7 | 8 | -- Return Module Object -------------------------------------------------- 9 | 10 | return module 11 | -------------------------------------------------------------------------------- /extensions/razer/HSRazerTartarusV2Device.h: -------------------------------------------------------------------------------- 1 | #import "HSRazerDevice.h" 2 | 3 | NS_ASSUME_NONNULL_BEGIN 4 | 5 | @interface HSRazerTartarusV2Device : HSRazerDevice 6 | 7 | @end 8 | 9 | NS_ASSUME_NONNULL_END 10 | -------------------------------------------------------------------------------- /extensions/usb/usb.lua: -------------------------------------------------------------------------------- 1 | --- === hs.usb === 2 | --- 3 | --- Inspect USB devices 4 | 5 | local usb = require "hs.libusb" 6 | usb.watcher = require "hs.libusbwatcher" 7 | 8 | return usb 9 | -------------------------------------------------------------------------------- /extensions/websocket/websocket.lua: -------------------------------------------------------------------------------- 1 | --- === hs.websocket === 2 | --- 3 | --- Simple websocket client. 4 | 5 | local websocket = require("hs.libwebsocket") 6 | return websocket 7 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | jinja2 ~= 3.1.4 2 | mistune ~= 2.0.0 3 | pygments ~= 2.15.0 4 | -------------------------------------------------------------------------------- /scripts/docs/bin/download: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | DEST=$1 3 | while read -r url; do 4 | url=$(echo $url | tr -d '\r') 5 | echo "### Cloning [${url}] to $DEST" 6 | curl -L -s $url | tar -x -C $DEST 7 | done 8 | -------------------------------------------------------------------------------- /scripts/docs/templates/Hammerspoon.docset/Contents/Resources/Documents/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/scripts/docs/templates/Hammerspoon.docset/Contents/Resources/Documents/.gitkeep -------------------------------------------------------------------------------- /scripts/docs/templates/Hammerspoon.docset/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/scripts/docs/templates/Hammerspoon.docset/icon.png -------------------------------------------------------------------------------- /scripts/docs/templates/Hammerspoon.docset/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/scripts/docs/templates/Hammerspoon.docset/icon@2x.png -------------------------------------------------------------------------------- /scripts/github-ci-docs.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # Lint and build docs 3 | 4 | set -eu 5 | set -o pipefail 6 | 7 | export IS_CI=1 8 | 9 | ./scripts/build.sh docs -l 10 | ./scripts/build.sh docs 11 | 12 | cp build/annotations.json artifacts/ 13 | -------------------------------------------------------------------------------- /scripts/rebuild.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" 4 | 5 | "${DIR}/scripts/build.sh" clean 6 | "${DIR}/scripts/build.sh" build 7 | "${DIR}/scripts/build.sh" docs 8 | 9 | killall Hammerspoon 10 | open -a "$DIR/build/Hammerspoon.app" 11 | -------------------------------------------------------------------------------- /scripts/sentry-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/950a7b111ce9b733f9cc82646eef770ad694b782/scripts/sentry-cli --------------------------------------------------------------------------------