├── .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 │ │ │ ├── NSLocale+Sentry.h │ │ │ ├── NSMutableDictionary+Sentry.h │ │ │ ├── PrivateSentrySDKOnly.h │ │ │ ├── PrivatesHeader.h │ │ │ ├── Sentry.h │ │ │ ├── SentryANRTrackerV1.h │ │ │ ├── SentryANRTrackerV2.h │ │ │ ├── SentryANRTrackingIntegration.h │ │ │ ├── SentryAppStartMeasurement.h │ │ │ ├── SentryAppStartTracker.h │ │ │ ├── SentryAppStartTrackingIntegration.h │ │ │ ├── SentryAppStateManager.h │ │ │ ├── SentryArray.h │ │ │ ├── SentryAsyncLog.h │ │ │ ├── SentryAsyncSafeLog.h │ │ │ ├── SentryAsynchronousOperation.h │ │ │ ├── SentryAttachment+Private.h │ │ │ ├── SentryAttachment.h │ │ │ ├── SentryAutoBreadcrumbTrackingIntegration.h │ │ │ ├── SentryAutoSessionTrackingIntegration.h │ │ │ ├── SentryBacktrace.hpp │ │ │ ├── SentryBaggage.h │ │ │ ├── SentryBaseIntegration.h │ │ │ ├── SentryBinaryImageCacheCallbacks.h │ │ │ ├── SentryBreadcrumb+Private.h │ │ │ ├── SentryBreadcrumb.h │ │ │ ├── SentryBreadcrumbDelegate.h │ │ │ ├── SentryBreadcrumbTracker.h │ │ │ ├── SentryBuildAppStartSpans.h │ │ │ ├── SentryByteCountFormatter.h │ │ │ ├── SentryCPU.h │ │ │ ├── SentryClient+Logs.h │ │ │ ├── SentryClient+Private.h │ │ │ ├── SentryClient.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 │ │ │ ├── SentryCrashCxaThrowSwapper.h │ │ │ ├── SentryCrashDate.h │ │ │ ├── SentryCrashDebug.h │ │ │ ├── SentryCrashDefaultBinaryImageProvider.h │ │ │ ├── SentryCrashDefaultMachineContextWrapper.h │ │ │ ├── SentryCrashDoctor.h │ │ │ ├── SentryCrashDynamicLinker+Test.h │ │ │ ├── SentryCrashDynamicLinker.h │ │ │ ├── SentryCrashExceptionApplication.h │ │ │ ├── SentryCrashExceptionApplicationHelper.h │ │ │ ├── SentryCrashFileUtils.h │ │ │ ├── SentryCrashID.h │ │ │ ├── SentryCrashInstallation+Private.h │ │ │ ├── SentryCrashInstallation.h │ │ │ ├── SentryCrashInstallationReporter.h │ │ │ ├── SentryCrashIntegration.h │ │ │ ├── SentryCrashIntegrationSessionHandler.h │ │ │ ├── SentryCrashIsAppImage.h │ │ │ ├── SentryCrashJSONCodec.h │ │ │ ├── SentryCrashJSONCodecObjC.h │ │ │ ├── SentryCrashMach-O.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 │ │ │ ├── SentryDataCategory.h │ │ │ ├── SentryDataCategoryMapper.h │ │ │ ├── SentryDateUtil.h │ │ │ ├── SentryDateUtils.h │ │ │ ├── SentryDebugImageProvider+HybridSDKs.h │ │ │ ├── SentryDebugImageProvider.h │ │ │ ├── SentryDebugMeta.h │ │ │ ├── SentryDefaultRateLimits.h │ │ │ ├── SentryDefines.h │ │ │ ├── SentryDelayedFrame.h │ │ │ ├── SentryDelayedFramesTracker.h │ │ │ ├── SentryDependencyContainer.h │ │ │ ├── SentryDependencyContainerSwiftHelper.h │ │ │ ├── SentryDevice.h │ │ │ ├── SentryDictionaryDeepSearch.h │ │ │ ├── SentryDiscardReason.h │ │ │ ├── SentryDiscardReasonMapper.h │ │ │ ├── SentryDispatchFactory.h │ │ │ ├── SentryDispatchQueueProviderProtocol.h │ │ │ ├── SentryDispatchSourceProviderProtocol.h │ │ │ ├── SentryDisplayLinkWrapper.h │ │ │ ├── SentryDsn.h │ │ │ ├── SentryEnvelopeAttachmentHeader.h │ │ │ ├── SentryEnvelopeHeaderHelper.h │ │ │ ├── SentryEnvelopeItemHeader.h │ │ │ ├── SentryEnvelopeRateLimit.h │ │ │ ├── SentryError.h │ │ │ ├── SentryEvent+Private.h │ │ │ ├── SentryEvent+Serialize.h │ │ │ ├── SentryEvent.h │ │ │ ├── SentryEventSwiftHelper.h │ │ │ ├── SentryException.h │ │ │ ├── SentryExtraContextProvider.h │ │ │ ├── SentryFeedbackAPI.h │ │ │ ├── SentryFileIOTracker.h │ │ │ ├── SentryFileIOTrackingIntegration.h │ │ │ ├── SentryFileManager.h │ │ │ ├── SentryFormatter.h │ │ │ ├── SentryFrame.h │ │ │ ├── SentryFramesTracker.h │ │ │ ├── SentryFramesTrackingIntegration.h │ │ │ ├── SentryGeo.h │ │ │ ├── SentryHttpDateParser.h │ │ │ ├── SentryHttpStatusCodeRange+Private.h │ │ │ ├── SentryHttpStatusCodeRange.h │ │ │ ├── SentryHttpTransport.h │ │ │ ├── SentryHub+Private.h │ │ │ ├── SentryHub.h │ │ │ ├── SentryInstallation.h │ │ │ ├── SentryIntegrationProtocol.h │ │ │ ├── SentryInternalCDefines.h │ │ │ ├── SentryInternalDefines.h │ │ │ ├── SentryInternalNotificationNames.h │ │ │ ├── SentryInternalSerializable.h │ │ │ ├── SentryLaunchProfiling.h │ │ │ ├── SentryLevelHelper.h │ │ │ ├── SentryLevelMapper.h │ │ │ ├── SentryLogC.h │ │ │ ├── SentryMachLogging.hpp │ │ │ ├── SentryMeasurementUnit.h │ │ │ ├── SentryMechanism.h │ │ │ ├── SentryMechanismMeta.h │ │ │ ├── SentryMessage.h │ │ │ ├── SentryMeta.h │ │ │ ├── SentryMetricKitIntegration.h │ │ │ ├── SentryMetricProfiler.h │ │ │ ├── SentryModels+Serializable.h │ │ │ ├── SentryMsgPackSerializer.h │ │ │ ├── SentryNSDataSwizzling.h │ │ │ ├── SentryNSDataUtils.h │ │ │ ├── SentryNSDictionarySanitize.h │ │ │ ├── SentryNSError.h │ │ │ ├── SentryNSFileManagerSwizzling.h │ │ │ ├── SentryNSURLRequestBuilder.h │ │ │ ├── SentryNSURLSessionTaskSearch.h │ │ │ ├── SentryNetworkTracker.h │ │ │ ├── SentryNetworkTrackingIntegration.h │ │ │ ├── SentryNoOpSpan.h │ │ │ ├── SentryNotificationNames.h │ │ │ ├── SentryOptions+Private.h │ │ │ ├── SentryOptions.h │ │ │ ├── SentryOptionsInternal.h │ │ │ ├── SentryPerformanceTracker.h │ │ │ ├── SentryPerformanceTrackingIntegration.h │ │ │ ├── SentryPredicateDescriptor.h │ │ │ ├── SentryPrivate.h │ │ │ ├── SentryProfileCollector.h │ │ │ ├── SentryProfileConfiguration.h │ │ │ ├── SentryProfileTimeseries.h │ │ │ ├── SentryProfiledTracerConcurrency.h │ │ │ ├── SentryProfiler+Private.h │ │ │ ├── SentryProfilerDefines.h │ │ │ ├── SentryProfilerSerialization+Test.h │ │ │ ├── SentryProfilerSerialization.h │ │ │ ├── SentryProfilerState+ObjCpp.h │ │ │ ├── SentryProfilerState.h │ │ │ ├── SentryProfilerTestHelpers.h │ │ │ ├── SentryProfilingConditionals.h │ │ │ ├── SentryProfilingSwiftHelpers.h │ │ │ ├── SentryPropagationContext.h │ │ │ ├── SentryQueueableRequestManager.h │ │ │ ├── SentryRateLimitParser.h │ │ │ ├── SentryRateLimits.h │ │ │ ├── SentryReachability.h │ │ │ ├── SentryReplayApi.h │ │ │ ├── SentryRequest.h │ │ │ ├── SentryRequestManager.h │ │ │ ├── SentryRequestOperation.h │ │ │ ├── SentryRetryAfterHeaderParser.h │ │ │ ├── SentrySDK+Private.h │ │ │ ├── SentrySDKInternal.h │ │ │ ├── SentrySample.h │ │ │ ├── SentrySampleDecision+Private.h │ │ │ ├── SentrySampleDecision.h │ │ │ ├── SentrySamplerDecision.h │ │ │ ├── SentrySampling.h │ │ │ ├── SentrySamplingContext.h │ │ │ ├── SentrySamplingProfiler.hpp │ │ │ ├── SentryScope+Private.h │ │ │ ├── SentryScope+PrivateSwift.h │ │ │ ├── SentryScope.h │ │ │ ├── SentryScopeObserver.h │ │ │ ├── SentryScopeSyncC.h │ │ │ ├── SentryScreenFrames.h │ │ │ ├── SentryScreenshotIntegration.h │ │ │ ├── SentrySerializable.h │ │ │ ├── SentrySerialization.h │ │ │ ├── SentrySessionInternal.h │ │ │ ├── SentrySessionReplayIntegration+Private.h │ │ │ ├── SentrySessionReplayIntegration-Hybrid.h │ │ │ ├── SentrySessionReplayIntegration.h │ │ │ ├── SentrySessionReplaySyncC.h │ │ │ ├── SentrySessionTracker.h │ │ │ ├── SentrySpan+Private.h │ │ │ ├── SentrySpan.h │ │ │ ├── SentrySpanContext+Private.h │ │ │ ├── SentrySpanContext.h │ │ │ ├── SentrySpanDataKey.h │ │ │ ├── SentrySpanId.h │ │ │ ├── SentrySpanOperation.h │ │ │ ├── SentrySpanProtocol.h │ │ │ ├── SentrySpanStatus.h │ │ │ ├── SentrySpotlightTransport.h │ │ │ ├── SentryStackBounds.hpp │ │ │ ├── SentryStackFrame.hpp │ │ │ ├── SentryStacktrace.h │ │ │ ├── SentryStacktraceBuilder.h │ │ │ ├── SentrySubClassFinder.h │ │ │ ├── SentrySwift.h │ │ │ ├── SentrySwiftAsyncIntegration.h │ │ │ ├── SentrySwizzle.h │ │ │ ├── SentrySwizzleWrapper.h │ │ │ ├── SentrySysctlObjC.h │ │ │ ├── SentrySystemEventBreadcrumbs.h │ │ │ ├── SentrySystemWrapper.h │ │ │ ├── SentryThread+Private.h │ │ │ ├── SentryThread.h │ │ │ ├── SentryThreadHandle.hpp │ │ │ ├── SentryThreadInspector.h │ │ │ ├── SentryThreadMetadataCache.hpp │ │ │ ├── SentryThreadState.hpp │ │ │ ├── SentryTime.h │ │ │ ├── SentryTimeToDisplayTracker.h │ │ │ ├── SentryTraceContext.h │ │ │ ├── SentryTraceHeader.h │ │ │ ├── SentryTraceOrigin.h │ │ │ ├── SentryTraceProfiler.h │ │ │ ├── SentryTracer+Private.h │ │ │ ├── SentryTracer.h │ │ │ ├── SentryTracerConfiguration.h │ │ │ ├── SentryTransaction.h │ │ │ ├── SentryTransactionContext+Private.h │ │ │ ├── SentryTransactionContext.h │ │ │ ├── SentryTransport.h │ │ │ ├── SentryTransportAdapter.h │ │ │ ├── SentryTransportFactory.h │ │ │ ├── SentryUIEventTracker.h │ │ │ ├── SentryUIEventTrackerMode.h │ │ │ ├── SentryUIEventTrackerTransactionMode.h │ │ │ ├── SentryUIEventTrackingIntegration.h │ │ │ ├── SentryUIViewControllerPerformanceTracker.h │ │ │ ├── SentryUIViewControllerSwizzling.h │ │ │ ├── SentryUncaughtNSExceptions.h │ │ │ ├── SentryUseNSExceptionCallstackWrapper.h │ │ │ ├── SentryUser+Private.h │ │ │ ├── SentryUser+Serialize.h │ │ │ ├── SentryUser.h │ │ │ ├── SentryUserAccess.h │ │ │ ├── SentryUserFeedbackIntegration.h │ │ │ ├── SentryViewHierarchyIntegration.h │ │ │ ├── SentryViewHierarchyProviderHelper.h │ │ │ ├── SentryWatchdogTerminationBreadcrumbProcessor.h │ │ │ ├── SentryWatchdogTerminationLogic.h │ │ │ ├── SentryWatchdogTerminationScopeObserver.h │ │ │ ├── SentryWatchdogTerminationTracker.h │ │ │ ├── SentryWatchdogTerminationTrackingIntegration.h │ │ │ ├── SentryWeakMap.h │ │ │ ├── SentryWithoutUIKit.h │ │ │ ├── UIViewController+Sentry.h │ │ │ └── _SentryDispatchQueueWrapperInternal.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 │ │ ├── SentryFeedbackAPI.h │ │ ├── SentryFrame.h │ │ ├── SentryGeo.h │ │ ├── SentryHttpStatusCodeRange.h │ │ ├── SentryHub.h │ │ ├── SentryIntegrationProtocol.h │ │ ├── SentryMeasurementUnit.h │ │ ├── SentryMechanism.h │ │ ├── SentryMechanismMeta.h │ │ ├── SentryMessage.h │ │ ├── SentryNSError.h │ │ ├── SentryOptions.h │ │ ├── SentryProfilingConditionals.h │ │ ├── SentryReplayApi.h │ │ ├── SentryRequest.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 │ │ └── 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 │ │ ├── NSLocale+Sentry.m │ │ ├── NSMutableDictionary+Sentry.m │ │ ├── PrivateSentrySDKOnly.m │ │ ├── Processors │ │ │ └── SentryWatchdogTerminationBreadcrumbProcessor.m │ │ ├── Profiling │ │ │ ├── SentryContinuousProfiler.mm │ │ │ ├── SentryLaunchProfiling.m │ │ │ ├── SentryProfileConfiguration.m │ │ │ ├── SentryProfiledTracerConcurrency.mm │ │ │ ├── SentryProfilerSerialization+Test.h │ │ │ ├── SentryProfilerSerialization.m │ │ │ ├── SentryProfilerState.mm │ │ │ ├── SentryProfilerTestHelpers.m │ │ │ ├── SentryProfilingSwiftHelpers.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 │ │ │ ├── SentryFeedbackAPI.h │ │ │ ├── SentryFrame.h │ │ │ ├── SentryGeo.h │ │ │ ├── SentryHttpStatusCodeRange.h │ │ │ ├── SentryHub.h │ │ │ ├── SentryIntegrationProtocol.h │ │ │ ├── SentryMeasurementUnit.h │ │ │ ├── SentryMechanism.h │ │ │ ├── SentryMechanismMeta.h │ │ │ ├── SentryMessage.h │ │ │ ├── SentryNSError.h │ │ │ ├── SentryOptions.h │ │ │ ├── SentryProfilingConditionals.h │ │ │ ├── SentryReplayApi.h │ │ │ ├── SentryRequest.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 │ │ │ └── SentryWithoutUIKit.h │ │ ├── SentryANRTrackerV1.m │ │ ├── SentryANRTrackerV2.m │ │ ├── SentryANRTrackingIntegration.m │ │ ├── SentryAppStartMeasurement.m │ │ ├── SentryAppStartTracker.m │ │ ├── SentryAppStartTrackingIntegration.m │ │ ├── SentryAppStateManager.m │ │ ├── SentryArray.m │ │ ├── SentryAsyncLog.h │ │ ├── SentryAsyncLog.m │ │ ├── SentryAsyncSafeLog.c │ │ ├── SentryAsyncSafeLog.h │ │ ├── SentryAsynchronousOperation.m │ │ ├── SentryAttachment.m │ │ ├── SentryAutoBreadcrumbTrackingIntegration.m │ │ ├── SentryAutoSessionTrackingIntegration.m │ │ ├── SentryBacktrace.cpp │ │ ├── SentryBaggage.m │ │ ├── SentryBaseIntegration.m │ │ ├── SentryBreadcrumb.m │ │ ├── SentryBreadcrumbTracker.m │ │ ├── SentryBuildAppStartSpans.m │ │ ├── SentryByteCountFormatter.m │ │ ├── SentryClient.m │ │ ├── SentryConcurrentRateLimitsDictionary.m │ │ ├── SentryCoreDataSwizzling.m │ │ ├── SentryCoreDataTracker.m │ │ ├── SentryCoreDataTrackingIntegration.m │ │ ├── SentryCrashDefaultBinaryImageProvider.m │ │ ├── SentryCrashDefaultMachineContextWrapper.m │ │ ├── SentryCrashExceptionApplication.m │ │ ├── SentryCrashExceptionApplicationHelper.m │ │ ├── SentryCrashInstallationReporter.m │ │ ├── SentryCrashIntegration.m │ │ ├── SentryCrashIntegrationSessionHandler.m │ │ ├── SentryCrashReportConverter.m │ │ ├── SentryCrashReportSink.m │ │ ├── SentryCrashScopeObserver.m │ │ ├── SentryCrashStackEntryMapper.m │ │ ├── SentryDataCategoryMapper.m │ │ ├── SentryDateUtil.m │ │ ├── SentryDateUtils.m │ │ ├── SentryDebugImageProvider.m │ │ ├── SentryDebugMeta.m │ │ ├── SentryDefaultRateLimits.m │ │ ├── SentryDelayedFrame.m │ │ ├── SentryDelayedFramesTracker.m │ │ ├── SentryDependencyContainer.m │ │ ├── SentryDependencyContainerSwiftHelper.m │ │ ├── SentryDevice.m │ │ ├── SentryDiscardReasonMapper.m │ │ ├── SentryDispatchFactory.m │ │ ├── SentryDsn.m │ │ ├── SentryDummyPrivateEmptyClass.m │ │ ├── SentryDummyPublicEmptyClass.m │ │ ├── SentryEnvelopeAttachmentHeader.m │ │ ├── SentryEnvelopeHeaderHelper.m │ │ ├── SentryEnvelopeItemHeader.m │ │ ├── SentryEnvelopeRateLimit.m │ │ ├── SentryError.mm │ │ ├── SentryEvent.m │ │ ├── SentryEventSwiftHelper.m │ │ ├── SentryException.m │ │ ├── SentryExtraContextProvider.h │ │ ├── SentryExtraContextProvider.m │ │ ├── SentryFeedbackAPI.m │ │ ├── SentryFileIOTracker.m │ │ ├── SentryFileIOTrackingIntegration.m │ │ ├── SentryFileManager.m │ │ ├── SentryFrame.m │ │ ├── SentryFramesTracker.m │ │ ├── SentryFramesTrackingIntegration.m │ │ ├── SentryGeo.m │ │ ├── SentryHttpDateParser.m │ │ ├── SentryHttpStatusCodeRange.m │ │ ├── SentryHttpTransport.m │ │ ├── SentryHub.m │ │ ├── SentryInstallation.m │ │ ├── SentryLevelHelper.m │ │ ├── SentryLevelMapper.m │ │ ├── SentryLogC.m │ │ ├── SentryMachLogging.cpp │ │ ├── SentryMeasurementUnit.m │ │ ├── SentryMechanism.m │ │ ├── SentryMechanismMeta.m │ │ ├── SentryMessage.m │ │ ├── SentryMeta.m │ │ ├── SentryMetricKitIntegration.m │ │ ├── SentryMetricProfiler.m │ │ ├── SentryMsgPackSerializer.m │ │ ├── SentryNSDataSwizzling.m │ │ ├── SentryNSDataUtils.m │ │ ├── SentryNSDictionarySanitize.m │ │ ├── SentryNSError.m │ │ ├── SentryNSFileManagerSwizzling.m │ │ ├── SentryNSURLRequestBuilder.m │ │ ├── SentryNSURLSessionTaskSearch.m │ │ ├── SentryNetworkTracker.m │ │ ├── SentryNetworkTrackingIntegration.m │ │ ├── SentryNoOpSpan.m │ │ ├── SentryOptions.m │ │ ├── SentryPerformanceTracker.m │ │ ├── SentryPerformanceTrackingIntegration.m │ │ ├── SentryPredicateDescriptor.m │ │ ├── SentryProfileCollector.h │ │ ├── SentryProfileCollector.mm │ │ ├── SentryProfileTimeseries.m │ │ ├── SentryProfiler.mm │ │ ├── SentryPropagationContext.h │ │ ├── SentryPropagationContext.m │ │ ├── SentryQueueableRequestManager.m │ │ ├── SentryRateLimitParser.m │ │ ├── SentryReachability.m │ │ ├── SentryReplayApi.m │ │ ├── SentryRequest.m │ │ ├── SentryRequestOperation.m │ │ ├── SentryRetryAfterHeaderParser.m │ │ ├── SentrySDKInternal.m │ │ ├── SentrySampleDecision.m │ │ ├── SentrySamplerDecision.m │ │ ├── SentrySampling.m │ │ ├── SentrySamplingContext.m │ │ ├── SentrySamplingProfiler.cpp │ │ ├── SentryScope.m │ │ ├── SentryScopeSyncC.c │ │ ├── SentryScreenFrames.m │ │ ├── SentryScreenshotIntegration.m │ │ ├── SentrySerialization.m │ │ ├── SentrySessionInternal.m │ │ ├── SentrySessionReplayIntegration.m │ │ ├── SentrySessionReplaySyncC.c │ │ ├── SentrySessionTracker.m │ │ ├── SentrySpan.m │ │ ├── SentrySpanContext.m │ │ ├── SentrySpanDataKey.m │ │ ├── SentrySpanId.m │ │ ├── SentrySpanOperation.m │ │ ├── SentrySpanStatus.m │ │ ├── SentrySpotlightTransport.m │ │ ├── SentryStacktrace.m │ │ ├── SentryStacktraceBuilder.m │ │ ├── SentrySubClassFinder.m │ │ ├── SentrySwiftAsyncIntegration.m │ │ ├── SentrySwizzle.m │ │ ├── SentrySwizzleWrapper.m │ │ ├── SentrySysctlObjC.m │ │ ├── SentrySystemEventBreadcrumbs.m │ │ ├── SentrySystemWrapper.mm │ │ ├── SentryThread.mm │ │ ├── SentryThreadHandle.cpp │ │ ├── SentryThreadInspector.m │ │ ├── SentryThreadMetadataCache.cpp │ │ ├── SentryTime.mm │ │ ├── SentryTimeToDisplayTracker.m │ │ ├── SentryTraceContext.m │ │ ├── SentryTraceHeader.m │ │ ├── SentryTraceOrigin.m │ │ ├── SentryTracer.m │ │ ├── SentryTracerConfiguration.m │ │ ├── SentryTransaction.m │ │ ├── SentryTransactionContext.m │ │ ├── SentryTransportAdapter.m │ │ ├── SentryTransportFactory.m │ │ ├── SentryUIEventTracker.m │ │ ├── SentryUIEventTrackerTransactionMode.m │ │ ├── SentryUIEventTrackingIntegration.m │ │ ├── SentryUIViewControllerPerformanceTracker.m │ │ ├── SentryUIViewControllerSwizzling.m │ │ ├── SentryUncaughtNSExceptions.m │ │ ├── SentryUseNSExceptionCallstackWrapper.m │ │ ├── SentryUser.m │ │ ├── SentryUserAccess.m │ │ ├── SentryUserFeedbackIntegration.m │ │ ├── SentryViewHierarchyIntegration.m │ │ ├── SentryViewHierarchyProviderHelper.m │ │ ├── SentryWatchdogTerminationLogic.m │ │ ├── SentryWatchdogTerminationScopeObserver.m │ │ ├── SentryWatchdogTerminationTracker.m │ │ ├── SentryWatchdogTerminationTrackingIntegration.m │ │ ├── SentryWeakMap.m │ │ ├── SentyOptionsInternal.m │ │ ├── UIViewController+Sentry.m │ │ ├── _SentryDispatchQueueWrapperInternal.m │ │ └── include │ │ │ ├── HybridPublic │ │ │ ├── PrivateSentrySDKOnly.h │ │ │ ├── PrivatesHeader.h │ │ │ ├── SentryAppStartMeasurement.h │ │ │ ├── SentryBaseIntegration.h │ │ │ ├── SentryBreadcrumb+Private.h │ │ │ ├── SentryDebugImageProvider+HybridSDKs.h │ │ │ ├── SentryDependencyContainer.h │ │ │ ├── SentryFormatter.h │ │ │ ├── SentryFramesTracker.h │ │ │ ├── SentryOptionsInternal.h │ │ │ ├── SentryScreenFrames.h │ │ │ ├── SentrySessionReplayIntegration-Hybrid.h │ │ │ ├── SentrySessionReplayIntegration.h │ │ │ ├── SentrySwizzle.h │ │ │ └── SentryUser+Private.h │ │ │ ├── NSLocale+Sentry.h │ │ │ ├── NSMutableDictionary+Sentry.h │ │ │ ├── SentryANRTrackerV1.h │ │ │ ├── SentryANRTrackerV2.h │ │ │ ├── SentryANRTrackingIntegration.h │ │ │ ├── SentryAppStartTracker.h │ │ │ ├── SentryAppStartTrackingIntegration.h │ │ │ ├── SentryAppStateManager.h │ │ │ ├── SentryArray.h │ │ │ ├── SentryAsyncLog.h │ │ │ ├── SentryAsynchronousOperation.h │ │ │ ├── SentryAttachment+Private.h │ │ │ ├── SentryAutoBreadcrumbTrackingIntegration.h │ │ │ ├── SentryAutoSessionTrackingIntegration.h │ │ │ ├── SentryBacktrace.hpp │ │ │ ├── SentryBinaryImageCacheCallbacks.h │ │ │ ├── SentryBreadcrumbDelegate.h │ │ │ ├── SentryBreadcrumbTracker.h │ │ │ ├── SentryBuildAppStartSpans.h │ │ │ ├── SentryByteCountFormatter.h │ │ │ ├── SentryCPU.h │ │ │ ├── SentryClient+Logs.h │ │ │ ├── SentryClient+Private.h │ │ │ ├── SentryCompiler.h │ │ │ ├── SentryConcurrentRateLimitsDictionary.h │ │ │ ├── SentryContinuousProfiler.h │ │ │ ├── SentryCoreDataSwizzling.h │ │ │ ├── SentryCoreDataTracker.h │ │ │ ├── SentryCoreDataTrackingIntegration.h │ │ │ ├── SentryCrash.h │ │ │ ├── SentryCrashBinaryImageCache.h │ │ │ ├── SentryCrashBinaryImageProvider.h │ │ │ ├── SentryCrashDebug.h │ │ │ ├── SentryCrashDefaultBinaryImageProvider.h │ │ │ ├── SentryCrashDefaultMachineContextWrapper.h │ │ │ ├── SentryCrashDynamicLinker.h │ │ │ ├── SentryCrashExceptionApplicationHelper.h │ │ │ ├── SentryCrashInstallationReporter.h │ │ │ ├── SentryCrashIntegration.h │ │ │ ├── SentryCrashIntegrationSessionHandler.h │ │ │ ├── SentryCrashIsAppImage.h │ │ │ ├── SentryCrashMachineContextWrapper.h │ │ │ ├── SentryCrashMonitor.h │ │ │ ├── SentryCrashMonitorType.h │ │ │ ├── SentryCrashMonitor_AppState.h │ │ │ ├── SentryCrashMonitor_System.h │ │ │ ├── SentryCrashReportConverter.h │ │ │ ├── SentryCrashReportFilter.h │ │ │ ├── SentryCrashReportSink.h │ │ │ ├── SentryCrashReportWriter.h │ │ │ ├── SentryCrashScopeObserver.h │ │ │ ├── SentryCrashStackEntryMapper.h │ │ │ ├── SentryCrashThread.h │ │ │ ├── SentryCrashUUIDConversion.h │ │ │ ├── SentryDataCategory.h │ │ │ ├── SentryDataCategoryMapper.h │ │ │ ├── SentryDateUtil.h │ │ │ ├── SentryDateUtils.h │ │ │ ├── SentryDefaultRateLimits.h │ │ │ ├── SentryDelayedFrame.h │ │ │ ├── SentryDelayedFramesTracker.h │ │ │ ├── SentryDependencyContainerSwiftHelper.h │ │ │ ├── SentryDevice.h │ │ │ ├── SentryDiscardReason.h │ │ │ ├── SentryDiscardReasonMapper.h │ │ │ ├── SentryDispatchFactory.h │ │ │ ├── SentryDispatchQueueProviderProtocol.h │ │ │ ├── SentryDispatchSourceProviderProtocol.h │ │ │ ├── SentryDisplayLinkWrapper.h │ │ │ ├── SentryDisplayLinkWrapper.m │ │ │ ├── SentryEnvelopeAttachmentHeader.h │ │ │ ├── SentryEnvelopeHeaderHelper.h │ │ │ ├── SentryEnvelopeRateLimit.h │ │ │ ├── SentryEvent+Private.h │ │ │ ├── SentryEvent+Serialize.h │ │ │ ├── SentryEventSwiftHelper.h │ │ │ ├── SentryFileIOTracker.h │ │ │ ├── SentryFileIOTrackingIntegration.h │ │ │ ├── SentryFileManager.h │ │ │ ├── SentryFramesTrackingIntegration.h │ │ │ ├── SentryHttpDateParser.h │ │ │ ├── SentryHttpStatusCodeRange+Private.h │ │ │ ├── SentryHttpTransport.h │ │ │ ├── SentryHub+Private.h │ │ │ ├── SentryInstallation.h │ │ │ ├── SentryInternalCDefines.h │ │ │ ├── SentryInternalDefines.h │ │ │ ├── SentryInternalNotificationNames.h │ │ │ ├── SentryInternalSerializable.h │ │ │ ├── SentryLaunchProfiling.h │ │ │ ├── SentryLevelHelper.h │ │ │ ├── SentryLevelMapper.h │ │ │ ├── SentryLogC.h │ │ │ ├── SentryMachLogging.hpp │ │ │ ├── SentryMeta.h │ │ │ ├── SentryMetricKitIntegration.h │ │ │ ├── SentryMetricProfiler.h │ │ │ ├── SentryModels+Serializable.h │ │ │ ├── SentryMsgPackSerializer.h │ │ │ ├── SentryNSDataSwizzling.h │ │ │ ├── SentryNSDataUtils.h │ │ │ ├── SentryNSDictionarySanitize.h │ │ │ ├── SentryNSFileManagerSwizzling.h │ │ │ ├── SentryNSURLRequestBuilder.h │ │ │ ├── SentryNSURLSessionTaskSearch.h │ │ │ ├── SentryNetworkTracker.h │ │ │ ├── SentryNetworkTrackingIntegration.h │ │ │ ├── SentryNoOpSpan.h │ │ │ ├── SentryNotificationNames.h │ │ │ ├── SentryOptions+Private.h │ │ │ ├── SentryPerformanceTracker.h │ │ │ ├── SentryPerformanceTrackingIntegration.h │ │ │ ├── SentryPredicateDescriptor.h │ │ │ ├── SentryPrivate.h │ │ │ ├── SentryProfileConfiguration.h │ │ │ ├── SentryProfileTimeseries.h │ │ │ ├── SentryProfiledTracerConcurrency.h │ │ │ ├── SentryProfiler+Private.h │ │ │ ├── SentryProfilerDefines.h │ │ │ ├── SentryProfilerSerialization.h │ │ │ ├── SentryProfilerState+ObjCpp.h │ │ │ ├── SentryProfilerState.h │ │ │ ├── SentryProfilerTestHelpers.h │ │ │ ├── SentryProfilingSwiftHelpers.h │ │ │ ├── SentryQueueableRequestManager.h │ │ │ ├── SentryRateLimitParser.h │ │ │ ├── SentryRateLimits.h │ │ │ ├── SentryReachability.h │ │ │ ├── SentryRequestManager.h │ │ │ ├── SentryRequestOperation.h │ │ │ ├── SentryRetryAfterHeaderParser.h │ │ │ ├── SentrySDK+Private.h │ │ │ ├── SentrySDKInternal.h │ │ │ ├── SentrySample.h │ │ │ ├── SentrySampleDecision+Private.h │ │ │ ├── SentrySamplerDecision.h │ │ │ ├── SentrySampling.h │ │ │ ├── SentrySamplingProfiler.hpp │ │ │ ├── SentryScope+Private.h │ │ │ ├── SentryScope+PrivateSwift.h │ │ │ ├── SentryScopeObserver.h │ │ │ ├── SentryScopeSyncC.h │ │ │ ├── SentryScreenshotIntegration.h │ │ │ ├── SentrySerialization.h │ │ │ ├── SentrySessionInternal.h │ │ │ ├── SentrySessionReplayIntegration+Private.h │ │ │ ├── SentrySessionReplaySyncC.h │ │ │ ├── SentrySessionTracker.h │ │ │ ├── SentrySpan+Private.h │ │ │ ├── SentrySpan.h │ │ │ ├── SentrySpanContext+Private.h │ │ │ ├── SentrySpanDataKey.h │ │ │ ├── SentrySpanOperation.h │ │ │ ├── SentrySpotlightTransport.h │ │ │ ├── SentryStackBounds.hpp │ │ │ ├── SentryStackFrame.hpp │ │ │ ├── SentryStacktraceBuilder.h │ │ │ ├── SentrySubClassFinder.h │ │ │ ├── SentrySwift.h │ │ │ ├── SentrySwiftAsyncIntegration.h │ │ │ ├── SentrySwizzleWrapper.h │ │ │ ├── SentrySysctlObjC.h │ │ │ ├── SentrySystemEventBreadcrumbs.h │ │ │ ├── SentrySystemWrapper.h │ │ │ ├── SentryThread+Private.h │ │ │ ├── SentryThreadHandle.hpp │ │ │ ├── SentryThreadInspector.h │ │ │ ├── SentryThreadMetadataCache.hpp │ │ │ ├── SentryThreadState.hpp │ │ │ ├── SentryTime.h │ │ │ ├── SentryTimeToDisplayTracker.h │ │ │ ├── SentryTraceOrigin.h │ │ │ ├── SentryTraceProfiler.h │ │ │ ├── SentryTracer+Private.h │ │ │ ├── SentryTracer.h │ │ │ ├── SentryTracerConfiguration.h │ │ │ ├── SentryTransaction.h │ │ │ ├── SentryTransactionContext+Private.h │ │ │ ├── SentryTransport.h │ │ │ ├── SentryTransportAdapter.h │ │ │ ├── SentryTransportFactory.h │ │ │ ├── SentryUIEventTracker.h │ │ │ ├── SentryUIEventTrackerMode.h │ │ │ ├── SentryUIEventTrackerTransactionMode.h │ │ │ ├── SentryUIEventTrackingIntegration.h │ │ │ ├── SentryUIViewControllerPerformanceTracker.h │ │ │ ├── SentryUIViewControllerSwizzling.h │ │ │ ├── SentryUncaughtNSExceptions.h │ │ │ ├── SentryUseNSExceptionCallstackWrapper.h │ │ │ ├── SentryUser+Serialize.h │ │ │ ├── SentryUserAccess.h │ │ │ ├── SentryUserFeedbackIntegration.h │ │ │ ├── SentryViewHierarchyIntegration.h │ │ │ ├── SentryViewHierarchyProviderHelper.h │ │ │ ├── SentryWatchdogTerminationBreadcrumbProcessor.h │ │ │ ├── SentryWatchdogTerminationLogic.h │ │ │ ├── SentryWatchdogTerminationScopeObserver.h │ │ │ ├── SentryWatchdogTerminationTracker.h │ │ │ ├── SentryWatchdogTerminationTrackingIntegration.h │ │ │ ├── SentryWeakMap.h │ │ │ ├── UIViewController+Sentry.h │ │ │ ├── _SentryDispatchQueueWrapperInternal.h │ │ │ └── module.modulemap │ │ ├── SentryCrash │ │ ├── Installations │ │ │ ├── SentryCrashInstallation+Private.h │ │ │ ├── SentryCrashInstallation.h │ │ │ └── SentryCrashInstallation.m │ │ ├── Recording │ │ │ ├── Monitors │ │ │ │ ├── SentryCrashMonitor.c │ │ │ │ ├── SentryCrashMonitorContext.h │ │ │ │ ├── SentryCrashMonitorType.c │ │ │ │ ├── SentryCrashMonitor_AppState.c │ │ │ │ ├── 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.m │ │ │ ├── SentryBinaryImageCacheCallbacks.m │ │ │ ├── SentryCrash.m │ │ │ ├── SentryCrashBinaryImageCache.c │ │ │ ├── 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 │ │ │ └── Tools │ │ │ │ ├── SentryCrashCPU.c │ │ │ │ ├── SentryCrashCPU.h │ │ │ │ ├── SentryCrashCPU_Apple.h │ │ │ │ ├── SentryCrashCPU_arm.c │ │ │ │ ├── SentryCrashCPU_arm64.c │ │ │ │ ├── SentryCrashCPU_x86_32.c │ │ │ │ ├── SentryCrashCPU_x86_64.c │ │ │ │ ├── SentryCrashCxaThrowSwapper.c │ │ │ │ ├── SentryCrashCxaThrowSwapper.h │ │ │ │ ├── SentryCrashDate.c │ │ │ │ ├── SentryCrashDate.h │ │ │ │ ├── SentryCrashDebug.c │ │ │ │ ├── SentryCrashDynamicLinker+Test.h │ │ │ │ ├── SentryCrashDynamicLinker.c │ │ │ │ ├── SentryCrashFileUtils.c │ │ │ │ ├── SentryCrashFileUtils.h │ │ │ │ ├── SentryCrashID.c │ │ │ │ ├── SentryCrashID.h │ │ │ │ ├── SentryCrashJSONCodec.c │ │ │ │ ├── SentryCrashJSONCodec.h │ │ │ │ ├── SentryCrashJSONCodecObjC.h │ │ │ │ ├── SentryCrashJSONCodecObjC.m │ │ │ │ ├── SentryCrashMach-O.c │ │ │ │ ├── SentryCrashMach-O.h │ │ │ │ ├── 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 │ │ │ │ └── SentryCrashUUIDConversion.c │ │ └── Reporting │ │ │ └── Filters │ │ │ ├── SentryCrashReportFilterBasic.h │ │ │ ├── SentryCrashReportFilterBasic.m │ │ │ └── Tools │ │ │ ├── SentryCrashVarArgs.h │ │ │ ├── SentryDictionaryDeepSearch.h │ │ │ └── SentryDictionaryDeepSearch.m │ │ └── Swift │ │ ├── Core │ │ ├── Extensions │ │ │ ├── Locks.swift │ │ │ ├── NumberExtensions.swift │ │ │ ├── StringExtensions.swift │ │ │ └── UIViewExtensions.swift │ │ ├── Helper │ │ │ ├── Log │ │ │ │ └── SentryLevel.swift │ │ │ ├── SentryBaggageSerialization.swift │ │ │ ├── SentryBinaryImageCache.swift │ │ │ ├── SentryCurrentDateProvider.swift │ │ │ ├── SentryExtraPackages.swift │ │ │ ├── SentryFileContents.swift │ │ │ ├── SentryInAppLogic.swift │ │ │ └── SentryUIDeviceWrapper.swift │ │ ├── Integrations │ │ │ ├── ANR │ │ │ │ ├── SentryANRTracker.swift │ │ │ │ ├── SentryANRTrackerV2Delegate.swift │ │ │ │ └── SentryANRType.swift │ │ │ ├── FramesTracking │ │ │ │ └── SentryFramesDelayResult.swift │ │ │ └── Performance │ │ │ │ ├── SentryProfileOptions.swift │ │ │ │ ├── SentryTransactionNameSource.swift │ │ │ │ └── SwizzleClassNameExclude.swift │ │ ├── MetricKit │ │ │ ├── SentryMXCallStackTree.swift │ │ │ └── SentryMXManager.swift │ │ ├── Protocol │ │ │ ├── SentryId.swift │ │ │ ├── SentryRedactOptions.swift │ │ │ └── SentryViewControllerBreadcrumbTracking.swift │ │ ├── SwiftDescriptor.swift │ │ └── Tools │ │ │ ├── HTTPHeaderSanitizer.swift │ │ │ ├── SentrySDKLog.swift │ │ │ ├── UIImageHelper.swift │ │ │ ├── URLSessionTaskHelper.swift │ │ │ ├── UrlSanitized.swift │ │ │ └── ViewCapture │ │ │ ├── SentryDefaultMaskRenderer.swift │ │ │ ├── SentryDefaultViewRenderer.swift │ │ │ ├── SentryGraphicsImageRenderer.swift │ │ │ ├── SentryMaskRenderer.swift │ │ │ ├── SentryMaskRendererV2.swift │ │ │ ├── SentryRedactRegion.swift │ │ │ ├── SentryRedactRegionType.swift │ │ │ ├── SentryRedactViewHelper.swift │ │ │ ├── SentryScreenshotSource.swift │ │ │ ├── SentryUIRedactBuilder.swift │ │ │ ├── SentryViewPhotographer.swift │ │ │ ├── SentryViewRenderer.swift │ │ │ ├── SentryViewRendererV2.swift │ │ │ └── SentryViewScreenshotProvider.swift │ │ ├── Exports.swift │ │ ├── Helper │ │ ├── Dependencies.swift │ │ ├── InfoPlist │ │ │ ├── SentryInfoPlistError.swift │ │ │ ├── SentryInfoPlistKey.swift │ │ │ ├── SentryInfoPlistWrapper.swift │ │ │ ├── SentryInfoPlistWrapperProvider.swift │ │ │ └── SentryXcodeVersion.swift │ │ ├── SentryApplication.swift │ │ ├── SentryApplicationExtensions.swift │ │ ├── SentryDefaultObjCRuntimeWrapper.swift │ │ ├── SentryDispatchQueueWrapper.swift │ │ ├── SentryDispatchSourceWrapper.swift │ │ ├── SentryEnabledFeaturesBuilder.swift │ │ ├── SentryEnvelopeItemType.swift │ │ ├── SentryIconography.swift │ │ ├── SentryMigrateSessionInit.swift │ │ ├── SentryMobileProvisionParser.swift │ │ ├── SentryNSNotificationCenterWrapper.swift │ │ ├── SentryNSTimerFactory.swift │ │ ├── SentryObjCRuntimeWrapper.swift │ │ ├── SentryProcessInfo.swift │ │ ├── SentryRandom.swift │ │ ├── SentrySDK.swift │ │ ├── SentrySdkInfo.swift │ │ ├── SentrySdkPackage.swift │ │ ├── SentrySerializationSwift.swift │ │ ├── SentrySysctl.swift │ │ ├── SentryThreadWrapper.swift │ │ └── ThreadSafeApplication.swift │ │ ├── Integrations │ │ ├── Performance │ │ │ └── IO │ │ │ │ ├── Data+SentryTracing.swift │ │ │ │ ├── FileManager+SentryTracing.swift │ │ │ │ └── SentryFileIOTracker+SwiftHelpers.swift │ │ ├── Screenshot │ │ │ └── SentryScreenshotOptions.swift │ │ ├── SentryGlobalEventProcessor.swift │ │ ├── SessionReplay │ │ │ ├── Preview │ │ │ │ └── SentryMaskingPreviewView.swift │ │ │ ├── RRWeb │ │ │ │ ├── SentryRRWebBreadcrumbEvent.swift │ │ │ │ ├── SentryRRWebCustomEvent.swift │ │ │ │ ├── SentryRRWebEvent.swift │ │ │ │ ├── SentryRRWebMetaEvent.swift │ │ │ │ ├── SentryRRWebOptionsEvent.swift │ │ │ │ ├── SentryRRWebSpanEvent.swift │ │ │ │ ├── SentryRRWebTouchEvent.swift │ │ │ │ └── SentryRRWebVideoEvent.swift │ │ │ ├── SentryOnDemandReplay.swift │ │ │ ├── SentryOnDemandReplayError.swift │ │ │ ├── SentryPixelBuffer.swift │ │ │ ├── SentryRenderVideoResult.swift │ │ │ ├── SentryReplayEvent.swift │ │ │ ├── SentryReplayFrame.swift │ │ │ ├── SentryReplayOptions.swift │ │ │ ├── SentryReplayRecording.swift │ │ │ ├── SentryReplayType.swift │ │ │ ├── SentryReplayVideoMaker.swift │ │ │ ├── SentrySRDefaultBreadcrumbConverter.swift │ │ │ ├── SentrySessionReplay.swift │ │ │ ├── SentrySessionReplayDelegate.swift │ │ │ ├── SentrySessionReplayEnvironmentChecker.swift │ │ │ ├── SentrySessionReplayEnvironmentCheckerProvider.swift │ │ │ ├── SentryTouchTracker.swift │ │ │ ├── SentryVideoFrameProcessor.swift │ │ │ └── SentryVideoInfo.swift │ │ ├── UserFeedback │ │ │ ├── Configuration │ │ │ │ ├── SentryUserFeedbackConfiguration.swift │ │ │ │ ├── SentryUserFeedbackFormConfiguration.swift │ │ │ │ ├── SentryUserFeedbackThemeConfiguration.swift │ │ │ │ └── SentryUserFeedbackWidgetConfiguration.swift │ │ │ ├── SentryFeedback.swift │ │ │ ├── SentryUserFeedback.swift │ │ │ ├── SentryUserFeedbackFormController.swift │ │ │ ├── SentryUserFeedbackFormViewModel.swift │ │ │ ├── SentryUserFeedbackIntegrationDriver.swift │ │ │ ├── SentryUserFeedbackWidget.swift │ │ │ ├── SentryUserFeedbackWidgetButtonMegaphoneIconView.swift │ │ │ └── SentryUserFeedbackWidgetButtonView.swift │ │ └── WatchdogTerminations │ │ │ └── Processors │ │ │ └── SentryWatchdogTerminationAttributesProcessor.swift │ │ ├── Persistence │ │ ├── SentryScopePersistentStore+Context.swift │ │ ├── SentryScopePersistentStore+Extras.swift │ │ ├── SentryScopePersistentStore+Fingerprint.swift │ │ ├── SentryScopePersistentStore+Helper.swift │ │ ├── SentryScopePersistentStore+String.swift │ │ ├── SentryScopePersistentStore+Tags.swift │ │ ├── SentryScopePersistentStore+User.swift │ │ └── SentryScopePersistentStore.swift │ │ ├── Protocol │ │ ├── Codable │ │ │ ├── DecodeArbitraryData.swift │ │ │ ├── NSNumberDecodableWrapper.swift │ │ │ ├── SentryBreadcrumbCodable.swift │ │ │ ├── SentryCodable.swift │ │ │ ├── SentryDebugMetaCodable.swift │ │ │ ├── SentryEventCodable.swift │ │ │ ├── SentryEventDecoder.swift │ │ │ ├── SentryExceptionCodable.swift │ │ │ ├── SentryFrameCodable.swift │ │ │ ├── SentryGeoCodable.swift │ │ │ ├── SentryMechanismCodable.swift │ │ │ ├── SentryMechanismMetaCodable.swift │ │ │ ├── SentryMessage.swift │ │ │ ├── SentryNSErrorCodable.swift │ │ │ ├── SentryRequestCodable.swift │ │ │ ├── SentryStacktraceCodable.swift │ │ │ ├── SentryThreadCodable.swift │ │ │ └── SentryUserCodable.swift │ │ ├── SentryFileManagerProtocol.swift │ │ ├── SentryLog.swift │ │ ├── SentryLogAttribute.swift │ │ ├── SentryLogLevel.swift │ │ ├── SentryLogMessage.swift │ │ └── SentrySDKSettings.swift │ │ ├── SentryAppState.swift │ │ ├── SentryCrash │ │ ├── SentryCrashWrapper.swift │ │ └── SentryFrameRemover.swift │ │ ├── SentryExperimentalOptions.swift │ │ ├── SentrySession.swift │ │ ├── Tools │ │ ├── LoadValidator.swift │ │ ├── SentryClientReport.swift │ │ ├── SentryDiscardedEvent.swift │ │ ├── SentryEnvelope.swift │ │ ├── SentryEnvelopeHeader.swift │ │ ├── SentryEnvelopeItem.swift │ │ ├── SentryLogBatcher.swift │ │ ├── SentryLogger.swift │ │ ├── SentrySDKLog+Configure.swift │ │ ├── SentryURLRequestFactory.swift │ │ └── SentryViewHierarchyProvider.swift │ │ └── Transaction │ │ └── SentryMeasurementValue.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 │ ├── CocoaAsyncSocket │ ├── CocoaAsyncSocket-dummy.m │ ├── CocoaAsyncSocket-prefix.pch │ ├── CocoaAsyncSocket.debug.xcconfig │ └── CocoaAsyncSocket.release.xcconfig │ ├── CocoaHTTPServer │ ├── CocoaHTTPServer-dummy.m │ ├── CocoaHTTPServer-prefix.pch │ ├── CocoaHTTPServer.debug.xcconfig │ └── CocoaHTTPServer.release.xcconfig │ ├── CocoaLumberjack │ ├── CocoaLumberjack-dummy.m │ ├── CocoaLumberjack-prefix.pch │ ├── CocoaLumberjack.debug.xcconfig │ ├── CocoaLumberjack.release.xcconfig │ └── ResourceBundle-CocoaLumberjackPrivacy-CocoaLumberjack-Info.plist │ ├── MIKMIDI │ ├── MIKMIDI-dummy.m │ ├── MIKMIDI-prefix.pch │ ├── MIKMIDI.debug.xcconfig │ └── MIKMIDI.release.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 │ ├── SocketRocket │ ├── SocketRocket-dummy.m │ ├── SocketRocket-prefix.pch │ ├── SocketRocket.debug.xcconfig │ └── SocketRocket.release.xcconfig │ └── Sparkle │ ├── Sparkle.debug.xcconfig │ └── Sparkle.release.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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/.editorconfig -------------------------------------------------------------------------------- /.fauxpas/extension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/.fauxpas/extension.json -------------------------------------------------------------------------------- /.flake8rc: -------------------------------------------------------------------------------- 1 | [flake8] 2 | ignore = E501 3 | -------------------------------------------------------------------------------- /.github/workflows/ci_nightly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/.github/workflows/ci_nightly.yml -------------------------------------------------------------------------------- /.github/workflows/new_tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/.github/workflows/new_tag.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/.gitignore -------------------------------------------------------------------------------- /.luacheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/.luacheckrc -------------------------------------------------------------------------------- /.stickler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/.stickler.yml -------------------------------------------------------------------------------- /.syntastic_objc_config: -------------------------------------------------------------------------------- 1 | syntastic_objc_include_dirs = ["LuaSkin"] 2 | -------------------------------------------------------------------------------- /Brewfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Brewfile -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/CREDITS.md -------------------------------------------------------------------------------- /Hammerspoon Tests/HSTestCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon Tests/HSTestCase.h -------------------------------------------------------------------------------- /Hammerspoon Tests/HSTestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon Tests/HSTestCase.m -------------------------------------------------------------------------------- /Hammerspoon Tests/HSalert.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon Tests/HSalert.m -------------------------------------------------------------------------------- /Hammerspoon Tests/HSappfinder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon Tests/HSappfinder.m -------------------------------------------------------------------------------- /Hammerspoon Tests/HSbase64.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon Tests/HSbase64.m -------------------------------------------------------------------------------- /Hammerspoon Tests/HSbrightness.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon Tests/HSbrightness.m -------------------------------------------------------------------------------- /Hammerspoon Tests/HScoresetup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon Tests/HScoresetup.m -------------------------------------------------------------------------------- /Hammerspoon Tests/HScrash.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon Tests/HScrash.m -------------------------------------------------------------------------------- /Hammerspoon Tests/HSfs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon Tests/HSfs.m -------------------------------------------------------------------------------- /Hammerspoon Tests/HShotkey.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon Tests/HShotkey.m -------------------------------------------------------------------------------- /Hammerspoon Tests/HShttp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon Tests/HShttp.m -------------------------------------------------------------------------------- /Hammerspoon Tests/HSimage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon Tests/HSimage.m -------------------------------------------------------------------------------- /Hammerspoon Tests/HSinspect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon Tests/HSinspect.m -------------------------------------------------------------------------------- /Hammerspoon Tests/HSjsonTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon Tests/HSjsonTests.m -------------------------------------------------------------------------------- /Hammerspoon Tests/HSmath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon Tests/HSmath.m -------------------------------------------------------------------------------- /Hammerspoon Tests/HSmouse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon Tests/HSmouse.m -------------------------------------------------------------------------------- /Hammerspoon Tests/HSnoises.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon Tests/HSnoises.m -------------------------------------------------------------------------------- /Hammerspoon Tests/HSosascript.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon Tests/HSosascript.m -------------------------------------------------------------------------------- /Hammerspoon Tests/HSscreen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon Tests/HSscreen.m -------------------------------------------------------------------------------- /Hammerspoon Tests/HSserial.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon Tests/HSserial.m -------------------------------------------------------------------------------- /Hammerspoon Tests/HSsocket.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon Tests/HSsocket.m -------------------------------------------------------------------------------- /Hammerspoon Tests/HStask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon Tests/HStask.m -------------------------------------------------------------------------------- /Hammerspoon Tests/HStimer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon Tests/HStimer.m -------------------------------------------------------------------------------- /Hammerspoon Tests/HSuielement.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon Tests/HSuielement.m -------------------------------------------------------------------------------- /Hammerspoon Tests/HSwebsocket.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon Tests/HSwebsocket.m -------------------------------------------------------------------------------- /Hammerspoon Tests/HSwindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon Tests/HSwindow.m -------------------------------------------------------------------------------- /Hammerspoon Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon Tests/Info.plist -------------------------------------------------------------------------------- /Hammerspoon Tests/testinit.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon Tests/testinit.lua -------------------------------------------------------------------------------- /Hammerspoon/ConsoleWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon/ConsoleWindow.xib -------------------------------------------------------------------------------- /Hammerspoon/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon/Credits.rtf -------------------------------------------------------------------------------- /Hammerspoon/HSAppleScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon/HSAppleScript.h -------------------------------------------------------------------------------- /Hammerspoon/HSAppleScript.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon/HSAppleScript.m -------------------------------------------------------------------------------- /Hammerspoon/HSGrowingTextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon/HSGrowingTextField.h -------------------------------------------------------------------------------- /Hammerspoon/HSGrowingTextField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon/HSGrowingTextField.m -------------------------------------------------------------------------------- /Hammerspoon/HSLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon/HSLogger.h -------------------------------------------------------------------------------- /Hammerspoon/HSLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon/HSLogger.m -------------------------------------------------------------------------------- /Hammerspoon/HSuicore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon/HSuicore.h -------------------------------------------------------------------------------- /Hammerspoon/HSuicore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon/HSuicore.m -------------------------------------------------------------------------------- /Hammerspoon/Hammerspoon.sdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon/Hammerspoon.sdef -------------------------------------------------------------------------------- /Hammerspoon/MJAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon/MJAppDelegate.h -------------------------------------------------------------------------------- /Hammerspoon/MJAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon/MJAppDelegate.m -------------------------------------------------------------------------------- /Hammerspoon/MJAutoLaunch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon/MJAutoLaunch.h -------------------------------------------------------------------------------- /Hammerspoon/MJAutoLaunch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon/MJAutoLaunch.m -------------------------------------------------------------------------------- /Hammerspoon/MJConfigUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon/MJConfigUtils.h -------------------------------------------------------------------------------- /Hammerspoon/MJConfigUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon/MJConfigUtils.m -------------------------------------------------------------------------------- /Hammerspoon/MJDockIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon/MJDockIcon.h -------------------------------------------------------------------------------- /Hammerspoon/MJDockIcon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon/MJDockIcon.m -------------------------------------------------------------------------------- /Hammerspoon/MJFileUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon/MJFileUtils.h -------------------------------------------------------------------------------- /Hammerspoon/MJFileUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon/MJFileUtils.m -------------------------------------------------------------------------------- /Hammerspoon/MJLua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon/MJLua.h -------------------------------------------------------------------------------- /Hammerspoon/MJLua.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon/MJLua.m -------------------------------------------------------------------------------- /Hammerspoon/MJMenuIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon/MJMenuIcon.h -------------------------------------------------------------------------------- /Hammerspoon/MJMenuIcon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon/MJMenuIcon.m -------------------------------------------------------------------------------- /Hammerspoon/MJVersionUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon/MJVersionUtils.h -------------------------------------------------------------------------------- /Hammerspoon/MJVersionUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon/MJVersionUtils.m -------------------------------------------------------------------------------- /Hammerspoon/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon/MainMenu.xib -------------------------------------------------------------------------------- /Hammerspoon/Spoon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon/Spoon.icns -------------------------------------------------------------------------------- /Hammerspoon/setup.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon/setup.lua -------------------------------------------------------------------------------- /Hammerspoon/statusicon.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon/statusicon.pdf -------------------------------------------------------------------------------- /Hammerspoon/variables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon/variables.h -------------------------------------------------------------------------------- /Hammerspoon/variables.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Hammerspoon/variables.m -------------------------------------------------------------------------------- /HammerspoonUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/HammerspoonUITests/Info.plist -------------------------------------------------------------------------------- /HammerspoonUITests/init.lua: -------------------------------------------------------------------------------- 1 | print("NOOP UI Tests init.lua") -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LICENSE -------------------------------------------------------------------------------- /LuaSkin/LuaSkin-Base.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/LuaSkin-Base.xcconfig -------------------------------------------------------------------------------- /LuaSkin/LuaSkin-Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/LuaSkin-Release.xcconfig -------------------------------------------------------------------------------- /LuaSkin/LuaSkin/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/LuaSkin/Info.plist -------------------------------------------------------------------------------- /LuaSkin/LuaSkin/LuaSkin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/LuaSkin/LuaSkin.h -------------------------------------------------------------------------------- /LuaSkin/LuaSkin/Skin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/LuaSkin/Skin.h -------------------------------------------------------------------------------- /LuaSkin/LuaSkin/Skin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/LuaSkin/Skin.m -------------------------------------------------------------------------------- /LuaSkin/LuaSkin/luaskin.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/LuaSkin/luaskin.lua -------------------------------------------------------------------------------- /LuaSkin/LuaSkin/luaskin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/LuaSkin/luaskin.m -------------------------------------------------------------------------------- /LuaSkin/LuaSkinTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/LuaSkinTests/Info.plist -------------------------------------------------------------------------------- /LuaSkin/LuaSkinTests/lsunit.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/LuaSkinTests/lsunit.lua -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/Makefile -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/README -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/doc/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/doc/index.css -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/doc/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/doc/logo.gif -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/doc/lua.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/doc/lua.1 -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/doc/lua.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/doc/lua.css -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/doc/luac.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/doc/luac.1 -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/doc/manual.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/doc/manual.css -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/Makefile -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/lapi.c -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/lapi.h -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/lauxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/lauxlib.c -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/lauxlib.h -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/lbaselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/lbaselib.c -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/lcode.c -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/lcode.h -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/lcorolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/lcorolib.c -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/lctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/lctype.c -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/lctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/lctype.h -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/ldblib.c -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/ldebug.c -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/ldebug.h -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/ldo.c -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/ldo.h -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/ldump.c -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/lfunc.c -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/lfunc.h -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/lgc.c -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/lgc.h -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/linit.c -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/liolib.c -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/ljumptab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/ljumptab.h -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/llex.c -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/llex.h -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/llimits.h -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/lmathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/lmathlib.c -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/lmem.c -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/lmem.h -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/loadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/loadlib.c -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/lobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/lobject.c -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/lobject.h -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/lopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/lopcodes.c -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/lopcodes.h -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/lopnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/lopnames.h -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/loslib.c -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/lparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/lparser.c -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/lparser.h -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/lprefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/lprefix.h -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/lstate.c -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/lstate.h -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/lstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/lstring.c -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/lstring.h -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/lstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/lstrlib.c -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/ltable.c -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/ltable.h -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/ltablib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/ltablib.c -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/ltm.c -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/ltm.h -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/lua.c -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/lua.h -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/lua.hpp -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/luac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/luac.c -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/luaconf.h -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/lualib.h -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/lundump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/lundump.c -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/lundump.h -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/lutf8lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/lutf8lib.c -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/lvm.c -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/lvm.h -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/lzio.c -------------------------------------------------------------------------------- /LuaSkin/lua-5.4.7/src/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/LuaSkin/lua-5.4.7/src/lzio.h -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/ASCIImage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Pods/ASCIImage/LICENSE -------------------------------------------------------------------------------- /Pods/ASCIImage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Pods/ASCIImage/README.md -------------------------------------------------------------------------------- /Pods/CocoaHTTPServer/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Pods/CocoaHTTPServer/LICENSE.txt -------------------------------------------------------------------------------- /Pods/CocoaLumberjack/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Pods/CocoaLumberjack/LICENSE -------------------------------------------------------------------------------- /Pods/CocoaLumberjack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Pods/CocoaLumberjack/README.md -------------------------------------------------------------------------------- /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/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/PUTResponse.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaHTTPServer/Extensions/WebDAV/PUTResponse.h -------------------------------------------------------------------------------- /Pods/Headers/Private/CocoaHTTPServer/WebSocket.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaHTTPServer/Core/WebSocket.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/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.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/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/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/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/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/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/SentryANRTrackerV1.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryANRTrackerV1.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryANRTrackerV2.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryANRTrackerV2.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryAppStartTracker.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryAppStartTracker.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryAppStateManager.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryAppStateManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryArray.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryArray.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryAsyncLog.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/SentryAsyncLog.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryAsyncSafeLog.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/SentryAsyncSafeLog.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/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/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+Logs.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryClient+Logs.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/SentryCompiler.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryCompiler.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/SentryCrash.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryCrash.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/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/Sentry/include/SentryCrashDebug.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashDoctor.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/SentryCrashDoctor.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashDynamicLinker.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryCrashDynamicLinker.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashID.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashID.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/SentryCrashMach-O.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashMach-O.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashMach.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashMach.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashMemory.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashMemory.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashMonitor.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryCrashMonitor.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashMonitorType.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryCrashMonitorType.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashMonitor_System.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryCrashMonitor_System.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashObjC.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashObjC.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/SentryCrashReportFilter.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryCrashReportFilter.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/SentryCrashReportWriter.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryCrashReportWriter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashScopeObserver.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryCrashScopeObserver.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashString.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashString.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashSysCtl.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashSysCtl.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashThread.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryCrashThread.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashUUIDConversion.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryCrashUUIDConversion.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/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/SentryDevice.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryDevice.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/SentryDispatchFactory.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryDispatchFactory.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/SentryEnvelopeHeaderHelper.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryEnvelopeHeaderHelper.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryEnvelopeItemHeader.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryEnvelopeItemHeader.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+Serialize.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryEvent+Serialize.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryEvent.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryEventSwiftHelper.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryEventSwiftHelper.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/SentryFeedbackAPI.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryFeedbackAPI.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryFileIOTracker.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryFileIOTracker.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/SentryFramesTracker.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/HybridPublic/SentryFramesTracker.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryGeo.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryGeo.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryHttpDateParser.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryHttpDateParser.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/SentryInstallation.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryInstallation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryIntegrationProtocol.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryIntegrationProtocol.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/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/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/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/SentryModels+Serializable.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryModels+Serializable.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/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/SentryNSURLRequestBuilder.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryNSURLRequestBuilder.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryNetworkTracker.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryNetworkTracker.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryNoOpSpan.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryNoOpSpan.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryNotificationNames.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryNotificationNames.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/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/SentryProfileCollector.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/SentryProfileCollector.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryProfileConfiguration.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryProfileConfiguration.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryProfileTimeseries.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryProfileTimeseries.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/include/SentryProfilerDefines.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/SentryPropagationContext.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/SentryPropagationContext.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/SentryReplayApi.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryReplayApi.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/SentrySDK+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentrySDK+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySDKInternal.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentrySDKInternal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySample.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentrySample.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+PrivateSwift.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryScope+PrivateSwift.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/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/SentrySessionInternal.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentrySessionInternal.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/SentrySpanDataKey.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentrySpanDataKey.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySpanId.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentrySpanId.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySpanOperation.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentrySpanOperation.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/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/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/SentrySysctlObjC.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentrySysctlObjC.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySystemWrapper.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentrySystemWrapper.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryThread+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryThread+Private.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/SentryThreadState.hpp: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryThreadState.hpp -------------------------------------------------------------------------------- /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/SentryTraceOrigin.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryTraceOrigin.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.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/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/SentryUncaughtNSExceptions.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryUncaughtNSExceptions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryUser+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/HybridPublic/SentryUser+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryUser+Serialize.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryUser+Serialize.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryUser.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryUser.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryUserAccess.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryUserAccess.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryWeakMap.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryWeakMap.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/NSURLRequest+SRWebSocket.h: -------------------------------------------------------------------------------- 1 | ../../../SocketRocket/SocketRocket/NSURLRequest+SRWebSocket.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SocketRocket/SRConstants.h: -------------------------------------------------------------------------------- 1 | ../../../SocketRocket/SocketRocket/Internal/SRConstants.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SocketRocket/SRError.h: -------------------------------------------------------------------------------- 1 | ../../../SocketRocket/SocketRocket/Internal/Utilities/SRError.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/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/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/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/PUTResponse.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaHTTPServer/Extensions/WebDAV/PUTResponse.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaHTTPServer/WebSocket.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaHTTPServer/Core/WebSocket.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaLumberjack/DDLog.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Sources/CocoaLumberjack/include/CocoaLumberjack/DDLog.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/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.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/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/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/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/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/SentryFeedbackAPI.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryFeedbackAPI.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/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/SentryReplayApi.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryReplayApi.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryRequest.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryRequest.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/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/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/MIKMIDI/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Pods/MIKMIDI/LICENSE -------------------------------------------------------------------------------- /Pods/MIKMIDI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Pods/MIKMIDI/README.md -------------------------------------------------------------------------------- /Pods/MIKMIDI/Source/MIKMIDI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Pods/MIKMIDI/Source/MIKMIDI.h -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/ORSSerialPort/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Pods/ORSSerialPort/LICENSE -------------------------------------------------------------------------------- /Pods/ORSSerialPort/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Pods/ORSSerialPort/README.md -------------------------------------------------------------------------------- /Pods/PocketSocket/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Pods/PocketSocket/LICENSE -------------------------------------------------------------------------------- /Pods/PocketSocket/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Pods/PocketSocket/README.md -------------------------------------------------------------------------------- /Pods/Sentry/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Pods/Sentry/LICENSE.md -------------------------------------------------------------------------------- /Pods/Sentry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Pods/Sentry/README.md -------------------------------------------------------------------------------- /Pods/SocketRocket/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Pods/SocketRocket/LICENSE -------------------------------------------------------------------------------- /Pods/SocketRocket/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Pods/SocketRocket/README.md -------------------------------------------------------------------------------- /Pods/Sparkle/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Pods/Sparkle/LICENSE -------------------------------------------------------------------------------- /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/Updater.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /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/HEAD/Pods/Sparkle/bin/BinaryDelta -------------------------------------------------------------------------------- /Pods/Sparkle/bin/sign_update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/Pods/Sparkle/bin/sign_update -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/README.md -------------------------------------------------------------------------------- /SPOONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/SPOONS.md -------------------------------------------------------------------------------- /appcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/appcast.xml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/codecov.yml -------------------------------------------------------------------------------- /extensions/alert/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/alert/LICENSE -------------------------------------------------------------------------------- /extensions/alert/alert.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/alert/alert.lua -------------------------------------------------------------------------------- /extensions/appfinder/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/appfinder/LICENSE -------------------------------------------------------------------------------- /extensions/base64/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/base64/LICENSE -------------------------------------------------------------------------------- /extensions/base64/base64.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/base64/base64.lua -------------------------------------------------------------------------------- /extensions/base64/libbase64.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/base64/libbase64.m -------------------------------------------------------------------------------- /extensions/battery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/battery/LICENSE -------------------------------------------------------------------------------- /extensions/brightness/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/brightness/LICENSE -------------------------------------------------------------------------------- /extensions/caffeinate/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/caffeinate/LICENSE -------------------------------------------------------------------------------- /extensions/camera/camera.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/camera/camera.lua -------------------------------------------------------------------------------- /extensions/camera/libcamera.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/camera/libcamera.m -------------------------------------------------------------------------------- /extensions/canvas/Canvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/canvas/Canvas.h -------------------------------------------------------------------------------- /extensions/canvas/canvas.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/canvas/canvas.lua -------------------------------------------------------------------------------- /extensions/canvas/libcanvas.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/canvas/libcanvas.m -------------------------------------------------------------------------------- /extensions/chooser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/chooser/LICENSE -------------------------------------------------------------------------------- /extensions/chooser/chooser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/chooser/chooser.h -------------------------------------------------------------------------------- /extensions/crash/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/crash/LICENSE -------------------------------------------------------------------------------- /extensions/crash/crash.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/crash/crash.lua -------------------------------------------------------------------------------- /extensions/crash/libcrash.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/crash/libcrash.m -------------------------------------------------------------------------------- /extensions/deezer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/deezer/LICENSE -------------------------------------------------------------------------------- /extensions/deezer/deezer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/deezer/deezer.lua -------------------------------------------------------------------------------- /extensions/dialog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/dialog/LICENSE -------------------------------------------------------------------------------- /extensions/dialog/dialog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/dialog/dialog.lua -------------------------------------------------------------------------------- /extensions/dialog/libdialog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/dialog/libdialog.m -------------------------------------------------------------------------------- /extensions/doc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/doc/LICENSE -------------------------------------------------------------------------------- /extensions/doc/autolink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/doc/autolink.c -------------------------------------------------------------------------------- /extensions/doc/autolink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/doc/autolink.h -------------------------------------------------------------------------------- /extensions/doc/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/doc/buffer.c -------------------------------------------------------------------------------- /extensions/doc/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/doc/buffer.h -------------------------------------------------------------------------------- /extensions/doc/doc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/doc/doc.lua -------------------------------------------------------------------------------- /extensions/doc/houdini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/doc/houdini.h -------------------------------------------------------------------------------- /extensions/doc/hsdocs/form.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/doc/hsdocs/form.lp -------------------------------------------------------------------------------- /extensions/doc/hsdocs/gfm.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/doc/hsdocs/gfm.lp -------------------------------------------------------------------------------- /extensions/doc/html.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/doc/html.c -------------------------------------------------------------------------------- /extensions/doc/html.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/doc/html.h -------------------------------------------------------------------------------- /extensions/doc/html_blocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/doc/html_blocks.h -------------------------------------------------------------------------------- /extensions/doc/libdoc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/doc/libdoc.m -------------------------------------------------------------------------------- /extensions/doc/lua.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/doc/lua.json -------------------------------------------------------------------------------- /extensions/doc/markdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/doc/markdown.c -------------------------------------------------------------------------------- /extensions/doc/markdown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/doc/markdown.h -------------------------------------------------------------------------------- /extensions/doc/markdown.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/doc/markdown.m -------------------------------------------------------------------------------- /extensions/doc/plaintext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/doc/plaintext.c -------------------------------------------------------------------------------- /extensions/doc/plaintext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/doc/plaintext.h -------------------------------------------------------------------------------- /extensions/doc/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/doc/stack.c -------------------------------------------------------------------------------- /extensions/doc/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/doc/stack.h -------------------------------------------------------------------------------- /extensions/dockicon/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/dockicon/LICENSE -------------------------------------------------------------------------------- /extensions/drawing/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/drawing/LICENSE -------------------------------------------------------------------------------- /extensions/expose/expose.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/expose/expose.lua -------------------------------------------------------------------------------- /extensions/fnutils/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/fnutils/LICENSE -------------------------------------------------------------------------------- /extensions/fs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/fs/LICENSE -------------------------------------------------------------------------------- /extensions/fs/fs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/fs/fs.lua -------------------------------------------------------------------------------- /extensions/fs/lfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/fs/lfs.h -------------------------------------------------------------------------------- /extensions/fs/libfs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/fs/libfs.m -------------------------------------------------------------------------------- /extensions/fs/libfs_volume.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/fs/libfs_volume.m -------------------------------------------------------------------------------- /extensions/fs/libfs_xattr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/fs/libfs_xattr.m -------------------------------------------------------------------------------- /extensions/fs/test_fs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/fs/test_fs.lua -------------------------------------------------------------------------------- /extensions/geometry/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/geometry/LICENSE -------------------------------------------------------------------------------- /extensions/grid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/grid/LICENSE -------------------------------------------------------------------------------- /extensions/grid/grid.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/grid/grid.lua -------------------------------------------------------------------------------- /extensions/hash/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/hash/LICENSE -------------------------------------------------------------------------------- /extensions/hash/algorithms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/hash/algorithms.h -------------------------------------------------------------------------------- /extensions/hash/algorithms.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/hash/algorithms.m -------------------------------------------------------------------------------- /extensions/hash/byte_order.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/hash/byte_order.h -------------------------------------------------------------------------------- /extensions/hash/hash.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/hash/hash.lua -------------------------------------------------------------------------------- /extensions/hash/libhash.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/hash/libhash.m -------------------------------------------------------------------------------- /extensions/hash/sha3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/hash/sha3.h -------------------------------------------------------------------------------- /extensions/hash/sha3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/hash/sha3.m -------------------------------------------------------------------------------- /extensions/hid/hid.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/hid/hid.lua -------------------------------------------------------------------------------- /extensions/hid/led.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/hid/led.m -------------------------------------------------------------------------------- /extensions/hid/libhid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/hid/libhid.m -------------------------------------------------------------------------------- /extensions/hints/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/hints/LICENSE -------------------------------------------------------------------------------- /extensions/hints/hints.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/hints/hints.lua -------------------------------------------------------------------------------- /extensions/hints/internal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/hints/internal.m -------------------------------------------------------------------------------- /extensions/host/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/host/LICENSE -------------------------------------------------------------------------------- /extensions/host/host.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/host/host.lua -------------------------------------------------------------------------------- /extensions/host/libhost.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/host/libhost.m -------------------------------------------------------------------------------- /extensions/hotkey/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/hotkey/LICENSE -------------------------------------------------------------------------------- /extensions/hotkey/hotkey.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/hotkey/hotkey.lua -------------------------------------------------------------------------------- /extensions/hotkey/libhotkey.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/hotkey/libhotkey.m -------------------------------------------------------------------------------- /extensions/http/http.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/http/http.lua -------------------------------------------------------------------------------- /extensions/http/libhttp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/http/libhttp.m -------------------------------------------------------------------------------- /extensions/http/test_http.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/http/test_http.lua -------------------------------------------------------------------------------- /extensions/httpserver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/httpserver/LICENSE -------------------------------------------------------------------------------- /extensions/image/image.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/image/image.lua -------------------------------------------------------------------------------- /extensions/image/libimage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/image/libimage.m -------------------------------------------------------------------------------- /extensions/inspect/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/inspect/LICENSE -------------------------------------------------------------------------------- /extensions/ipc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/ipc/LICENSE -------------------------------------------------------------------------------- /extensions/ipc/cli/hs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/ipc/cli/hs.m -------------------------------------------------------------------------------- /extensions/ipc/cli/hs.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/ipc/cli/hs.man -------------------------------------------------------------------------------- /extensions/ipc/ipc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/ipc/ipc.lua -------------------------------------------------------------------------------- /extensions/ipc/libipc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/ipc/libipc.m -------------------------------------------------------------------------------- /extensions/itunes/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/itunes/LICENSE -------------------------------------------------------------------------------- /extensions/itunes/itunes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/itunes/itunes.lua -------------------------------------------------------------------------------- /extensions/javascript/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/javascript/LICENSE -------------------------------------------------------------------------------- /extensions/json/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/json/LICENSE -------------------------------------------------------------------------------- /extensions/json/json.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/json/json.lua -------------------------------------------------------------------------------- /extensions/json/libjson.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/json/libjson.m -------------------------------------------------------------------------------- /extensions/json/test_json.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/json/test_json.lua -------------------------------------------------------------------------------- /extensions/keycodes/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/keycodes/LICENSE -------------------------------------------------------------------------------- /extensions/layout/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/layout/LICENSE -------------------------------------------------------------------------------- /extensions/layout/layout.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/layout/layout.lua -------------------------------------------------------------------------------- /extensions/location/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/location/LICENSE -------------------------------------------------------------------------------- /extensions/logger/logger.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/logger/logger.lua -------------------------------------------------------------------------------- /extensions/math/libmath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/math/libmath.m -------------------------------------------------------------------------------- /extensions/math/math.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/math/math.lua -------------------------------------------------------------------------------- /extensions/math/test_math.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/math/test_math.lua -------------------------------------------------------------------------------- /extensions/menubar/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/menubar/LICENSE -------------------------------------------------------------------------------- /extensions/messages/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/messages/LICENSE -------------------------------------------------------------------------------- /extensions/midi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/midi/LICENSE -------------------------------------------------------------------------------- /extensions/midi/libmidi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/midi/libmidi.m -------------------------------------------------------------------------------- /extensions/midi/midi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/midi/midi.lua -------------------------------------------------------------------------------- /extensions/milight/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/milight/LICENSE -------------------------------------------------------------------------------- /extensions/mjomatic/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/mjomatic/LICENSE -------------------------------------------------------------------------------- /extensions/mouse/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/mouse/LICENSE -------------------------------------------------------------------------------- /extensions/mouse/libmouse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/mouse/libmouse.m -------------------------------------------------------------------------------- /extensions/mouse/mouse.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/mouse/mouse.lua -------------------------------------------------------------------------------- /extensions/noises/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/noises/LICENSE -------------------------------------------------------------------------------- /extensions/noises/detectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/noises/detectors.h -------------------------------------------------------------------------------- /extensions/noises/libnoises.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/noises/libnoises.m -------------------------------------------------------------------------------- /extensions/noises/noises.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/noises/noises.lua -------------------------------------------------------------------------------- /extensions/notify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/notify/LICENSE -------------------------------------------------------------------------------- /extensions/notify/libnotify.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/notify/libnotify.m -------------------------------------------------------------------------------- /extensions/notify/notify.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/notify/notify.lua -------------------------------------------------------------------------------- /extensions/osascript/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/osascript/LICENSE -------------------------------------------------------------------------------- /extensions/pasteboard/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/pasteboard/LICENSE -------------------------------------------------------------------------------- /extensions/plist/libplist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/plist/libplist.m -------------------------------------------------------------------------------- /extensions/plist/plist.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/plist/plist.lua -------------------------------------------------------------------------------- /extensions/razer/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/razer/LICENSE.md -------------------------------------------------------------------------------- /extensions/razer/librazer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/razer/librazer.m -------------------------------------------------------------------------------- /extensions/razer/razer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/razer/razer.h -------------------------------------------------------------------------------- /extensions/razer/razer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/razer/razer.lua -------------------------------------------------------------------------------- /extensions/screen/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/screen/LICENSE -------------------------------------------------------------------------------- /extensions/screen/libscreen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/screen/libscreen.m -------------------------------------------------------------------------------- /extensions/screen/screen.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/screen/screen.lua -------------------------------------------------------------------------------- /extensions/serial/libserial.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/serial/libserial.m -------------------------------------------------------------------------------- /extensions/serial/serial.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/serial/serial.lua -------------------------------------------------------------------------------- /extensions/settings/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/settings/LICENSE -------------------------------------------------------------------------------- /extensions/socket/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/socket/LICENSE -------------------------------------------------------------------------------- /extensions/socket/libsocket.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/socket/libsocket.m -------------------------------------------------------------------------------- /extensions/socket/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/socket/socket.h -------------------------------------------------------------------------------- /extensions/socket/socket.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/socket/socket.lua -------------------------------------------------------------------------------- /extensions/sound/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/sound/LICENSE -------------------------------------------------------------------------------- /extensions/sound/libsound.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/sound/libsound.m -------------------------------------------------------------------------------- /extensions/sound/sound.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/sound/sound.lua -------------------------------------------------------------------------------- /extensions/spaces/libspaces.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/spaces/libspaces.m -------------------------------------------------------------------------------- /extensions/spaces/private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/spaces/private.h -------------------------------------------------------------------------------- /extensions/spaces/spaces.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/spaces/spaces.lua -------------------------------------------------------------------------------- /extensions/speech/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/speech/LICENSE -------------------------------------------------------------------------------- /extensions/speech/libspeech.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/speech/libspeech.m -------------------------------------------------------------------------------- /extensions/speech/speech.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/speech/speech.lua -------------------------------------------------------------------------------- /extensions/spoons/spoons.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/spoons/spoons.lua -------------------------------------------------------------------------------- /extensions/spotify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/spotify/LICENSE -------------------------------------------------------------------------------- /extensions/sqlite3/lsqlite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/sqlite3/lsqlite3.c -------------------------------------------------------------------------------- /extensions/streamdeck/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/streamdeck/LICENSE -------------------------------------------------------------------------------- /extensions/tabs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/tabs/LICENSE -------------------------------------------------------------------------------- /extensions/tabs/tabs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/tabs/tabs.lua -------------------------------------------------------------------------------- /extensions/tangent/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/tangent/LICENSE -------------------------------------------------------------------------------- /extensions/task/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/task/LICENSE -------------------------------------------------------------------------------- /extensions/task/libtask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/task/libtask.m -------------------------------------------------------------------------------- /extensions/task/task.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/task/task.lua -------------------------------------------------------------------------------- /extensions/task/test_task.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/task/test_task.lua -------------------------------------------------------------------------------- /extensions/timer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/timer/LICENSE -------------------------------------------------------------------------------- /extensions/timer/libtimer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/timer/libtimer.m -------------------------------------------------------------------------------- /extensions/timer/timer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/timer/timer.lua -------------------------------------------------------------------------------- /extensions/uielement/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/uielement/LICENSE -------------------------------------------------------------------------------- /extensions/urlevent/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/urlevent/LICENSE -------------------------------------------------------------------------------- /extensions/usb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/usb/LICENSE -------------------------------------------------------------------------------- /extensions/usb/libusb.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/usb/libusb.m -------------------------------------------------------------------------------- /extensions/usb/usb.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/usb/usb.lua -------------------------------------------------------------------------------- /extensions/utf8/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/utf8/LICENSE -------------------------------------------------------------------------------- /extensions/utf8/utf8.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/utf8/utf8.lua -------------------------------------------------------------------------------- /extensions/vox/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/vox/LICENSE -------------------------------------------------------------------------------- /extensions/vox/vox.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/vox/vox.lua -------------------------------------------------------------------------------- /extensions/webview/webview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/webview/webview.h -------------------------------------------------------------------------------- /extensions/wifi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/wifi/LICENSE -------------------------------------------------------------------------------- /extensions/wifi/libwifi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/wifi/libwifi.m -------------------------------------------------------------------------------- /extensions/wifi/wifi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/wifi/wifi.lua -------------------------------------------------------------------------------- /extensions/window/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/window/LICENSE -------------------------------------------------------------------------------- /extensions/window/libwindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/window/libwindow.m -------------------------------------------------------------------------------- /extensions/window/window.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/extensions/window/window.lua -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/scripts/docs/README.md -------------------------------------------------------------------------------- /scripts/docs/bin/download: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/scripts/docs/bin/download -------------------------------------------------------------------------------- /scripts/docs/templates/Hammerspoon.docset/Contents/Resources/Documents/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/github-ci-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/scripts/github-ci-docs.sh -------------------------------------------------------------------------------- /scripts/github-ci-pre.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/scripts/github-ci-pre.sh -------------------------------------------------------------------------------- /scripts/github-ci-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/scripts/github-ci-test.sh -------------------------------------------------------------------------------- /scripts/libbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/scripts/libbuild.sh -------------------------------------------------------------------------------- /scripts/rebuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/scripts/rebuild.sh -------------------------------------------------------------------------------- /scripts/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/scripts/release.sh -------------------------------------------------------------------------------- /scripts/sentry-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hammerspoon/hammerspoon/HEAD/scripts/sentry-cli --------------------------------------------------------------------------------