├── .gitignore ├── .gitmodules ├── RichTextBlockInlineDecorator ├── Resources │ └── Icon128.png ├── RichTextBlockInlineDecorator.uplugin └── Source │ └── RichTextBlockInlineDecorator │ ├── Private │ ├── RichTextBlockInlineDecorator.cpp │ └── RichTextBlockInlineDecoratorModule.cpp │ ├── Public │ ├── RichTextBlockInlineDecorator.h │ └── RichTextBlockInlineDecoratorModule.h │ └── RichTextBlockInlineDecorator.Build.cs ├── Sentry ├── CHANGELOG.md ├── Config │ └── FilterPlugin.ini ├── Gradle │ └── gradle-wrapper.properties ├── LICENSE ├── Resources │ └── Icon128.png ├── Scripts │ ├── upload-debug-symbols-win.bat │ └── upload-debug-symbols.sh ├── Sentry.uplugin ├── Source │ ├── Sentry │ │ ├── Private │ │ │ ├── Android │ │ │ │ ├── Callbacks │ │ │ │ │ ├── SentryScopeCallbackAndroid.cpp │ │ │ │ │ └── SentryScopeCallbackAndroid.h │ │ │ │ ├── Infrastructure │ │ │ │ │ ├── SentryConvertorsAndroid.cpp │ │ │ │ │ ├── SentryConvertorsAndroid.h │ │ │ │ │ ├── SentryDataTypesAndroid.h │ │ │ │ │ ├── SentryJavaClasses.cpp │ │ │ │ │ ├── SentryJavaClasses.h │ │ │ │ │ ├── SentryJavaObjectWrapper.cpp │ │ │ │ │ └── SentryJavaObjectWrapper.h │ │ │ │ ├── Java │ │ │ │ │ └── SentryBridgeJava.java │ │ │ │ ├── Jni │ │ │ │ │ └── SentryJniAndroid.cpp │ │ │ │ ├── SentryAttachmentAndroid.cpp │ │ │ │ ├── SentryAttachmentAndroid.h │ │ │ │ ├── SentryBreadcrumbAndroid.cpp │ │ │ │ ├── SentryBreadcrumbAndroid.h │ │ │ │ ├── SentryEventAndroid.cpp │ │ │ │ ├── SentryEventAndroid.h │ │ │ │ ├── SentryHintAndroid.cpp │ │ │ │ ├── SentryHintAndroid.h │ │ │ │ ├── SentryIdAndroid.cpp │ │ │ │ ├── SentryIdAndroid.h │ │ │ │ ├── SentryMessageAndroid.cpp │ │ │ │ ├── SentryMessageAndroid.h │ │ │ │ ├── SentrySamplingContextAndroid.cpp │ │ │ │ ├── SentrySamplingContextAndroid.h │ │ │ │ ├── SentryScopeAndroid.cpp │ │ │ │ ├── SentryScopeAndroid.h │ │ │ │ ├── SentrySpanAndroid.cpp │ │ │ │ ├── SentrySpanAndroid.h │ │ │ │ ├── SentrySubsystemAndroid.cpp │ │ │ │ ├── SentrySubsystemAndroid.h │ │ │ │ ├── SentryTransactionAndroid.cpp │ │ │ │ ├── SentryTransactionAndroid.h │ │ │ │ ├── SentryTransactionContextAndroid.cpp │ │ │ │ ├── SentryTransactionContextAndroid.h │ │ │ │ ├── SentryTransactionOptionsAndroid.cpp │ │ │ │ ├── SentryTransactionOptionsAndroid.h │ │ │ │ ├── SentryUserAndroid.cpp │ │ │ │ ├── SentryUserAndroid.h │ │ │ │ ├── SentryUserFeedbackAndroid.cpp │ │ │ │ └── SentryUserFeedbackAndroid.h │ │ │ ├── Apple │ │ │ │ ├── Convenience │ │ │ │ │ ├── SentryInclude.h │ │ │ │ │ └── SentryMacro.h │ │ │ │ ├── Infrastructure │ │ │ │ │ ├── SentryConvertorsApple.cpp │ │ │ │ │ └── SentryConvertorsApple.h │ │ │ │ ├── SentryAttachmentApple.cpp │ │ │ │ ├── SentryAttachmentApple.h │ │ │ │ ├── SentryBreadcrumbApple.cpp │ │ │ │ ├── SentryBreadcrumbApple.h │ │ │ │ ├── SentryEventApple.cpp │ │ │ │ ├── SentryEventApple.h │ │ │ │ ├── SentryIdApple.cpp │ │ │ │ ├── SentryIdApple.h │ │ │ │ ├── SentrySamplingContextApple.cpp │ │ │ │ ├── SentrySamplingContextApple.h │ │ │ │ ├── SentryScopeApple.cpp │ │ │ │ ├── SentryScopeApple.h │ │ │ │ ├── SentrySpanApple.cpp │ │ │ │ ├── SentrySpanApple.h │ │ │ │ ├── SentrySubsystemApple.cpp │ │ │ │ ├── SentrySubsystemApple.h │ │ │ │ ├── SentryTransactionApple.cpp │ │ │ │ ├── SentryTransactionApple.h │ │ │ │ ├── SentryTransactionContextApple.cpp │ │ │ │ ├── SentryTransactionContextApple.h │ │ │ │ ├── SentryUserApple.cpp │ │ │ │ ├── SentryUserApple.h │ │ │ │ ├── SentryUserFeedbackApple.cpp │ │ │ │ └── SentryUserFeedbackApple.h │ │ │ ├── Desktop │ │ │ │ ├── Convenience │ │ │ │ │ └── SentryInclude.h │ │ │ │ ├── CrashReporter │ │ │ │ │ ├── SentryCrashContext.cpp │ │ │ │ │ ├── SentryCrashContext.h │ │ │ │ │ ├── SentryCrashReporter.cpp │ │ │ │ │ └── SentryCrashReporter.h │ │ │ │ ├── Infrastructure │ │ │ │ │ ├── SentryConvertorsDesktop.cpp │ │ │ │ │ └── SentryConvertorsDesktop.h │ │ │ │ ├── SentryBreadcrumbDesktop.cpp │ │ │ │ ├── SentryBreadcrumbDesktop.h │ │ │ │ ├── SentryEventDesktop.cpp │ │ │ │ ├── SentryEventDesktop.h │ │ │ │ ├── SentryIdDesktop.cpp │ │ │ │ ├── SentryIdDesktop.h │ │ │ │ ├── SentryScopeDesktop.cpp │ │ │ │ ├── SentryScopeDesktop.h │ │ │ │ ├── SentrySpanDesktop.cpp │ │ │ │ ├── SentrySpanDesktop.h │ │ │ │ ├── SentrySubsystemDesktop.cpp │ │ │ │ ├── SentrySubsystemDesktop.h │ │ │ │ ├── SentryTransactionContextDesktop.cpp │ │ │ │ ├── SentryTransactionContextDesktop.h │ │ │ │ ├── SentryTransactionDesktop.cpp │ │ │ │ ├── SentryTransactionDesktop.h │ │ │ │ ├── SentryUserDesktop.cpp │ │ │ │ ├── SentryUserDesktop.h │ │ │ │ ├── SentryUserFeedbackDesktop.cpp │ │ │ │ ├── SentryUserFeedbackDesktop.h │ │ │ │ └── Transport │ │ │ │ │ ├── SentryDsnUrl.cpp │ │ │ │ │ ├── SentryDsnUrl.h │ │ │ │ │ ├── SentryTransport.cpp │ │ │ │ │ └── SentryTransport.h │ │ │ ├── Interface │ │ │ │ ├── SentryAttachmentInterface.h │ │ │ │ ├── SentryBreadcrumbInterface.h │ │ │ │ ├── SentryEventInterface.h │ │ │ │ ├── SentryHintInterface.h │ │ │ │ ├── SentryIdInterface.h │ │ │ │ ├── SentrySamplingContextInterface.h │ │ │ │ ├── SentryScopeInterface.h │ │ │ │ ├── SentrySpanInterface.h │ │ │ │ ├── SentrySubsystemInterface.h │ │ │ │ ├── SentryTransactionContextInterface.h │ │ │ │ ├── SentryTransactionInterface.h │ │ │ │ ├── SentryUserFeedbackInterface.h │ │ │ │ └── SentryUserInterface.h │ │ │ ├── SentryAttachment.cpp │ │ │ ├── SentryBeforeSendHandler.cpp │ │ │ ├── SentryBreadcrumb.cpp │ │ │ ├── SentryDefines.h │ │ │ ├── SentryEvent.cpp │ │ │ ├── SentryHint.cpp │ │ │ ├── SentryId.cpp │ │ │ ├── SentryLibrary.cpp │ │ │ ├── SentryModule.cpp │ │ │ ├── SentryOutputDevice.cpp │ │ │ ├── SentryOutputDeviceError.cpp │ │ │ ├── SentrySamplingContext.cpp │ │ │ ├── SentryScope.cpp │ │ │ ├── SentrySettings.cpp │ │ │ ├── SentrySpan.cpp │ │ │ ├── SentrySubsystem.cpp │ │ │ ├── SentryTraceSampler.cpp │ │ │ ├── SentryTransaction.cpp │ │ │ ├── SentryTransactionContext.cpp │ │ │ ├── SentryUser.cpp │ │ │ ├── SentryUserFeedback.cpp │ │ │ ├── Tests │ │ │ │ ├── SentryBreadcrumb.spec.cpp │ │ │ │ ├── SentryEvent.spec.cpp │ │ │ │ ├── SentryScope.spec.cpp │ │ │ │ ├── SentrySubsystem.spec.cpp │ │ │ │ └── SentryUser.spec.cpp │ │ │ └── Utils │ │ │ │ ├── SentryFileUtils.cpp │ │ │ │ ├── SentryFileUtils.h │ │ │ │ ├── SentryScreenshotUtils.cpp │ │ │ │ └── SentryScreenshotUtils.h │ │ ├── Public │ │ │ ├── SentryAttachment.h │ │ │ ├── SentryBeforeSendHandler.h │ │ │ ├── SentryBreadcrumb.h │ │ │ ├── SentryDataTypes.h │ │ │ ├── SentryEvent.h │ │ │ ├── SentryHint.h │ │ │ ├── SentryId.h │ │ │ ├── SentryLibrary.h │ │ │ ├── SentryModule.h │ │ │ ├── SentryOutputDevice.h │ │ │ ├── SentryOutputDeviceError.h │ │ │ ├── SentrySamplingContext.h │ │ │ ├── SentryScope.h │ │ │ ├── SentrySettings.h │ │ │ ├── SentrySpan.h │ │ │ ├── SentrySubsystem.h │ │ │ ├── SentryTraceSampler.h │ │ │ ├── SentryTransaction.h │ │ │ ├── SentryTransactionContext.h │ │ │ ├── SentryUser.h │ │ │ └── SentryUserFeedback.h │ │ ├── Sentry.Build.cs │ │ ├── Sentry_Android_UPL.xml │ │ └── Sentry_IOS_UPL.xml │ ├── SentryEditor │ │ ├── Private │ │ │ ├── SentryEditorModule.cpp │ │ │ ├── SentrySettingsCustomization.cpp │ │ │ └── SentrySymToolsDownloader.cpp │ │ ├── Public │ │ │ ├── SentryEditorModule.h │ │ │ ├── SentrySettingsCustomization.h │ │ │ └── SentrySymToolsDownloader.h │ │ └── SentryEditor.Build.cs │ └── ThirdParty │ │ ├── Android │ │ ├── sentry-android-core-release.aar │ │ ├── sentry-android-ndk-release.aar │ │ └── sentry.jar │ │ ├── CLI │ │ ├── sentry-cli-Darwin-universal │ │ ├── sentry-cli-Linux-x86_64 │ │ └── sentry-cli-Windows-x86_64.exe │ │ ├── IOS │ │ ├── Sentry.embeddedframework.zip │ │ └── Sentry.framework │ │ │ ├── Headers │ │ │ ├── Sentry-Swift.h │ │ │ ├── Sentry.h │ │ │ ├── SentryAttachment.h │ │ │ ├── SentryBaggage.h │ │ │ ├── SentryBreadcrumb.h │ │ │ ├── SentryClient.h │ │ │ ├── SentryCrashExceptionApplication.h │ │ │ ├── SentryDebugImageProvider.h │ │ │ ├── SentryDebugMeta.h │ │ │ ├── SentryDefines.h │ │ │ ├── SentryDsn.h │ │ │ ├── SentryEnvelopeItemHeader.h │ │ │ ├── SentryError.h │ │ │ ├── SentryEvent.h │ │ │ ├── SentryException.h │ │ │ ├── SentryFrame.h │ │ │ ├── SentryGeo.h │ │ │ ├── SentryHttpStatusCodeRange.h │ │ │ ├── SentryHub.h │ │ │ ├── SentryMeasurementUnit.h │ │ │ ├── SentryMechanism.h │ │ │ ├── SentryMechanismMeta.h │ │ │ ├── SentryMessage.h │ │ │ ├── SentryNSError.h │ │ │ ├── SentryOptions.h │ │ │ ├── SentryProfilingConditionals.h │ │ │ ├── SentryReplayApi.h │ │ │ ├── SentryRequest.h │ │ │ ├── SentrySDK.h │ │ │ ├── SentrySampleDecision.h │ │ │ ├── SentrySamplingContext.h │ │ │ ├── SentryScope.h │ │ │ ├── SentrySerializable.h │ │ │ ├── SentrySpanContext.h │ │ │ ├── SentrySpanId.h │ │ │ ├── SentrySpanProtocol.h │ │ │ ├── SentrySpanStatus.h │ │ │ ├── SentryStacktrace.h │ │ │ ├── SentryThread.h │ │ │ ├── SentryTraceContext.h │ │ │ ├── SentryTraceHeader.h │ │ │ ├── SentryTransactionContext.h │ │ │ ├── SentryUser.h │ │ │ ├── SentryUserFeedback.h │ │ │ └── SentryWithoutUIKit.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ ├── Sentry.swiftmodule │ │ │ │ ├── arm64-apple-ios.abi.json │ │ │ │ ├── arm64-apple-ios.private.swiftinterface │ │ │ │ ├── arm64-apple-ios.swiftdoc │ │ │ │ ├── arm64-apple-ios.swiftinterface │ │ │ │ ├── arm64-apple-ios.swiftmodule │ │ │ │ ├── arm64e-apple-ios.abi.json │ │ │ │ ├── arm64e-apple-ios.private.swiftinterface │ │ │ │ ├── arm64e-apple-ios.swiftdoc │ │ │ │ ├── arm64e-apple-ios.swiftinterface │ │ │ │ └── arm64e-apple-ios.swiftmodule │ │ │ └── module.modulemap │ │ │ ├── PrivacyInfo.xcprivacy │ │ │ ├── PrivateHeaders │ │ │ ├── PrivateSentrySDKOnly.h │ │ │ ├── PrivatesHeader.h │ │ │ ├── SentryAppStartMeasurement.h │ │ │ ├── SentryAsynchronousOperation.h │ │ │ ├── SentryAutoSessionTrackingIntegration.h │ │ │ ├── SentryCrashInstallationReporter.h │ │ │ ├── SentryCrashReportConverter.h │ │ │ ├── SentryCrashReportSink.h │ │ │ ├── SentryDateUtils.h │ │ │ ├── SentryEnvelope.h │ │ │ ├── SentryEnvelopeItemType.h │ │ │ ├── SentryLog.h │ │ │ ├── SentryNSDataUtils.h │ │ │ ├── SentryNSDictionarySanitize.h │ │ │ ├── SentryOptions+HybridSDKs.h │ │ │ ├── SentryOptions+Private.h │ │ │ ├── SentryRequestOperation.h │ │ │ ├── SentrySDK+Private.h │ │ │ ├── SentryScreenFrames.h │ │ │ ├── SentrySdkInfo.h │ │ │ └── SentrySwift.h │ │ │ └── Sentry │ │ ├── Linux │ │ ├── bin │ │ │ └── crashpad_handler │ │ ├── include │ │ │ └── sentry.h │ │ └── lib │ │ │ ├── libcrashpad_client.a │ │ │ ├── libcrashpad_compat.a │ │ │ ├── libcrashpad_handler_lib.a │ │ │ ├── libcrashpad_minidump.a │ │ │ ├── libcrashpad_snapshot.a │ │ │ ├── libcrashpad_tools.a │ │ │ ├── libcrashpad_util.a │ │ │ ├── libmini_chromium.a │ │ │ └── libsentry.a │ │ ├── Mac │ │ ├── bin │ │ │ └── sentry.dylib │ │ └── include │ │ │ └── Sentry │ │ │ ├── PrivateSentrySDKOnly.h │ │ │ ├── PrivatesHeader.h │ │ │ ├── Sentry-Swift.h │ │ │ ├── Sentry.h │ │ │ ├── SentryAppStartMeasurement.h │ │ │ ├── SentryAsynchronousOperation.h │ │ │ ├── SentryAttachment.h │ │ │ ├── SentryAutoSessionTrackingIntegration.h │ │ │ ├── SentryBaggage.h │ │ │ ├── SentryBreadcrumb.h │ │ │ ├── SentryClient.h │ │ │ ├── SentryCrashExceptionApplication.h │ │ │ ├── SentryCrashInstallationReporter.h │ │ │ ├── SentryCrashReportConverter.h │ │ │ ├── SentryCrashReportSink.h │ │ │ ├── SentryDateUtils.h │ │ │ ├── SentryDebugImageProvider.h │ │ │ ├── SentryDebugMeta.h │ │ │ ├── SentryDefines.h │ │ │ ├── SentryDsn.h │ │ │ ├── SentryEnvelope.h │ │ │ ├── SentryEnvelopeItemHeader.h │ │ │ ├── SentryEnvelopeItemType.h │ │ │ ├── SentryError.h │ │ │ ├── SentryEvent.h │ │ │ ├── SentryException.h │ │ │ ├── SentryFrame.h │ │ │ ├── SentryGeo.h │ │ │ ├── SentryHttpStatusCodeRange.h │ │ │ ├── SentryHub.h │ │ │ ├── SentryLog.h │ │ │ ├── SentryMeasurementUnit.h │ │ │ ├── SentryMechanism.h │ │ │ ├── SentryMechanismMeta.h │ │ │ ├── SentryMessage.h │ │ │ ├── SentryNSDataUtils.h │ │ │ ├── SentryNSDictionarySanitize.h │ │ │ ├── SentryNSError.h │ │ │ ├── SentryOptions+HybridSDKs.h │ │ │ ├── SentryOptions+Private.h │ │ │ ├── SentryOptions.h │ │ │ ├── SentryProfilingConditionals.h │ │ │ ├── SentryReplayApi.h │ │ │ ├── SentryRequest.h │ │ │ ├── SentryRequestOperation.h │ │ │ ├── SentrySDK+Private.h │ │ │ ├── SentrySDK.h │ │ │ ├── SentrySampleDecision.h │ │ │ ├── SentrySamplingContext.h │ │ │ ├── SentryScope.h │ │ │ ├── SentryScreenFrames.h │ │ │ ├── SentrySdkInfo.h │ │ │ ├── SentrySerializable.h │ │ │ ├── SentrySpanContext.h │ │ │ ├── SentrySpanId.h │ │ │ ├── SentrySpanProtocol.h │ │ │ ├── SentrySpanStatus.h │ │ │ ├── SentryStacktrace.h │ │ │ ├── SentrySwift.h │ │ │ ├── SentryThread.h │ │ │ ├── SentryTraceContext.h │ │ │ ├── SentryTraceHeader.h │ │ │ ├── SentryTransactionContext.h │ │ │ ├── SentryUser.h │ │ │ ├── SentryUserFeedback.h │ │ │ └── SentryWithoutUIKit.h │ │ └── Win64 │ │ ├── Breakpad │ │ ├── include │ │ │ └── sentry.h │ │ └── lib │ │ │ ├── breakpad_client.lib │ │ │ └── sentry.lib │ │ └── Crashpad │ │ ├── bin │ │ └── crashpad_handler.exe │ │ ├── include │ │ └── sentry.h │ │ └── lib │ │ ├── crashpad_client.lib │ │ ├── crashpad_compat.lib │ │ ├── crashpad_getopt.lib │ │ ├── crashpad_handler_lib.lib │ │ ├── crashpad_minidump.lib │ │ ├── crashpad_snapshot.lib │ │ ├── crashpad_tools.lib │ │ ├── crashpad_util.lib │ │ ├── crashpad_zlib.lib │ │ ├── mini_chromium.lib │ │ └── sentry.lib └── sentry-cli.properties ├── SteamAudio ├── Config │ └── BaseSteamAudio.ini ├── Content │ ├── Materials │ │ ├── Brick.uasset │ │ ├── Carpet.uasset │ │ ├── Ceramic.uasset │ │ ├── Concrete.uasset │ │ ├── Default.uasset │ │ ├── Glass.uasset │ │ ├── Gravel.uasset │ │ ├── Metal.uasset │ │ ├── Plaster.uasset │ │ ├── Rock.uasset │ │ └── Wood.uasset │ ├── S_SteamAudioGeometry_16.png │ ├── S_SteamAudioListener_16.png │ ├── S_SteamAudioMaterial_16.png │ ├── S_SteamAudioOcclusionSettings_16.png │ ├── S_SteamAudioOcclusionSettings_64.png │ ├── S_SteamAudioProbe_16.png │ ├── S_SteamAudioReverbSettings_16.png │ ├── S_SteamAudioReverbSettings_64.png │ ├── S_SteamAudioSource_16.png │ ├── S_SteamAudioSpatializationSettings_16.png │ ├── S_SteamAudioSpatializationSettings_64.png │ ├── SteamAudio_EdMode_16.png │ └── SteamAudio_EdMode_40.png ├── Resources │ └── Icon128.png ├── Source │ ├── SteamAudio │ │ ├── Private │ │ │ ├── SOFAFile.cpp │ │ │ ├── SteamAudioBakedListenerComponent.cpp │ │ │ ├── SteamAudioBakedSourceComponent.cpp │ │ │ ├── SteamAudioCommon.cpp │ │ │ ├── SteamAudioCommon.h │ │ │ ├── SteamAudioDynamicObjectComponent.cpp │ │ │ ├── SteamAudioGeometryComponent.cpp │ │ │ ├── SteamAudioListenerComponent.cpp │ │ │ ├── SteamAudioManager.cpp │ │ │ ├── SteamAudioManager.h │ │ │ ├── SteamAudioMaterial.cpp │ │ │ ├── SteamAudioModule.cpp │ │ │ ├── SteamAudioOcclusion.cpp │ │ │ ├── SteamAudioOcclusion.h │ │ │ ├── SteamAudioOcclusionSettings.cpp │ │ │ ├── SteamAudioProbeComponent.cpp │ │ │ ├── SteamAudioProbeVolume.cpp │ │ │ ├── SteamAudioReverb.cpp │ │ │ ├── SteamAudioReverb.h │ │ │ ├── SteamAudioReverbSettings.cpp │ │ │ ├── SteamAudioScene.cpp │ │ │ ├── SteamAudioScene.h │ │ │ ├── SteamAudioSerializedObject.cpp │ │ │ ├── SteamAudioSettings.cpp │ │ │ ├── SteamAudioSourceComponent.cpp │ │ │ ├── SteamAudioSpatialization.cpp │ │ │ ├── SteamAudioSpatialization.h │ │ │ ├── SteamAudioSpatializationSettings.cpp │ │ │ ├── SteamAudioStaticMeshActor.cpp │ │ │ ├── SteamAudioUnrealAudioEngineInterface.cpp │ │ │ └── SteamAudioUnrealAudioEngineInterface.h │ │ ├── Public │ │ │ ├── SOFAFile.h │ │ │ ├── SteamAudioAudioEngineInterface.h │ │ │ ├── SteamAudioBakedListenerComponent.h │ │ │ ├── SteamAudioBakedSourceComponent.h │ │ │ ├── SteamAudioDynamicObjectComponent.h │ │ │ ├── SteamAudioGeometryComponent.h │ │ │ ├── SteamAudioListenerComponent.h │ │ │ ├── SteamAudioMaterial.h │ │ │ ├── SteamAudioModule.h │ │ │ ├── SteamAudioOcclusionSettings.h │ │ │ ├── SteamAudioProbeComponent.h │ │ │ ├── SteamAudioProbeVolume.h │ │ │ ├── SteamAudioReverbSettings.h │ │ │ ├── SteamAudioSerializedObject.h │ │ │ ├── SteamAudioSettings.h │ │ │ ├── SteamAudioSourceComponent.h │ │ │ ├── SteamAudioSpatializationSettings.h │ │ │ └── SteamAudioStaticMeshActor.h │ │ └── SteamAudio.Build.cs │ ├── SteamAudioEditor │ │ ├── Private │ │ │ ├── SOFAFileFactory.cpp │ │ │ ├── SOFAFileFactory.h │ │ │ ├── SteamAudioBakeWindow.cpp │ │ │ ├── SteamAudioBakeWindow.h │ │ │ ├── SteamAudioBakedListenerComponentVisualizer.cpp │ │ │ ├── SteamAudioBakedListenerComponentVisualizer.h │ │ │ ├── SteamAudioBakedListenerDetails.cpp │ │ │ ├── SteamAudioBakedListenerDetails.h │ │ │ ├── SteamAudioBakedSourceComponentVisualizer.cpp │ │ │ ├── SteamAudioBakedSourceComponentVisualizer.h │ │ │ ├── SteamAudioBakedSourceDetails.cpp │ │ │ ├── SteamAudioBakedSourceDetails.h │ │ │ ├── SteamAudioBaking.cpp │ │ │ ├── SteamAudioBaking.h │ │ │ ├── SteamAudioDynamicObjectDetails.cpp │ │ │ ├── SteamAudioDynamicObjectDetails.h │ │ │ ├── SteamAudioEditorModule.cpp │ │ │ ├── SteamAudioListenerDetails.cpp │ │ │ ├── SteamAudioListenerDetails.h │ │ │ ├── SteamAudioMaterialFactory.cpp │ │ │ ├── SteamAudioMaterialFactory.h │ │ │ ├── SteamAudioOcclusionSettingsFactory.cpp │ │ │ ├── SteamAudioOcclusionSettingsFactory.h │ │ │ ├── SteamAudioProbeComponentVisualizer.cpp │ │ │ ├── SteamAudioProbeComponentVisualizer.h │ │ │ ├── SteamAudioProbeVolumeDetails.cpp │ │ │ ├── SteamAudioProbeVolumeDetails.h │ │ │ ├── SteamAudioReverbSettingsFactory.cpp │ │ │ ├── SteamAudioReverbSettingsFactory.h │ │ │ ├── SteamAudioSourceComponentVisualizer.cpp │ │ │ ├── SteamAudioSourceComponentVisualizer.h │ │ │ ├── SteamAudioSpatializationSettingsFactory.cpp │ │ │ ├── SteamAudioSpatializationSettingsFactory.h │ │ │ ├── TickableNotification.cpp │ │ │ └── TickableNotification.h │ │ ├── Public │ │ │ └── SteamAudioEditorModule.h │ │ └── SteamAudioEditor.Build.cs │ └── SteamAudioSDK │ │ ├── SteamAudioSDK.Build.cs │ │ ├── SteamAudioSDK_APL.xml │ │ ├── include │ │ ├── phonon.h │ │ ├── phonon_interfaces.h │ │ └── phonon_version.h │ │ └── lib │ │ └── windows-x64 │ │ ├── GPUUtilities.dll │ │ ├── GPUUtilities.lib │ │ ├── TrueAudioNext.dll │ │ ├── TrueAudioNext.lib │ │ ├── phonon.dll │ │ ├── phonon.lib │ │ └── phonon.pdb └── SteamAudio.uplugin └── SteamAudioFMODStudio ├── Resources └── Icon128.png ├── Source └── SteamAudioFMODStudio │ ├── Private │ └── SteamAudioFMODStudio.cpp │ ├── Public │ └── SteamAudioFMODStudio.h │ └── SteamAudioFMODStudio.Build.cs └── SteamAudioFMODStudio.uplugin /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/.gitmodules -------------------------------------------------------------------------------- /RichTextBlockInlineDecorator/Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/RichTextBlockInlineDecorator/Resources/Icon128.png -------------------------------------------------------------------------------- /RichTextBlockInlineDecorator/RichTextBlockInlineDecorator.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/RichTextBlockInlineDecorator/RichTextBlockInlineDecorator.uplugin -------------------------------------------------------------------------------- /RichTextBlockInlineDecorator/Source/RichTextBlockInlineDecorator/Private/RichTextBlockInlineDecorator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/RichTextBlockInlineDecorator/Source/RichTextBlockInlineDecorator/Private/RichTextBlockInlineDecorator.cpp -------------------------------------------------------------------------------- /RichTextBlockInlineDecorator/Source/RichTextBlockInlineDecorator/Private/RichTextBlockInlineDecoratorModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/RichTextBlockInlineDecorator/Source/RichTextBlockInlineDecorator/Private/RichTextBlockInlineDecoratorModule.cpp -------------------------------------------------------------------------------- /RichTextBlockInlineDecorator/Source/RichTextBlockInlineDecorator/Public/RichTextBlockInlineDecorator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/RichTextBlockInlineDecorator/Source/RichTextBlockInlineDecorator/Public/RichTextBlockInlineDecorator.h -------------------------------------------------------------------------------- /RichTextBlockInlineDecorator/Source/RichTextBlockInlineDecorator/Public/RichTextBlockInlineDecoratorModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/RichTextBlockInlineDecorator/Source/RichTextBlockInlineDecorator/Public/RichTextBlockInlineDecoratorModule.h -------------------------------------------------------------------------------- /RichTextBlockInlineDecorator/Source/RichTextBlockInlineDecorator/RichTextBlockInlineDecorator.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/RichTextBlockInlineDecorator/Source/RichTextBlockInlineDecorator/RichTextBlockInlineDecorator.Build.cs -------------------------------------------------------------------------------- /Sentry/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/CHANGELOG.md -------------------------------------------------------------------------------- /Sentry/Config/FilterPlugin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Config/FilterPlugin.ini -------------------------------------------------------------------------------- /Sentry/Gradle/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Gradle/gradle-wrapper.properties -------------------------------------------------------------------------------- /Sentry/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/LICENSE -------------------------------------------------------------------------------- /Sentry/Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Resources/Icon128.png -------------------------------------------------------------------------------- /Sentry/Scripts/upload-debug-symbols-win.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Scripts/upload-debug-symbols-win.bat -------------------------------------------------------------------------------- /Sentry/Scripts/upload-debug-symbols.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Scripts/upload-debug-symbols.sh -------------------------------------------------------------------------------- /Sentry/Sentry.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Sentry.uplugin -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Android/Callbacks/SentryScopeCallbackAndroid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Android/Callbacks/SentryScopeCallbackAndroid.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Android/Callbacks/SentryScopeCallbackAndroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Android/Callbacks/SentryScopeCallbackAndroid.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Android/Infrastructure/SentryConvertorsAndroid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Android/Infrastructure/SentryConvertorsAndroid.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Android/Infrastructure/SentryConvertorsAndroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Android/Infrastructure/SentryConvertorsAndroid.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Android/Infrastructure/SentryDataTypesAndroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Android/Infrastructure/SentryDataTypesAndroid.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Android/Infrastructure/SentryJavaClasses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Android/Infrastructure/SentryJavaClasses.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Android/Infrastructure/SentryJavaClasses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Android/Infrastructure/SentryJavaClasses.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Android/Infrastructure/SentryJavaObjectWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Android/Infrastructure/SentryJavaObjectWrapper.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Android/Infrastructure/SentryJavaObjectWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Android/Infrastructure/SentryJavaObjectWrapper.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Android/Java/SentryBridgeJava.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Android/Java/SentryBridgeJava.java -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Android/Jni/SentryJniAndroid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Android/Jni/SentryJniAndroid.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Android/SentryAttachmentAndroid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Android/SentryAttachmentAndroid.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Android/SentryAttachmentAndroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Android/SentryAttachmentAndroid.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Android/SentryBreadcrumbAndroid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Android/SentryBreadcrumbAndroid.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Android/SentryBreadcrumbAndroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Android/SentryBreadcrumbAndroid.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Android/SentryEventAndroid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Android/SentryEventAndroid.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Android/SentryEventAndroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Android/SentryEventAndroid.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Android/SentryHintAndroid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Android/SentryHintAndroid.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Android/SentryHintAndroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Android/SentryHintAndroid.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Android/SentryIdAndroid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Android/SentryIdAndroid.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Android/SentryIdAndroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Android/SentryIdAndroid.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Android/SentryMessageAndroid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Android/SentryMessageAndroid.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Android/SentryMessageAndroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Android/SentryMessageAndroid.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Android/SentrySamplingContextAndroid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Android/SentrySamplingContextAndroid.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Android/SentrySamplingContextAndroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Android/SentrySamplingContextAndroid.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Android/SentryScopeAndroid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Android/SentryScopeAndroid.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Android/SentryScopeAndroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Android/SentryScopeAndroid.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Android/SentrySpanAndroid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Android/SentrySpanAndroid.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Android/SentrySpanAndroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Android/SentrySpanAndroid.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Android/SentrySubsystemAndroid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Android/SentrySubsystemAndroid.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Android/SentrySubsystemAndroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Android/SentrySubsystemAndroid.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Android/SentryTransactionAndroid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Android/SentryTransactionAndroid.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Android/SentryTransactionAndroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Android/SentryTransactionAndroid.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Android/SentryTransactionContextAndroid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Android/SentryTransactionContextAndroid.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Android/SentryTransactionContextAndroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Android/SentryTransactionContextAndroid.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Android/SentryTransactionOptionsAndroid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Android/SentryTransactionOptionsAndroid.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Android/SentryTransactionOptionsAndroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Android/SentryTransactionOptionsAndroid.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Android/SentryUserAndroid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Android/SentryUserAndroid.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Android/SentryUserAndroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Android/SentryUserAndroid.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Android/SentryUserFeedbackAndroid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Android/SentryUserFeedbackAndroid.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Android/SentryUserFeedbackAndroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Android/SentryUserFeedbackAndroid.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Apple/Convenience/SentryInclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Apple/Convenience/SentryInclude.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Apple/Convenience/SentryMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Apple/Convenience/SentryMacro.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Apple/Infrastructure/SentryConvertorsApple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Apple/Infrastructure/SentryConvertorsApple.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Apple/Infrastructure/SentryConvertorsApple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Apple/Infrastructure/SentryConvertorsApple.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Apple/SentryAttachmentApple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Apple/SentryAttachmentApple.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Apple/SentryAttachmentApple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Apple/SentryAttachmentApple.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Apple/SentryBreadcrumbApple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Apple/SentryBreadcrumbApple.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Apple/SentryBreadcrumbApple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Apple/SentryBreadcrumbApple.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Apple/SentryEventApple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Apple/SentryEventApple.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Apple/SentryEventApple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Apple/SentryEventApple.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Apple/SentryIdApple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Apple/SentryIdApple.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Apple/SentryIdApple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Apple/SentryIdApple.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Apple/SentrySamplingContextApple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Apple/SentrySamplingContextApple.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Apple/SentrySamplingContextApple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Apple/SentrySamplingContextApple.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Apple/SentryScopeApple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Apple/SentryScopeApple.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Apple/SentryScopeApple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Apple/SentryScopeApple.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Apple/SentrySpanApple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Apple/SentrySpanApple.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Apple/SentrySpanApple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Apple/SentrySpanApple.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Apple/SentrySubsystemApple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Apple/SentrySubsystemApple.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Apple/SentrySubsystemApple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Apple/SentrySubsystemApple.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Apple/SentryTransactionApple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Apple/SentryTransactionApple.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Apple/SentryTransactionApple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Apple/SentryTransactionApple.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Apple/SentryTransactionContextApple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Apple/SentryTransactionContextApple.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Apple/SentryTransactionContextApple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Apple/SentryTransactionContextApple.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Apple/SentryUserApple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Apple/SentryUserApple.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Apple/SentryUserApple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Apple/SentryUserApple.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Apple/SentryUserFeedbackApple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Apple/SentryUserFeedbackApple.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Apple/SentryUserFeedbackApple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Apple/SentryUserFeedbackApple.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Desktop/Convenience/SentryInclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Desktop/Convenience/SentryInclude.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Desktop/CrashReporter/SentryCrashContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Desktop/CrashReporter/SentryCrashContext.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Desktop/CrashReporter/SentryCrashContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Desktop/CrashReporter/SentryCrashContext.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Desktop/CrashReporter/SentryCrashReporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Desktop/CrashReporter/SentryCrashReporter.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Desktop/CrashReporter/SentryCrashReporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Desktop/CrashReporter/SentryCrashReporter.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Desktop/Infrastructure/SentryConvertorsDesktop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Desktop/Infrastructure/SentryConvertorsDesktop.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Desktop/Infrastructure/SentryConvertorsDesktop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Desktop/Infrastructure/SentryConvertorsDesktop.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Desktop/SentryBreadcrumbDesktop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Desktop/SentryBreadcrumbDesktop.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Desktop/SentryBreadcrumbDesktop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Desktop/SentryBreadcrumbDesktop.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Desktop/SentryEventDesktop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Desktop/SentryEventDesktop.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Desktop/SentryEventDesktop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Desktop/SentryEventDesktop.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Desktop/SentryIdDesktop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Desktop/SentryIdDesktop.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Desktop/SentryIdDesktop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Desktop/SentryIdDesktop.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Desktop/SentryScopeDesktop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Desktop/SentryScopeDesktop.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Desktop/SentryScopeDesktop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Desktop/SentryScopeDesktop.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Desktop/SentrySpanDesktop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Desktop/SentrySpanDesktop.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Desktop/SentrySpanDesktop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Desktop/SentrySpanDesktop.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Desktop/SentrySubsystemDesktop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Desktop/SentrySubsystemDesktop.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Desktop/SentrySubsystemDesktop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Desktop/SentrySubsystemDesktop.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Desktop/SentryTransactionContextDesktop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Desktop/SentryTransactionContextDesktop.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Desktop/SentryTransactionContextDesktop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Desktop/SentryTransactionContextDesktop.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Desktop/SentryTransactionDesktop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Desktop/SentryTransactionDesktop.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Desktop/SentryTransactionDesktop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Desktop/SentryTransactionDesktop.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Desktop/SentryUserDesktop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Desktop/SentryUserDesktop.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Desktop/SentryUserDesktop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Desktop/SentryUserDesktop.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Desktop/SentryUserFeedbackDesktop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Desktop/SentryUserFeedbackDesktop.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Desktop/SentryUserFeedbackDesktop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Desktop/SentryUserFeedbackDesktop.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Desktop/Transport/SentryDsnUrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Desktop/Transport/SentryDsnUrl.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Desktop/Transport/SentryDsnUrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Desktop/Transport/SentryDsnUrl.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Desktop/Transport/SentryTransport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Desktop/Transport/SentryTransport.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Desktop/Transport/SentryTransport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Desktop/Transport/SentryTransport.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Interface/SentryAttachmentInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Interface/SentryAttachmentInterface.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Interface/SentryBreadcrumbInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Interface/SentryBreadcrumbInterface.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Interface/SentryEventInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Interface/SentryEventInterface.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Interface/SentryHintInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Interface/SentryHintInterface.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Interface/SentryIdInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Interface/SentryIdInterface.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Interface/SentrySamplingContextInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Interface/SentrySamplingContextInterface.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Interface/SentryScopeInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Interface/SentryScopeInterface.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Interface/SentrySpanInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Interface/SentrySpanInterface.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Interface/SentrySubsystemInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Interface/SentrySubsystemInterface.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Interface/SentryTransactionContextInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Interface/SentryTransactionContextInterface.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Interface/SentryTransactionInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Interface/SentryTransactionInterface.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Interface/SentryUserFeedbackInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Interface/SentryUserFeedbackInterface.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Interface/SentryUserInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Interface/SentryUserInterface.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/SentryAttachment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/SentryAttachment.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/SentryBeforeSendHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/SentryBeforeSendHandler.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/SentryBreadcrumb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/SentryBreadcrumb.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/SentryDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/SentryDefines.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/SentryEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/SentryEvent.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/SentryHint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/SentryHint.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/SentryId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/SentryId.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/SentryLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/SentryLibrary.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/SentryModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/SentryModule.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/SentryOutputDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/SentryOutputDevice.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/SentryOutputDeviceError.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/SentryOutputDeviceError.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/SentrySamplingContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/SentrySamplingContext.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/SentryScope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/SentryScope.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/SentrySettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/SentrySettings.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/SentrySpan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/SentrySpan.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/SentrySubsystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/SentrySubsystem.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/SentryTraceSampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/SentryTraceSampler.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/SentryTransaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/SentryTransaction.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/SentryTransactionContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/SentryTransactionContext.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/SentryUser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/SentryUser.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/SentryUserFeedback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/SentryUserFeedback.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Tests/SentryBreadcrumb.spec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Tests/SentryBreadcrumb.spec.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Tests/SentryEvent.spec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Tests/SentryEvent.spec.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Tests/SentryScope.spec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Tests/SentryScope.spec.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Tests/SentrySubsystem.spec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Tests/SentrySubsystem.spec.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Tests/SentryUser.spec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Tests/SentryUser.spec.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Utils/SentryFileUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Utils/SentryFileUtils.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Utils/SentryFileUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Utils/SentryFileUtils.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Utils/SentryScreenshotUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Utils/SentryScreenshotUtils.cpp -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Private/Utils/SentryScreenshotUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Private/Utils/SentryScreenshotUtils.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Public/SentryAttachment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Public/SentryAttachment.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Public/SentryBeforeSendHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Public/SentryBeforeSendHandler.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Public/SentryBreadcrumb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Public/SentryBreadcrumb.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Public/SentryDataTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Public/SentryDataTypes.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Public/SentryEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Public/SentryEvent.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Public/SentryHint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Public/SentryHint.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Public/SentryId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Public/SentryId.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Public/SentryLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Public/SentryLibrary.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Public/SentryModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Public/SentryModule.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Public/SentryOutputDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Public/SentryOutputDevice.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Public/SentryOutputDeviceError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Public/SentryOutputDeviceError.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Public/SentrySamplingContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Public/SentrySamplingContext.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Public/SentryScope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Public/SentryScope.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Public/SentrySettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Public/SentrySettings.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Public/SentrySpan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Public/SentrySpan.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Public/SentrySubsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Public/SentrySubsystem.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Public/SentryTraceSampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Public/SentryTraceSampler.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Public/SentryTransaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Public/SentryTransaction.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Public/SentryTransactionContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Public/SentryTransactionContext.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Public/SentryUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Public/SentryUser.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Public/SentryUserFeedback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Public/SentryUserFeedback.h -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Sentry.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Sentry.Build.cs -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Sentry_Android_UPL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Sentry_Android_UPL.xml -------------------------------------------------------------------------------- /Sentry/Source/Sentry/Sentry_IOS_UPL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/Sentry/Sentry_IOS_UPL.xml -------------------------------------------------------------------------------- /Sentry/Source/SentryEditor/Private/SentryEditorModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/SentryEditor/Private/SentryEditorModule.cpp -------------------------------------------------------------------------------- /Sentry/Source/SentryEditor/Private/SentrySettingsCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/SentryEditor/Private/SentrySettingsCustomization.cpp -------------------------------------------------------------------------------- /Sentry/Source/SentryEditor/Private/SentrySymToolsDownloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/SentryEditor/Private/SentrySymToolsDownloader.cpp -------------------------------------------------------------------------------- /Sentry/Source/SentryEditor/Public/SentryEditorModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/SentryEditor/Public/SentryEditorModule.h -------------------------------------------------------------------------------- /Sentry/Source/SentryEditor/Public/SentrySettingsCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/SentryEditor/Public/SentrySettingsCustomization.h -------------------------------------------------------------------------------- /Sentry/Source/SentryEditor/Public/SentrySymToolsDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/SentryEditor/Public/SentrySymToolsDownloader.h -------------------------------------------------------------------------------- /Sentry/Source/SentryEditor/SentryEditor.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/SentryEditor/SentryEditor.Build.cs -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Android/sentry-android-core-release.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Android/sentry-android-core-release.aar -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Android/sentry-android-ndk-release.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Android/sentry-android-ndk-release.aar -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Android/sentry.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Android/sentry.jar -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/CLI/sentry-cli-Darwin-universal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/CLI/sentry-cli-Darwin-universal -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/CLI/sentry-cli-Linux-x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/CLI/sentry-cli-Linux-x86_64 -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/CLI/sentry-cli-Windows-x86_64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/CLI/sentry-cli-Windows-x86_64.exe -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.embeddedframework.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.embeddedframework.zip -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/Sentry-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/Sentry-Swift.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/Sentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/Sentry.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryAttachment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryAttachment.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryBaggage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryBaggage.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryBreadcrumb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryBreadcrumb.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryClient.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryCrashExceptionApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryCrashExceptionApplication.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryDebugImageProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryDebugImageProvider.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryDebugMeta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryDebugMeta.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryDefines.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryDsn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryDsn.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryEnvelopeItemHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryEnvelopeItemHeader.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryError.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryEvent.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryException.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryFrame.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryGeo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryGeo.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryHttpStatusCodeRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryHttpStatusCodeRange.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryHub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryHub.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryMeasurementUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryMeasurementUnit.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryMechanism.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryMechanism.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryMechanismMeta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryMechanismMeta.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryMessage.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryNSError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryNSError.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryOptions.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryProfilingConditionals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryProfilingConditionals.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryReplayApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryReplayApi.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryRequest.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySDK.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySampleDecision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySampleDecision.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySamplingContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySamplingContext.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryScope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryScope.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySerializable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySerializable.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySpanContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySpanContext.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySpanId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySpanId.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySpanProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySpanProtocol.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySpanStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySpanStatus.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryStacktrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryStacktrace.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryThread.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryTraceContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryTraceContext.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryTraceHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryTraceHeader.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryTransactionContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryTransactionContext.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryUser.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryUserFeedback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryUserFeedback.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryWithoutUIKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryWithoutUIKit.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Info.plist -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Modules/Sentry.swiftmodule/arm64-apple-ios.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Modules/Sentry.swiftmodule/arm64-apple-ios.abi.json -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Modules/Sentry.swiftmodule/arm64-apple-ios.private.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Modules/Sentry.swiftmodule/arm64-apple-ios.private.swiftinterface -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Modules/Sentry.swiftmodule/arm64-apple-ios.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Modules/Sentry.swiftmodule/arm64-apple-ios.swiftdoc -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Modules/Sentry.swiftmodule/arm64-apple-ios.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Modules/Sentry.swiftmodule/arm64-apple-ios.swiftinterface -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Modules/Sentry.swiftmodule/arm64-apple-ios.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Modules/Sentry.swiftmodule/arm64-apple-ios.swiftmodule -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Modules/Sentry.swiftmodule/arm64e-apple-ios.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Modules/Sentry.swiftmodule/arm64e-apple-ios.abi.json -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Modules/Sentry.swiftmodule/arm64e-apple-ios.private.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Modules/Sentry.swiftmodule/arm64e-apple-ios.private.swiftinterface -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Modules/Sentry.swiftmodule/arm64e-apple-ios.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Modules/Sentry.swiftmodule/arm64e-apple-ios.swiftdoc -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Modules/Sentry.swiftmodule/arm64e-apple-ios.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Modules/Sentry.swiftmodule/arm64e-apple-ios.swiftinterface -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Modules/Sentry.swiftmodule/arm64e-apple-ios.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Modules/Sentry.swiftmodule/arm64e-apple-ios.swiftmodule -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/PrivateSentrySDKOnly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/PrivateSentrySDKOnly.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/PrivatesHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/PrivatesHeader.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryAppStartMeasurement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryAppStartMeasurement.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryAsynchronousOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryAsynchronousOperation.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryAutoSessionTrackingIntegration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryAutoSessionTrackingIntegration.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryCrashInstallationReporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryCrashInstallationReporter.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryCrashReportConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryCrashReportConverter.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryCrashReportSink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryCrashReportSink.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryDateUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryDateUtils.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryEnvelope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryEnvelope.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryEnvelopeItemType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryEnvelopeItemType.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryLog.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryNSDataUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryNSDataUtils.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryNSDictionarySanitize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryNSDictionarySanitize.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryOptions+HybridSDKs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryOptions+HybridSDKs.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryOptions+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryOptions+Private.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryRequestOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryRequestOperation.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentrySDK+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentrySDK+Private.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryScreenFrames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryScreenFrames.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentrySdkInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentrySdkInfo.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentrySwift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentrySwift.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/IOS/Sentry.framework/Sentry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/IOS/Sentry.framework/Sentry -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Linux/bin/crashpad_handler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Linux/bin/crashpad_handler -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Linux/include/sentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Linux/include/sentry.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Linux/lib/libcrashpad_client.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Linux/lib/libcrashpad_client.a -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Linux/lib/libcrashpad_compat.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Linux/lib/libcrashpad_compat.a -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Linux/lib/libcrashpad_handler_lib.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Linux/lib/libcrashpad_handler_lib.a -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Linux/lib/libcrashpad_minidump.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Linux/lib/libcrashpad_minidump.a -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Linux/lib/libcrashpad_snapshot.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Linux/lib/libcrashpad_snapshot.a -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Linux/lib/libcrashpad_tools.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Linux/lib/libcrashpad_tools.a -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Linux/lib/libcrashpad_util.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Linux/lib/libcrashpad_util.a -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Linux/lib/libmini_chromium.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Linux/lib/libmini_chromium.a -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Linux/lib/libsentry.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Linux/lib/libsentry.a -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/bin/sentry.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/bin/sentry.dylib -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/PrivateSentrySDKOnly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/PrivateSentrySDKOnly.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/PrivatesHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/PrivatesHeader.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/Sentry-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/Sentry-Swift.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/Sentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/Sentry.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentryAppStartMeasurement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentryAppStartMeasurement.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentryAsynchronousOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentryAsynchronousOperation.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentryAttachment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentryAttachment.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentryAutoSessionTrackingIntegration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentryAutoSessionTrackingIntegration.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentryBaggage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentryBaggage.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentryBreadcrumb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentryBreadcrumb.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentryClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentryClient.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentryCrashExceptionApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentryCrashExceptionApplication.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentryCrashInstallationReporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentryCrashInstallationReporter.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentryCrashReportConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentryCrashReportConverter.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentryCrashReportSink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentryCrashReportSink.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentryDateUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentryDateUtils.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentryDebugImageProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentryDebugImageProvider.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentryDebugMeta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentryDebugMeta.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentryDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentryDefines.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentryDsn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentryDsn.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentryEnvelope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentryEnvelope.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentryEnvelopeItemHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentryEnvelopeItemHeader.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentryEnvelopeItemType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentryEnvelopeItemType.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentryError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentryError.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentryEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentryEvent.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentryException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentryException.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentryFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentryFrame.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentryGeo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentryGeo.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentryHttpStatusCodeRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentryHttpStatusCodeRange.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentryHub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentryHub.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentryLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentryLog.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentryMeasurementUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentryMeasurementUnit.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentryMechanism.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentryMechanism.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentryMechanismMeta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentryMechanismMeta.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentryMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentryMessage.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentryNSDataUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentryNSDataUtils.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentryNSDictionarySanitize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentryNSDictionarySanitize.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentryNSError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentryNSError.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentryOptions+HybridSDKs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentryOptions+HybridSDKs.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentryOptions+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentryOptions+Private.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentryOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentryOptions.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentryProfilingConditionals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentryProfilingConditionals.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentryReplayApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentryReplayApi.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentryRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentryRequest.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentryRequestOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentryRequestOperation.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentrySDK+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentrySDK+Private.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentrySDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentrySDK.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentrySampleDecision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentrySampleDecision.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentrySamplingContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentrySamplingContext.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentryScope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentryScope.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentryScreenFrames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentryScreenFrames.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentrySdkInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentrySdkInfo.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentrySerializable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentrySerializable.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentrySpanContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentrySpanContext.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentrySpanId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentrySpanId.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentrySpanProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentrySpanProtocol.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentrySpanStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentrySpanStatus.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentryStacktrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentryStacktrace.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentrySwift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentrySwift.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentryThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentryThread.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentryTraceContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentryTraceContext.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentryTraceHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentryTraceHeader.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentryTransactionContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentryTransactionContext.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentryUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentryUser.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentryUserFeedback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentryUserFeedback.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Mac/include/Sentry/SentryWithoutUIKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Mac/include/Sentry/SentryWithoutUIKit.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Win64/Breakpad/include/sentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Win64/Breakpad/include/sentry.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Win64/Breakpad/lib/breakpad_client.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Win64/Breakpad/lib/breakpad_client.lib -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Win64/Breakpad/lib/sentry.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Win64/Breakpad/lib/sentry.lib -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Win64/Crashpad/bin/crashpad_handler.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Win64/Crashpad/bin/crashpad_handler.exe -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Win64/Crashpad/include/sentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Win64/Crashpad/include/sentry.h -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Win64/Crashpad/lib/crashpad_client.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Win64/Crashpad/lib/crashpad_client.lib -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Win64/Crashpad/lib/crashpad_compat.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Win64/Crashpad/lib/crashpad_compat.lib -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Win64/Crashpad/lib/crashpad_getopt.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Win64/Crashpad/lib/crashpad_getopt.lib -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Win64/Crashpad/lib/crashpad_handler_lib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Win64/Crashpad/lib/crashpad_handler_lib.lib -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Win64/Crashpad/lib/crashpad_minidump.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Win64/Crashpad/lib/crashpad_minidump.lib -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Win64/Crashpad/lib/crashpad_snapshot.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Win64/Crashpad/lib/crashpad_snapshot.lib -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Win64/Crashpad/lib/crashpad_tools.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Win64/Crashpad/lib/crashpad_tools.lib -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Win64/Crashpad/lib/crashpad_util.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Win64/Crashpad/lib/crashpad_util.lib -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Win64/Crashpad/lib/crashpad_zlib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Win64/Crashpad/lib/crashpad_zlib.lib -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Win64/Crashpad/lib/mini_chromium.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Win64/Crashpad/lib/mini_chromium.lib -------------------------------------------------------------------------------- /Sentry/Source/ThirdParty/Win64/Crashpad/lib/sentry.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/Source/ThirdParty/Win64/Crashpad/lib/sentry.lib -------------------------------------------------------------------------------- /Sentry/sentry-cli.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/Sentry/sentry-cli.properties -------------------------------------------------------------------------------- /SteamAudio/Config/BaseSteamAudio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Config/BaseSteamAudio.ini -------------------------------------------------------------------------------- /SteamAudio/Content/Materials/Brick.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Content/Materials/Brick.uasset -------------------------------------------------------------------------------- /SteamAudio/Content/Materials/Carpet.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Content/Materials/Carpet.uasset -------------------------------------------------------------------------------- /SteamAudio/Content/Materials/Ceramic.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Content/Materials/Ceramic.uasset -------------------------------------------------------------------------------- /SteamAudio/Content/Materials/Concrete.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Content/Materials/Concrete.uasset -------------------------------------------------------------------------------- /SteamAudio/Content/Materials/Default.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Content/Materials/Default.uasset -------------------------------------------------------------------------------- /SteamAudio/Content/Materials/Glass.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Content/Materials/Glass.uasset -------------------------------------------------------------------------------- /SteamAudio/Content/Materials/Gravel.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Content/Materials/Gravel.uasset -------------------------------------------------------------------------------- /SteamAudio/Content/Materials/Metal.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Content/Materials/Metal.uasset -------------------------------------------------------------------------------- /SteamAudio/Content/Materials/Plaster.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Content/Materials/Plaster.uasset -------------------------------------------------------------------------------- /SteamAudio/Content/Materials/Rock.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Content/Materials/Rock.uasset -------------------------------------------------------------------------------- /SteamAudio/Content/Materials/Wood.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Content/Materials/Wood.uasset -------------------------------------------------------------------------------- /SteamAudio/Content/S_SteamAudioGeometry_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Content/S_SteamAudioGeometry_16.png -------------------------------------------------------------------------------- /SteamAudio/Content/S_SteamAudioListener_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Content/S_SteamAudioListener_16.png -------------------------------------------------------------------------------- /SteamAudio/Content/S_SteamAudioMaterial_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Content/S_SteamAudioMaterial_16.png -------------------------------------------------------------------------------- /SteamAudio/Content/S_SteamAudioOcclusionSettings_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Content/S_SteamAudioOcclusionSettings_16.png -------------------------------------------------------------------------------- /SteamAudio/Content/S_SteamAudioOcclusionSettings_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Content/S_SteamAudioOcclusionSettings_64.png -------------------------------------------------------------------------------- /SteamAudio/Content/S_SteamAudioProbe_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Content/S_SteamAudioProbe_16.png -------------------------------------------------------------------------------- /SteamAudio/Content/S_SteamAudioReverbSettings_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Content/S_SteamAudioReverbSettings_16.png -------------------------------------------------------------------------------- /SteamAudio/Content/S_SteamAudioReverbSettings_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Content/S_SteamAudioReverbSettings_64.png -------------------------------------------------------------------------------- /SteamAudio/Content/S_SteamAudioSource_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Content/S_SteamAudioSource_16.png -------------------------------------------------------------------------------- /SteamAudio/Content/S_SteamAudioSpatializationSettings_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Content/S_SteamAudioSpatializationSettings_16.png -------------------------------------------------------------------------------- /SteamAudio/Content/S_SteamAudioSpatializationSettings_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Content/S_SteamAudioSpatializationSettings_64.png -------------------------------------------------------------------------------- /SteamAudio/Content/SteamAudio_EdMode_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Content/SteamAudio_EdMode_16.png -------------------------------------------------------------------------------- /SteamAudio/Content/SteamAudio_EdMode_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Content/SteamAudio_EdMode_40.png -------------------------------------------------------------------------------- /SteamAudio/Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Resources/Icon128.png -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudio/Private/SOFAFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudio/Private/SOFAFile.cpp -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudio/Private/SteamAudioBakedListenerComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudio/Private/SteamAudioBakedListenerComponent.cpp -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudio/Private/SteamAudioBakedSourceComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudio/Private/SteamAudioBakedSourceComponent.cpp -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudio/Private/SteamAudioCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudio/Private/SteamAudioCommon.cpp -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudio/Private/SteamAudioCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudio/Private/SteamAudioCommon.h -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudio/Private/SteamAudioDynamicObjectComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudio/Private/SteamAudioDynamicObjectComponent.cpp -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudio/Private/SteamAudioGeometryComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudio/Private/SteamAudioGeometryComponent.cpp -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudio/Private/SteamAudioListenerComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudio/Private/SteamAudioListenerComponent.cpp -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudio/Private/SteamAudioManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudio/Private/SteamAudioManager.cpp -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudio/Private/SteamAudioManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudio/Private/SteamAudioManager.h -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudio/Private/SteamAudioMaterial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudio/Private/SteamAudioMaterial.cpp -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudio/Private/SteamAudioModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudio/Private/SteamAudioModule.cpp -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudio/Private/SteamAudioOcclusion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudio/Private/SteamAudioOcclusion.cpp -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudio/Private/SteamAudioOcclusion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudio/Private/SteamAudioOcclusion.h -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudio/Private/SteamAudioOcclusionSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudio/Private/SteamAudioOcclusionSettings.cpp -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudio/Private/SteamAudioProbeComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudio/Private/SteamAudioProbeComponent.cpp -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudio/Private/SteamAudioProbeVolume.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudio/Private/SteamAudioProbeVolume.cpp -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudio/Private/SteamAudioReverb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudio/Private/SteamAudioReverb.cpp -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudio/Private/SteamAudioReverb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudio/Private/SteamAudioReverb.h -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudio/Private/SteamAudioReverbSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudio/Private/SteamAudioReverbSettings.cpp -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudio/Private/SteamAudioScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudio/Private/SteamAudioScene.cpp -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudio/Private/SteamAudioScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudio/Private/SteamAudioScene.h -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudio/Private/SteamAudioSerializedObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudio/Private/SteamAudioSerializedObject.cpp -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudio/Private/SteamAudioSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudio/Private/SteamAudioSettings.cpp -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudio/Private/SteamAudioSourceComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudio/Private/SteamAudioSourceComponent.cpp -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudio/Private/SteamAudioSpatialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudio/Private/SteamAudioSpatialization.cpp -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudio/Private/SteamAudioSpatialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudio/Private/SteamAudioSpatialization.h -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudio/Private/SteamAudioSpatializationSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudio/Private/SteamAudioSpatializationSettings.cpp -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudio/Private/SteamAudioStaticMeshActor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudio/Private/SteamAudioStaticMeshActor.cpp -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudio/Private/SteamAudioUnrealAudioEngineInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudio/Private/SteamAudioUnrealAudioEngineInterface.cpp -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudio/Private/SteamAudioUnrealAudioEngineInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudio/Private/SteamAudioUnrealAudioEngineInterface.h -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudio/Public/SOFAFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudio/Public/SOFAFile.h -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudio/Public/SteamAudioAudioEngineInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudio/Public/SteamAudioAudioEngineInterface.h -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudio/Public/SteamAudioBakedListenerComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudio/Public/SteamAudioBakedListenerComponent.h -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudio/Public/SteamAudioBakedSourceComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudio/Public/SteamAudioBakedSourceComponent.h -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudio/Public/SteamAudioDynamicObjectComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudio/Public/SteamAudioDynamicObjectComponent.h -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudio/Public/SteamAudioGeometryComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudio/Public/SteamAudioGeometryComponent.h -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudio/Public/SteamAudioListenerComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudio/Public/SteamAudioListenerComponent.h -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudio/Public/SteamAudioMaterial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudio/Public/SteamAudioMaterial.h -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudio/Public/SteamAudioModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudio/Public/SteamAudioModule.h -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudio/Public/SteamAudioOcclusionSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudio/Public/SteamAudioOcclusionSettings.h -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudio/Public/SteamAudioProbeComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudio/Public/SteamAudioProbeComponent.h -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudio/Public/SteamAudioProbeVolume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudio/Public/SteamAudioProbeVolume.h -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudio/Public/SteamAudioReverbSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudio/Public/SteamAudioReverbSettings.h -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudio/Public/SteamAudioSerializedObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudio/Public/SteamAudioSerializedObject.h -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudio/Public/SteamAudioSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudio/Public/SteamAudioSettings.h -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudio/Public/SteamAudioSourceComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudio/Public/SteamAudioSourceComponent.h -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudio/Public/SteamAudioSpatializationSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudio/Public/SteamAudioSpatializationSettings.h -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudio/Public/SteamAudioStaticMeshActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudio/Public/SteamAudioStaticMeshActor.h -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudio/SteamAudio.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudio/SteamAudio.Build.cs -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudioEditor/Private/SOFAFileFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudioEditor/Private/SOFAFileFactory.cpp -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudioEditor/Private/SOFAFileFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudioEditor/Private/SOFAFileFactory.h -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudioEditor/Private/SteamAudioBakeWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudioEditor/Private/SteamAudioBakeWindow.cpp -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudioEditor/Private/SteamAudioBakeWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudioEditor/Private/SteamAudioBakeWindow.h -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudioEditor/Private/SteamAudioBakedListenerComponentVisualizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudioEditor/Private/SteamAudioBakedListenerComponentVisualizer.cpp -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudioEditor/Private/SteamAudioBakedListenerComponentVisualizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudioEditor/Private/SteamAudioBakedListenerComponentVisualizer.h -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudioEditor/Private/SteamAudioBakedListenerDetails.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudioEditor/Private/SteamAudioBakedListenerDetails.cpp -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudioEditor/Private/SteamAudioBakedListenerDetails.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudioEditor/Private/SteamAudioBakedListenerDetails.h -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudioEditor/Private/SteamAudioBakedSourceComponentVisualizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudioEditor/Private/SteamAudioBakedSourceComponentVisualizer.cpp -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudioEditor/Private/SteamAudioBakedSourceComponentVisualizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudioEditor/Private/SteamAudioBakedSourceComponentVisualizer.h -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudioEditor/Private/SteamAudioBakedSourceDetails.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudioEditor/Private/SteamAudioBakedSourceDetails.cpp -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudioEditor/Private/SteamAudioBakedSourceDetails.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudioEditor/Private/SteamAudioBakedSourceDetails.h -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudioEditor/Private/SteamAudioBaking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudioEditor/Private/SteamAudioBaking.cpp -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudioEditor/Private/SteamAudioBaking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudioEditor/Private/SteamAudioBaking.h -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudioEditor/Private/SteamAudioDynamicObjectDetails.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudioEditor/Private/SteamAudioDynamicObjectDetails.cpp -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudioEditor/Private/SteamAudioDynamicObjectDetails.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudioEditor/Private/SteamAudioDynamicObjectDetails.h -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudioEditor/Private/SteamAudioEditorModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudioEditor/Private/SteamAudioEditorModule.cpp -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudioEditor/Private/SteamAudioListenerDetails.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudioEditor/Private/SteamAudioListenerDetails.cpp -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudioEditor/Private/SteamAudioListenerDetails.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudioEditor/Private/SteamAudioListenerDetails.h -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudioEditor/Private/SteamAudioMaterialFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudioEditor/Private/SteamAudioMaterialFactory.cpp -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudioEditor/Private/SteamAudioMaterialFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudioEditor/Private/SteamAudioMaterialFactory.h -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudioEditor/Private/SteamAudioOcclusionSettingsFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudioEditor/Private/SteamAudioOcclusionSettingsFactory.cpp -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudioEditor/Private/SteamAudioOcclusionSettingsFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudioEditor/Private/SteamAudioOcclusionSettingsFactory.h -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudioEditor/Private/SteamAudioProbeComponentVisualizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudioEditor/Private/SteamAudioProbeComponentVisualizer.cpp -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudioEditor/Private/SteamAudioProbeComponentVisualizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudioEditor/Private/SteamAudioProbeComponentVisualizer.h -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudioEditor/Private/SteamAudioProbeVolumeDetails.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudioEditor/Private/SteamAudioProbeVolumeDetails.cpp -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudioEditor/Private/SteamAudioProbeVolumeDetails.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudioEditor/Private/SteamAudioProbeVolumeDetails.h -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudioEditor/Private/SteamAudioReverbSettingsFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudioEditor/Private/SteamAudioReverbSettingsFactory.cpp -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudioEditor/Private/SteamAudioReverbSettingsFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudioEditor/Private/SteamAudioReverbSettingsFactory.h -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudioEditor/Private/SteamAudioSourceComponentVisualizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudioEditor/Private/SteamAudioSourceComponentVisualizer.cpp -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudioEditor/Private/SteamAudioSourceComponentVisualizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudioEditor/Private/SteamAudioSourceComponentVisualizer.h -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudioEditor/Private/SteamAudioSpatializationSettingsFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudioEditor/Private/SteamAudioSpatializationSettingsFactory.cpp -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudioEditor/Private/SteamAudioSpatializationSettingsFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudioEditor/Private/SteamAudioSpatializationSettingsFactory.h -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudioEditor/Private/TickableNotification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudioEditor/Private/TickableNotification.cpp -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudioEditor/Private/TickableNotification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudioEditor/Private/TickableNotification.h -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudioEditor/Public/SteamAudioEditorModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudioEditor/Public/SteamAudioEditorModule.h -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudioEditor/SteamAudioEditor.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudioEditor/SteamAudioEditor.Build.cs -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudioSDK/SteamAudioSDK.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudioSDK/SteamAudioSDK.Build.cs -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudioSDK/SteamAudioSDK_APL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudioSDK/SteamAudioSDK_APL.xml -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudioSDK/include/phonon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudioSDK/include/phonon.h -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudioSDK/include/phonon_interfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudioSDK/include/phonon_interfaces.h -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudioSDK/include/phonon_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudioSDK/include/phonon_version.h -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudioSDK/lib/windows-x64/GPUUtilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudioSDK/lib/windows-x64/GPUUtilities.dll -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudioSDK/lib/windows-x64/GPUUtilities.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudioSDK/lib/windows-x64/GPUUtilities.lib -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudioSDK/lib/windows-x64/TrueAudioNext.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudioSDK/lib/windows-x64/TrueAudioNext.dll -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudioSDK/lib/windows-x64/TrueAudioNext.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudioSDK/lib/windows-x64/TrueAudioNext.lib -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudioSDK/lib/windows-x64/phonon.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudioSDK/lib/windows-x64/phonon.dll -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudioSDK/lib/windows-x64/phonon.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudioSDK/lib/windows-x64/phonon.lib -------------------------------------------------------------------------------- /SteamAudio/Source/SteamAudioSDK/lib/windows-x64/phonon.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/Source/SteamAudioSDK/lib/windows-x64/phonon.pdb -------------------------------------------------------------------------------- /SteamAudio/SteamAudio.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudio/SteamAudio.uplugin -------------------------------------------------------------------------------- /SteamAudioFMODStudio/Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudioFMODStudio/Resources/Icon128.png -------------------------------------------------------------------------------- /SteamAudioFMODStudio/Source/SteamAudioFMODStudio/Private/SteamAudioFMODStudio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudioFMODStudio/Source/SteamAudioFMODStudio/Private/SteamAudioFMODStudio.cpp -------------------------------------------------------------------------------- /SteamAudioFMODStudio/Source/SteamAudioFMODStudio/Public/SteamAudioFMODStudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudioFMODStudio/Source/SteamAudioFMODStudio/Public/SteamAudioFMODStudio.h -------------------------------------------------------------------------------- /SteamAudioFMODStudio/Source/SteamAudioFMODStudio/SteamAudioFMODStudio.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudioFMODStudio/Source/SteamAudioFMODStudio/SteamAudioFMODStudio.Build.cs -------------------------------------------------------------------------------- /SteamAudioFMODStudio/SteamAudioFMODStudio.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectBorealis/Plugins/HEAD/SteamAudioFMODStudio/SteamAudioFMODStudio.uplugin --------------------------------------------------------------------------------