diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d4b59269..cc8f3001 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,7 +38,7 @@ jobs: run: | echo ${{ secrets.DOCKER_TOKEN }} | docker login ghcr.io -u ${{ secrets.DOCKER_USERNAME }} --password-stdin docker run -td --name unreal --user root \ - -v ${{ github.workspace }}:/sentry-unreal \ + -v ${{ github.workspace }}/plugin-dev:/sentry-unreal \ --workdir /sentry-unreal \ ghcr.io/epicgames/unreal-engine:dev-slim-${{ matrix.unreal }} diff --git a/.github/workflows/update-dependencies.yml b/.github/workflows/update-dependencies.yml index 33508037..09352f68 100644 --- a/.github/workflows/update-dependencies.yml +++ b/.github/workflows/update-dependencies.yml @@ -14,7 +14,7 @@ jobs: native-linux: uses: getsentry/github-workflows/.github/workflows/updater.yml@v1 with: - path: Scripts/update-native-linux.sh + path: scripts/update-native-linux.sh name: Native SDK (Linux) runs-on: ubuntu-latest secrets: @@ -23,7 +23,7 @@ jobs: native-windows: uses: getsentry/github-workflows/.github/workflows/updater.yml@v1 with: - path: Scripts/update-native-windows.ps1 + path: scripts/update-native-windows.ps1 name: Native SDK (Windows) runs-on: windows-latest secrets: @@ -32,7 +32,7 @@ jobs: native-mac: uses: getsentry/github-workflows/.github/workflows/updater.yml@v1 with: - path: Scripts/update-native-mac.sh + path: scripts/update-native-mac.sh name: Native SDK (Mac) runs-on: macos-latest secrets: @@ -41,7 +41,7 @@ jobs: java: uses: getsentry/github-workflows/.github/workflows/updater.yml@v1 with: - path: Scripts/update-java.sh + path: scripts/update-java.sh name: Java SDK (Android) runs-on: ubuntu-latest secrets: @@ -50,7 +50,7 @@ jobs: cocoa: uses: getsentry/github-workflows/.github/workflows/updater.yml@v1 with: - path: Scripts/update-cocoa.sh + path: scripts/update-cocoa.sh name: Cocoa SDK (iOS) runs-on: macos-latest secrets: diff --git a/.gitmodules b/.gitmodules index af202997..a01f688d 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,9 +1,9 @@ -[submodule "Modules/sentry-java"] - path = Modules/sentry-java - url = https://github.com/getsentry/sentry-java.git -[submodule "Modules/sentry-native"] - path = Modules/sentry-native - url = https://github.com/getsentry/sentry-native.git -[submodule "Modules/sentry-cocoa"] - path = Modules/sentry-cocoa - url = https://github.com/getsentry/sentry-cocoa +[submodule "modules/sentry-java"] +path = modules/sentry-java +url = https://github.com/getsentry/sentry-java.git +[submodule "modules/sentry-native"] +path = modules/sentry-native +url = https://github.com/getsentry/sentry-native.git +[submodule "modules/sentry-cocoa"] +path = modules/sentry-cocoa +url = https://github.com/getsentry/sentry-cocoa diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 4550055c..b055ab61 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,6 +1,6 @@ # Contributing -We love receiving PRs from the community with features and fixes. +We love receiving PRs from the community with features and fixes. For big feature it's advised to raise an issue to discuss it first. ## Getting started diff --git a/Modules/sentry-cocoa b/modules/sentry-cocoa similarity index 100% rename from Modules/sentry-cocoa rename to modules/sentry-cocoa diff --git a/Modules/sentry-java b/modules/sentry-java similarity index 100% rename from Modules/sentry-java rename to modules/sentry-java diff --git a/Modules/sentry-native b/modules/sentry-native similarity index 100% rename from Modules/sentry-native rename to modules/sentry-native diff --git a/Config/FilterPlugin.ini b/plugin-dev/Config/FilterPlugin.ini similarity index 100% rename from Config/FilterPlugin.ini rename to plugin-dev/Config/FilterPlugin.ini diff --git a/Content/Maps/SentryDemo.umap b/plugin-dev/Content/Maps/SentryDemo.umap similarity index 100% rename from Content/Maps/SentryDemo.umap rename to plugin-dev/Content/Maps/SentryDemo.umap diff --git a/Content/UI/W_SentryDemo.uasset b/plugin-dev/Content/UI/W_SentryDemo.uasset similarity index 100% rename from Content/UI/W_SentryDemo.uasset rename to plugin-dev/Content/UI/W_SentryDemo.uasset diff --git a/Resources/Icon128.png b/plugin-dev/Resources/Icon128.png similarity index 100% rename from Resources/Icon128.png rename to plugin-dev/Resources/Icon128.png diff --git a/Resources/sentry.properties b/plugin-dev/Resources/sentry.properties similarity index 100% rename from Resources/sentry.properties rename to plugin-dev/Resources/sentry.properties diff --git a/Sentry.uplugin b/plugin-dev/Sentry.uplugin similarity index 100% rename from Sentry.uplugin rename to plugin-dev/Sentry.uplugin diff --git a/Source/Sentry/Private/Android/Callbacks/SentryScopeCallbackAndroid.cpp b/plugin-dev/Source/Sentry/Private/Android/Callbacks/SentryScopeCallbackAndroid.cpp similarity index 100% rename from Source/Sentry/Private/Android/Callbacks/SentryScopeCallbackAndroid.cpp rename to plugin-dev/Source/Sentry/Private/Android/Callbacks/SentryScopeCallbackAndroid.cpp diff --git a/Source/Sentry/Private/Android/Callbacks/SentryScopeCallbackAndroid.h b/plugin-dev/Source/Sentry/Private/Android/Callbacks/SentryScopeCallbackAndroid.h similarity index 100% rename from Source/Sentry/Private/Android/Callbacks/SentryScopeCallbackAndroid.h rename to plugin-dev/Source/Sentry/Private/Android/Callbacks/SentryScopeCallbackAndroid.h diff --git a/Source/Sentry/Private/Android/Infrastructure/SentryConvertorsAndroid.cpp b/plugin-dev/Source/Sentry/Private/Android/Infrastructure/SentryConvertorsAndroid.cpp similarity index 100% rename from Source/Sentry/Private/Android/Infrastructure/SentryConvertorsAndroid.cpp rename to plugin-dev/Source/Sentry/Private/Android/Infrastructure/SentryConvertorsAndroid.cpp diff --git a/Source/Sentry/Private/Android/Infrastructure/SentryConvertorsAndroid.h b/plugin-dev/Source/Sentry/Private/Android/Infrastructure/SentryConvertorsAndroid.h similarity index 100% rename from Source/Sentry/Private/Android/Infrastructure/SentryConvertorsAndroid.h rename to plugin-dev/Source/Sentry/Private/Android/Infrastructure/SentryConvertorsAndroid.h diff --git a/Source/Sentry/Private/Android/Infrastructure/SentryMethodCallAndroid.cpp b/plugin-dev/Source/Sentry/Private/Android/Infrastructure/SentryMethodCallAndroid.cpp similarity index 100% rename from Source/Sentry/Private/Android/Infrastructure/SentryMethodCallAndroid.cpp rename to plugin-dev/Source/Sentry/Private/Android/Infrastructure/SentryMethodCallAndroid.cpp diff --git a/Source/Sentry/Private/Android/Infrastructure/SentryMethodCallAndroid.h b/plugin-dev/Source/Sentry/Private/Android/Infrastructure/SentryMethodCallAndroid.h similarity index 100% rename from Source/Sentry/Private/Android/Infrastructure/SentryMethodCallAndroid.h rename to plugin-dev/Source/Sentry/Private/Android/Infrastructure/SentryMethodCallAndroid.h diff --git a/Source/Sentry/Private/Android/Java/SentryBridgeJava.java b/plugin-dev/Source/Sentry/Private/Android/Java/SentryBridgeJava.java similarity index 100% rename from Source/Sentry/Private/Android/Java/SentryBridgeJava.java rename to plugin-dev/Source/Sentry/Private/Android/Java/SentryBridgeJava.java diff --git a/Source/Sentry/Private/Android/Jni/SentryJniAndroid.cpp b/plugin-dev/Source/Sentry/Private/Android/Jni/SentryJniAndroid.cpp similarity index 100% rename from Source/Sentry/Private/Android/Jni/SentryJniAndroid.cpp rename to plugin-dev/Source/Sentry/Private/Android/Jni/SentryJniAndroid.cpp diff --git a/Source/Sentry/Private/Android/SentryAttachmentAndroid.cpp b/plugin-dev/Source/Sentry/Private/Android/SentryAttachmentAndroid.cpp similarity index 100% rename from Source/Sentry/Private/Android/SentryAttachmentAndroid.cpp rename to plugin-dev/Source/Sentry/Private/Android/SentryAttachmentAndroid.cpp diff --git a/Source/Sentry/Private/Android/SentryAttachmentAndroid.h b/plugin-dev/Source/Sentry/Private/Android/SentryAttachmentAndroid.h similarity index 100% rename from Source/Sentry/Private/Android/SentryAttachmentAndroid.h rename to plugin-dev/Source/Sentry/Private/Android/SentryAttachmentAndroid.h diff --git a/Source/Sentry/Private/Android/SentryBreadcrumbAndroid.cpp b/plugin-dev/Source/Sentry/Private/Android/SentryBreadcrumbAndroid.cpp similarity index 100% rename from Source/Sentry/Private/Android/SentryBreadcrumbAndroid.cpp rename to plugin-dev/Source/Sentry/Private/Android/SentryBreadcrumbAndroid.cpp diff --git a/Source/Sentry/Private/Android/SentryBreadcrumbAndroid.h b/plugin-dev/Source/Sentry/Private/Android/SentryBreadcrumbAndroid.h similarity index 100% rename from Source/Sentry/Private/Android/SentryBreadcrumbAndroid.h rename to plugin-dev/Source/Sentry/Private/Android/SentryBreadcrumbAndroid.h diff --git a/Source/Sentry/Private/Android/SentryEventAndroid.cpp b/plugin-dev/Source/Sentry/Private/Android/SentryEventAndroid.cpp similarity index 100% rename from Source/Sentry/Private/Android/SentryEventAndroid.cpp rename to plugin-dev/Source/Sentry/Private/Android/SentryEventAndroid.cpp diff --git a/Source/Sentry/Private/Android/SentryEventAndroid.h b/plugin-dev/Source/Sentry/Private/Android/SentryEventAndroid.h similarity index 100% rename from Source/Sentry/Private/Android/SentryEventAndroid.h rename to plugin-dev/Source/Sentry/Private/Android/SentryEventAndroid.h diff --git a/Source/Sentry/Private/Android/SentryIdAndroid.cpp b/plugin-dev/Source/Sentry/Private/Android/SentryIdAndroid.cpp similarity index 100% rename from Source/Sentry/Private/Android/SentryIdAndroid.cpp rename to plugin-dev/Source/Sentry/Private/Android/SentryIdAndroid.cpp diff --git a/Source/Sentry/Private/Android/SentryIdAndroid.h b/plugin-dev/Source/Sentry/Private/Android/SentryIdAndroid.h similarity index 100% rename from Source/Sentry/Private/Android/SentryIdAndroid.h rename to plugin-dev/Source/Sentry/Private/Android/SentryIdAndroid.h diff --git a/Source/Sentry/Private/Android/SentryScopeAndroid.cpp b/plugin-dev/Source/Sentry/Private/Android/SentryScopeAndroid.cpp similarity index 100% rename from Source/Sentry/Private/Android/SentryScopeAndroid.cpp rename to plugin-dev/Source/Sentry/Private/Android/SentryScopeAndroid.cpp diff --git a/Source/Sentry/Private/Android/SentryScopeAndroid.h b/plugin-dev/Source/Sentry/Private/Android/SentryScopeAndroid.h similarity index 100% rename from Source/Sentry/Private/Android/SentryScopeAndroid.h rename to plugin-dev/Source/Sentry/Private/Android/SentryScopeAndroid.h diff --git a/Source/Sentry/Private/Android/SentrySubsystemAndroid.cpp b/plugin-dev/Source/Sentry/Private/Android/SentrySubsystemAndroid.cpp similarity index 100% rename from Source/Sentry/Private/Android/SentrySubsystemAndroid.cpp rename to plugin-dev/Source/Sentry/Private/Android/SentrySubsystemAndroid.cpp diff --git a/Source/Sentry/Private/Android/SentrySubsystemAndroid.h b/plugin-dev/Source/Sentry/Private/Android/SentrySubsystemAndroid.h similarity index 100% rename from Source/Sentry/Private/Android/SentrySubsystemAndroid.h rename to plugin-dev/Source/Sentry/Private/Android/SentrySubsystemAndroid.h diff --git a/Source/Sentry/Private/Android/SentryUserAndroid.cpp b/plugin-dev/Source/Sentry/Private/Android/SentryUserAndroid.cpp similarity index 100% rename from Source/Sentry/Private/Android/SentryUserAndroid.cpp rename to plugin-dev/Source/Sentry/Private/Android/SentryUserAndroid.cpp diff --git a/Source/Sentry/Private/Android/SentryUserAndroid.h b/plugin-dev/Source/Sentry/Private/Android/SentryUserAndroid.h similarity index 100% rename from Source/Sentry/Private/Android/SentryUserAndroid.h rename to plugin-dev/Source/Sentry/Private/Android/SentryUserAndroid.h diff --git a/Source/Sentry/Private/Android/SentryUserFeedbackAndroid.cpp b/plugin-dev/Source/Sentry/Private/Android/SentryUserFeedbackAndroid.cpp similarity index 100% rename from Source/Sentry/Private/Android/SentryUserFeedbackAndroid.cpp rename to plugin-dev/Source/Sentry/Private/Android/SentryUserFeedbackAndroid.cpp diff --git a/Source/Sentry/Private/Android/SentryUserFeedbackAndroid.h b/plugin-dev/Source/Sentry/Private/Android/SentryUserFeedbackAndroid.h similarity index 100% rename from Source/Sentry/Private/Android/SentryUserFeedbackAndroid.h rename to plugin-dev/Source/Sentry/Private/Android/SentryUserFeedbackAndroid.h diff --git a/Source/Sentry/Private/Desktop/Convenience/SentryInclude.h b/plugin-dev/Source/Sentry/Private/Desktop/Convenience/SentryInclude.h similarity index 100% rename from Source/Sentry/Private/Desktop/Convenience/SentryInclude.h rename to plugin-dev/Source/Sentry/Private/Desktop/Convenience/SentryInclude.h diff --git a/Source/Sentry/Private/Desktop/CrashReporter/SentryCrashReporter.cpp b/plugin-dev/Source/Sentry/Private/Desktop/CrashReporter/SentryCrashReporter.cpp similarity index 100% rename from Source/Sentry/Private/Desktop/CrashReporter/SentryCrashReporter.cpp rename to plugin-dev/Source/Sentry/Private/Desktop/CrashReporter/SentryCrashReporter.cpp diff --git a/Source/Sentry/Private/Desktop/CrashReporter/SentryCrashReporter.h b/plugin-dev/Source/Sentry/Private/Desktop/CrashReporter/SentryCrashReporter.h similarity index 100% rename from Source/Sentry/Private/Desktop/CrashReporter/SentryCrashReporter.h rename to plugin-dev/Source/Sentry/Private/Desktop/CrashReporter/SentryCrashReporter.h diff --git a/Source/Sentry/Private/Desktop/Infrastructure/SentryConvertorsDesktop.cpp b/plugin-dev/Source/Sentry/Private/Desktop/Infrastructure/SentryConvertorsDesktop.cpp similarity index 100% rename from Source/Sentry/Private/Desktop/Infrastructure/SentryConvertorsDesktop.cpp rename to plugin-dev/Source/Sentry/Private/Desktop/Infrastructure/SentryConvertorsDesktop.cpp diff --git a/Source/Sentry/Private/Desktop/Infrastructure/SentryConvertorsDesktop.h b/plugin-dev/Source/Sentry/Private/Desktop/Infrastructure/SentryConvertorsDesktop.h similarity index 100% rename from Source/Sentry/Private/Desktop/Infrastructure/SentryConvertorsDesktop.h rename to plugin-dev/Source/Sentry/Private/Desktop/Infrastructure/SentryConvertorsDesktop.h diff --git a/Source/Sentry/Private/Desktop/SentryBreadcrumbDesktop.cpp b/plugin-dev/Source/Sentry/Private/Desktop/SentryBreadcrumbDesktop.cpp similarity index 100% rename from Source/Sentry/Private/Desktop/SentryBreadcrumbDesktop.cpp rename to plugin-dev/Source/Sentry/Private/Desktop/SentryBreadcrumbDesktop.cpp diff --git a/Source/Sentry/Private/Desktop/SentryBreadcrumbDesktop.h b/plugin-dev/Source/Sentry/Private/Desktop/SentryBreadcrumbDesktop.h similarity index 100% rename from Source/Sentry/Private/Desktop/SentryBreadcrumbDesktop.h rename to plugin-dev/Source/Sentry/Private/Desktop/SentryBreadcrumbDesktop.h diff --git a/Source/Sentry/Private/Desktop/SentryEventDesktop.cpp b/plugin-dev/Source/Sentry/Private/Desktop/SentryEventDesktop.cpp similarity index 100% rename from Source/Sentry/Private/Desktop/SentryEventDesktop.cpp rename to plugin-dev/Source/Sentry/Private/Desktop/SentryEventDesktop.cpp diff --git a/Source/Sentry/Private/Desktop/SentryEventDesktop.h b/plugin-dev/Source/Sentry/Private/Desktop/SentryEventDesktop.h similarity index 100% rename from Source/Sentry/Private/Desktop/SentryEventDesktop.h rename to plugin-dev/Source/Sentry/Private/Desktop/SentryEventDesktop.h diff --git a/Source/Sentry/Private/Desktop/SentryIdDesktop.cpp b/plugin-dev/Source/Sentry/Private/Desktop/SentryIdDesktop.cpp similarity index 100% rename from Source/Sentry/Private/Desktop/SentryIdDesktop.cpp rename to plugin-dev/Source/Sentry/Private/Desktop/SentryIdDesktop.cpp diff --git a/Source/Sentry/Private/Desktop/SentryIdDesktop.h b/plugin-dev/Source/Sentry/Private/Desktop/SentryIdDesktop.h similarity index 100% rename from Source/Sentry/Private/Desktop/SentryIdDesktop.h rename to plugin-dev/Source/Sentry/Private/Desktop/SentryIdDesktop.h diff --git a/Source/Sentry/Private/Desktop/SentrySubsystemDesktop.cpp b/plugin-dev/Source/Sentry/Private/Desktop/SentrySubsystemDesktop.cpp similarity index 100% rename from Source/Sentry/Private/Desktop/SentrySubsystemDesktop.cpp rename to plugin-dev/Source/Sentry/Private/Desktop/SentrySubsystemDesktop.cpp diff --git a/Source/Sentry/Private/Desktop/SentrySubsystemDesktop.h b/plugin-dev/Source/Sentry/Private/Desktop/SentrySubsystemDesktop.h similarity index 100% rename from Source/Sentry/Private/Desktop/SentrySubsystemDesktop.h rename to plugin-dev/Source/Sentry/Private/Desktop/SentrySubsystemDesktop.h diff --git a/Source/Sentry/Private/Desktop/SentryUserDesktop.cpp b/plugin-dev/Source/Sentry/Private/Desktop/SentryUserDesktop.cpp similarity index 100% rename from Source/Sentry/Private/Desktop/SentryUserDesktop.cpp rename to plugin-dev/Source/Sentry/Private/Desktop/SentryUserDesktop.cpp diff --git a/Source/Sentry/Private/Desktop/SentryUserDesktop.h b/plugin-dev/Source/Sentry/Private/Desktop/SentryUserDesktop.h similarity index 100% rename from Source/Sentry/Private/Desktop/SentryUserDesktop.h rename to plugin-dev/Source/Sentry/Private/Desktop/SentryUserDesktop.h diff --git a/Source/Sentry/Private/IOS/Infrastructure/SentryConvertorsIOS.cpp b/plugin-dev/Source/Sentry/Private/IOS/Infrastructure/SentryConvertorsIOS.cpp similarity index 100% rename from Source/Sentry/Private/IOS/Infrastructure/SentryConvertorsIOS.cpp rename to plugin-dev/Source/Sentry/Private/IOS/Infrastructure/SentryConvertorsIOS.cpp diff --git a/Source/Sentry/Private/IOS/Infrastructure/SentryConvertorsIOS.h b/plugin-dev/Source/Sentry/Private/IOS/Infrastructure/SentryConvertorsIOS.h similarity index 100% rename from Source/Sentry/Private/IOS/Infrastructure/SentryConvertorsIOS.h rename to plugin-dev/Source/Sentry/Private/IOS/Infrastructure/SentryConvertorsIOS.h diff --git a/Source/Sentry/Private/IOS/SentryAttachmentIOS.cpp b/plugin-dev/Source/Sentry/Private/IOS/SentryAttachmentIOS.cpp similarity index 100% rename from Source/Sentry/Private/IOS/SentryAttachmentIOS.cpp rename to plugin-dev/Source/Sentry/Private/IOS/SentryAttachmentIOS.cpp diff --git a/Source/Sentry/Private/IOS/SentryAttachmentIOS.h b/plugin-dev/Source/Sentry/Private/IOS/SentryAttachmentIOS.h similarity index 100% rename from Source/Sentry/Private/IOS/SentryAttachmentIOS.h rename to plugin-dev/Source/Sentry/Private/IOS/SentryAttachmentIOS.h diff --git a/Source/Sentry/Private/IOS/SentryBreadcrumbIOS.cpp b/plugin-dev/Source/Sentry/Private/IOS/SentryBreadcrumbIOS.cpp similarity index 100% rename from Source/Sentry/Private/IOS/SentryBreadcrumbIOS.cpp rename to plugin-dev/Source/Sentry/Private/IOS/SentryBreadcrumbIOS.cpp diff --git a/Source/Sentry/Private/IOS/SentryBreadcrumbIOS.h b/plugin-dev/Source/Sentry/Private/IOS/SentryBreadcrumbIOS.h similarity index 100% rename from Source/Sentry/Private/IOS/SentryBreadcrumbIOS.h rename to plugin-dev/Source/Sentry/Private/IOS/SentryBreadcrumbIOS.h diff --git a/Source/Sentry/Private/IOS/SentryEventIOS.cpp b/plugin-dev/Source/Sentry/Private/IOS/SentryEventIOS.cpp similarity index 100% rename from Source/Sentry/Private/IOS/SentryEventIOS.cpp rename to plugin-dev/Source/Sentry/Private/IOS/SentryEventIOS.cpp diff --git a/Source/Sentry/Private/IOS/SentryEventIOS.h b/plugin-dev/Source/Sentry/Private/IOS/SentryEventIOS.h similarity index 100% rename from Source/Sentry/Private/IOS/SentryEventIOS.h rename to plugin-dev/Source/Sentry/Private/IOS/SentryEventIOS.h diff --git a/Source/Sentry/Private/IOS/SentryIdIOS.cpp b/plugin-dev/Source/Sentry/Private/IOS/SentryIdIOS.cpp similarity index 100% rename from Source/Sentry/Private/IOS/SentryIdIOS.cpp rename to plugin-dev/Source/Sentry/Private/IOS/SentryIdIOS.cpp diff --git a/Source/Sentry/Private/IOS/SentryIdIOS.h b/plugin-dev/Source/Sentry/Private/IOS/SentryIdIOS.h similarity index 100% rename from Source/Sentry/Private/IOS/SentryIdIOS.h rename to plugin-dev/Source/Sentry/Private/IOS/SentryIdIOS.h diff --git a/Source/Sentry/Private/IOS/SentryScopeIOS.cpp b/plugin-dev/Source/Sentry/Private/IOS/SentryScopeIOS.cpp similarity index 100% rename from Source/Sentry/Private/IOS/SentryScopeIOS.cpp rename to plugin-dev/Source/Sentry/Private/IOS/SentryScopeIOS.cpp diff --git a/Source/Sentry/Private/IOS/SentryScopeIOS.h b/plugin-dev/Source/Sentry/Private/IOS/SentryScopeIOS.h similarity index 100% rename from Source/Sentry/Private/IOS/SentryScopeIOS.h rename to plugin-dev/Source/Sentry/Private/IOS/SentryScopeIOS.h diff --git a/Source/Sentry/Private/IOS/SentrySubsystemIOS.cpp b/plugin-dev/Source/Sentry/Private/IOS/SentrySubsystemIOS.cpp similarity index 100% rename from Source/Sentry/Private/IOS/SentrySubsystemIOS.cpp rename to plugin-dev/Source/Sentry/Private/IOS/SentrySubsystemIOS.cpp diff --git a/Source/Sentry/Private/IOS/SentrySubsystemIOS.h b/plugin-dev/Source/Sentry/Private/IOS/SentrySubsystemIOS.h similarity index 100% rename from Source/Sentry/Private/IOS/SentrySubsystemIOS.h rename to plugin-dev/Source/Sentry/Private/IOS/SentrySubsystemIOS.h diff --git a/Source/Sentry/Private/IOS/SentryUserFeedbackIOS.cpp b/plugin-dev/Source/Sentry/Private/IOS/SentryUserFeedbackIOS.cpp similarity index 100% rename from Source/Sentry/Private/IOS/SentryUserFeedbackIOS.cpp rename to plugin-dev/Source/Sentry/Private/IOS/SentryUserFeedbackIOS.cpp diff --git a/Source/Sentry/Private/IOS/SentryUserFeedbackIOS.h b/plugin-dev/Source/Sentry/Private/IOS/SentryUserFeedbackIOS.h similarity index 100% rename from Source/Sentry/Private/IOS/SentryUserFeedbackIOS.h rename to plugin-dev/Source/Sentry/Private/IOS/SentryUserFeedbackIOS.h diff --git a/Source/Sentry/Private/IOS/SentryUserIOS.cpp b/plugin-dev/Source/Sentry/Private/IOS/SentryUserIOS.cpp similarity index 100% rename from Source/Sentry/Private/IOS/SentryUserIOS.cpp rename to plugin-dev/Source/Sentry/Private/IOS/SentryUserIOS.cpp diff --git a/Source/Sentry/Private/IOS/SentryUserIOS.h b/plugin-dev/Source/Sentry/Private/IOS/SentryUserIOS.h similarity index 100% rename from Source/Sentry/Private/IOS/SentryUserIOS.h rename to plugin-dev/Source/Sentry/Private/IOS/SentryUserIOS.h diff --git a/Source/Sentry/Private/Interface/SentryAttachmentInterface.h b/plugin-dev/Source/Sentry/Private/Interface/SentryAttachmentInterface.h similarity index 100% rename from Source/Sentry/Private/Interface/SentryAttachmentInterface.h rename to plugin-dev/Source/Sentry/Private/Interface/SentryAttachmentInterface.h diff --git a/Source/Sentry/Private/Interface/SentryBreadcrumbInterface.h b/plugin-dev/Source/Sentry/Private/Interface/SentryBreadcrumbInterface.h similarity index 100% rename from Source/Sentry/Private/Interface/SentryBreadcrumbInterface.h rename to plugin-dev/Source/Sentry/Private/Interface/SentryBreadcrumbInterface.h diff --git a/Source/Sentry/Private/Interface/SentryEventInterface.h b/plugin-dev/Source/Sentry/Private/Interface/SentryEventInterface.h similarity index 100% rename from Source/Sentry/Private/Interface/SentryEventInterface.h rename to plugin-dev/Source/Sentry/Private/Interface/SentryEventInterface.h diff --git a/Source/Sentry/Private/Interface/SentryIdInterface.h b/plugin-dev/Source/Sentry/Private/Interface/SentryIdInterface.h similarity index 100% rename from Source/Sentry/Private/Interface/SentryIdInterface.h rename to plugin-dev/Source/Sentry/Private/Interface/SentryIdInterface.h diff --git a/Source/Sentry/Private/Interface/SentryScopeInterface.h b/plugin-dev/Source/Sentry/Private/Interface/SentryScopeInterface.h similarity index 100% rename from Source/Sentry/Private/Interface/SentryScopeInterface.h rename to plugin-dev/Source/Sentry/Private/Interface/SentryScopeInterface.h diff --git a/Source/Sentry/Private/Interface/SentrySubsystemInterface.h b/plugin-dev/Source/Sentry/Private/Interface/SentrySubsystemInterface.h similarity index 100% rename from Source/Sentry/Private/Interface/SentrySubsystemInterface.h rename to plugin-dev/Source/Sentry/Private/Interface/SentrySubsystemInterface.h diff --git a/Source/Sentry/Private/Interface/SentryUserFeedbackInterface.h b/plugin-dev/Source/Sentry/Private/Interface/SentryUserFeedbackInterface.h similarity index 100% rename from Source/Sentry/Private/Interface/SentryUserFeedbackInterface.h rename to plugin-dev/Source/Sentry/Private/Interface/SentryUserFeedbackInterface.h diff --git a/Source/Sentry/Private/Interface/SentryUserInterface.h b/plugin-dev/Source/Sentry/Private/Interface/SentryUserInterface.h similarity index 100% rename from Source/Sentry/Private/Interface/SentryUserInterface.h rename to plugin-dev/Source/Sentry/Private/Interface/SentryUserInterface.h diff --git a/Source/Sentry/Private/SentryAttachment.cpp b/plugin-dev/Source/Sentry/Private/SentryAttachment.cpp similarity index 100% rename from Source/Sentry/Private/SentryAttachment.cpp rename to plugin-dev/Source/Sentry/Private/SentryAttachment.cpp diff --git a/Source/Sentry/Private/SentryBreadcrumb.cpp b/plugin-dev/Source/Sentry/Private/SentryBreadcrumb.cpp similarity index 100% rename from Source/Sentry/Private/SentryBreadcrumb.cpp rename to plugin-dev/Source/Sentry/Private/SentryBreadcrumb.cpp diff --git a/Source/Sentry/Private/SentryDefines.h b/plugin-dev/Source/Sentry/Private/SentryDefines.h similarity index 100% rename from Source/Sentry/Private/SentryDefines.h rename to plugin-dev/Source/Sentry/Private/SentryDefines.h diff --git a/Source/Sentry/Private/SentryEvent.cpp b/plugin-dev/Source/Sentry/Private/SentryEvent.cpp similarity index 100% rename from Source/Sentry/Private/SentryEvent.cpp rename to plugin-dev/Source/Sentry/Private/SentryEvent.cpp diff --git a/Source/Sentry/Private/SentryId.cpp b/plugin-dev/Source/Sentry/Private/SentryId.cpp similarity index 100% rename from Source/Sentry/Private/SentryId.cpp rename to plugin-dev/Source/Sentry/Private/SentryId.cpp diff --git a/Source/Sentry/Private/SentryLibrary.cpp b/plugin-dev/Source/Sentry/Private/SentryLibrary.cpp similarity index 100% rename from Source/Sentry/Private/SentryLibrary.cpp rename to plugin-dev/Source/Sentry/Private/SentryLibrary.cpp diff --git a/Source/Sentry/Private/SentryModule.cpp b/plugin-dev/Source/Sentry/Private/SentryModule.cpp similarity index 100% rename from Source/Sentry/Private/SentryModule.cpp rename to plugin-dev/Source/Sentry/Private/SentryModule.cpp diff --git a/Source/Sentry/Private/SentryScope.cpp b/plugin-dev/Source/Sentry/Private/SentryScope.cpp similarity index 100% rename from Source/Sentry/Private/SentryScope.cpp rename to plugin-dev/Source/Sentry/Private/SentryScope.cpp diff --git a/Source/Sentry/Private/SentrySettings.cpp b/plugin-dev/Source/Sentry/Private/SentrySettings.cpp similarity index 100% rename from Source/Sentry/Private/SentrySettings.cpp rename to plugin-dev/Source/Sentry/Private/SentrySettings.cpp diff --git a/Source/Sentry/Private/SentrySubsystem.cpp b/plugin-dev/Source/Sentry/Private/SentrySubsystem.cpp similarity index 100% rename from Source/Sentry/Private/SentrySubsystem.cpp rename to plugin-dev/Source/Sentry/Private/SentrySubsystem.cpp diff --git a/Source/Sentry/Private/SentryUser.cpp b/plugin-dev/Source/Sentry/Private/SentryUser.cpp similarity index 100% rename from Source/Sentry/Private/SentryUser.cpp rename to plugin-dev/Source/Sentry/Private/SentryUser.cpp diff --git a/Source/Sentry/Private/SentryUserFeedback.cpp b/plugin-dev/Source/Sentry/Private/SentryUserFeedback.cpp similarity index 100% rename from Source/Sentry/Private/SentryUserFeedback.cpp rename to plugin-dev/Source/Sentry/Private/SentryUserFeedback.cpp diff --git a/Source/Sentry/Private/Tests/SentryBreadcrumb.spec.cpp b/plugin-dev/Source/Sentry/Private/Tests/SentryBreadcrumb.spec.cpp similarity index 100% rename from Source/Sentry/Private/Tests/SentryBreadcrumb.spec.cpp rename to plugin-dev/Source/Sentry/Private/Tests/SentryBreadcrumb.spec.cpp diff --git a/Source/Sentry/Private/Tests/SentryEvent.spec.cpp b/plugin-dev/Source/Sentry/Private/Tests/SentryEvent.spec.cpp similarity index 100% rename from Source/Sentry/Private/Tests/SentryEvent.spec.cpp rename to plugin-dev/Source/Sentry/Private/Tests/SentryEvent.spec.cpp diff --git a/Source/Sentry/Private/Tests/SentrySubsystem.spec.cpp b/plugin-dev/Source/Sentry/Private/Tests/SentrySubsystem.spec.cpp similarity index 100% rename from Source/Sentry/Private/Tests/SentrySubsystem.spec.cpp rename to plugin-dev/Source/Sentry/Private/Tests/SentrySubsystem.spec.cpp diff --git a/Source/Sentry/Private/Tests/SentryUser.spec.cpp b/plugin-dev/Source/Sentry/Private/Tests/SentryUser.spec.cpp similarity index 100% rename from Source/Sentry/Private/Tests/SentryUser.spec.cpp rename to plugin-dev/Source/Sentry/Private/Tests/SentryUser.spec.cpp diff --git a/Source/Sentry/Public/SentryAttachment.h b/plugin-dev/Source/Sentry/Public/SentryAttachment.h similarity index 100% rename from Source/Sentry/Public/SentryAttachment.h rename to plugin-dev/Source/Sentry/Public/SentryAttachment.h diff --git a/Source/Sentry/Public/SentryBreadcrumb.h b/plugin-dev/Source/Sentry/Public/SentryBreadcrumb.h similarity index 100% rename from Source/Sentry/Public/SentryBreadcrumb.h rename to plugin-dev/Source/Sentry/Public/SentryBreadcrumb.h diff --git a/Source/Sentry/Public/SentryDataTypes.h b/plugin-dev/Source/Sentry/Public/SentryDataTypes.h similarity index 100% rename from Source/Sentry/Public/SentryDataTypes.h rename to plugin-dev/Source/Sentry/Public/SentryDataTypes.h diff --git a/Source/Sentry/Public/SentryEvent.h b/plugin-dev/Source/Sentry/Public/SentryEvent.h similarity index 100% rename from Source/Sentry/Public/SentryEvent.h rename to plugin-dev/Source/Sentry/Public/SentryEvent.h diff --git a/Source/Sentry/Public/SentryId.h b/plugin-dev/Source/Sentry/Public/SentryId.h similarity index 100% rename from Source/Sentry/Public/SentryId.h rename to plugin-dev/Source/Sentry/Public/SentryId.h diff --git a/Source/Sentry/Public/SentryLibrary.h b/plugin-dev/Source/Sentry/Public/SentryLibrary.h similarity index 100% rename from Source/Sentry/Public/SentryLibrary.h rename to plugin-dev/Source/Sentry/Public/SentryLibrary.h diff --git a/Source/Sentry/Public/SentryModule.h b/plugin-dev/Source/Sentry/Public/SentryModule.h similarity index 100% rename from Source/Sentry/Public/SentryModule.h rename to plugin-dev/Source/Sentry/Public/SentryModule.h diff --git a/Source/Sentry/Public/SentryScope.h b/plugin-dev/Source/Sentry/Public/SentryScope.h similarity index 100% rename from Source/Sentry/Public/SentryScope.h rename to plugin-dev/Source/Sentry/Public/SentryScope.h diff --git a/Source/Sentry/Public/SentrySettings.h b/plugin-dev/Source/Sentry/Public/SentrySettings.h similarity index 100% rename from Source/Sentry/Public/SentrySettings.h rename to plugin-dev/Source/Sentry/Public/SentrySettings.h diff --git a/Source/Sentry/Public/SentrySubsystem.h b/plugin-dev/Source/Sentry/Public/SentrySubsystem.h similarity index 100% rename from Source/Sentry/Public/SentrySubsystem.h rename to plugin-dev/Source/Sentry/Public/SentrySubsystem.h diff --git a/Source/Sentry/Public/SentryUser.h b/plugin-dev/Source/Sentry/Public/SentryUser.h similarity index 100% rename from Source/Sentry/Public/SentryUser.h rename to plugin-dev/Source/Sentry/Public/SentryUser.h diff --git a/Source/Sentry/Public/SentryUserFeedback.h b/plugin-dev/Source/Sentry/Public/SentryUserFeedback.h similarity index 100% rename from Source/Sentry/Public/SentryUserFeedback.h rename to plugin-dev/Source/Sentry/Public/SentryUserFeedback.h diff --git a/Source/Sentry/Sentry.Build.cs b/plugin-dev/Source/Sentry/Sentry.Build.cs similarity index 100% rename from Source/Sentry/Sentry.Build.cs rename to plugin-dev/Source/Sentry/Sentry.Build.cs diff --git a/Source/Sentry/Sentry_Android_UPL.xml b/plugin-dev/Source/Sentry/Sentry_Android_UPL.xml similarity index 100% rename from Source/Sentry/Sentry_Android_UPL.xml rename to plugin-dev/Source/Sentry/Sentry_Android_UPL.xml diff --git a/Source/Sentry/Sentry_IOS_UPL.xml b/plugin-dev/Source/Sentry/Sentry_IOS_UPL.xml similarity index 100% rename from Source/Sentry/Sentry_IOS_UPL.xml rename to plugin-dev/Source/Sentry/Sentry_IOS_UPL.xml diff --git a/Source/ThirdParty/Android/sentry-android-core-release.aar b/plugin-dev/Source/ThirdParty/Android/sentry-android-core-release.aar similarity index 100% rename from Source/ThirdParty/Android/sentry-android-core-release.aar rename to plugin-dev/Source/ThirdParty/Android/sentry-android-core-release.aar diff --git a/Source/ThirdParty/Android/sentry-android-ndk-release.aar b/plugin-dev/Source/ThirdParty/Android/sentry-android-ndk-release.aar similarity index 100% rename from Source/ThirdParty/Android/sentry-android-ndk-release.aar rename to plugin-dev/Source/ThirdParty/Android/sentry-android-ndk-release.aar diff --git a/Source/ThirdParty/Android/sentry.jar b/plugin-dev/Source/ThirdParty/Android/sentry.jar similarity index 100% rename from Source/ThirdParty/Android/sentry.jar rename to plugin-dev/Source/ThirdParty/Android/sentry.jar diff --git a/Source/ThirdParty/IOS/Sentry.embeddedframework.zip b/plugin-dev/Source/ThirdParty/IOS/Sentry.embeddedframework.zip similarity index 100% rename from Source/ThirdParty/IOS/Sentry.embeddedframework.zip rename to plugin-dev/Source/ThirdParty/IOS/Sentry.embeddedframework.zip diff --git a/Source/ThirdParty/IOS/Sentry.framework/Headers/PrivateSentrySDKOnly.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/PrivateSentrySDKOnly.h similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/Headers/PrivateSentrySDKOnly.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/PrivateSentrySDKOnly.h diff --git a/Source/ThirdParty/IOS/Sentry.framework/Headers/Sentry.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/Sentry.h similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/Headers/Sentry.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/Sentry.h diff --git a/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryAppStartMeasurement.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryAppStartMeasurement.h similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/Headers/SentryAppStartMeasurement.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryAppStartMeasurement.h diff --git a/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryAttachment.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryAttachment.h similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/Headers/SentryAttachment.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryAttachment.h diff --git a/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryBreadcrumb.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryBreadcrumb.h similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/Headers/SentryBreadcrumb.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryBreadcrumb.h diff --git a/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryClient.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryClient.h similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/Headers/SentryClient.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryClient.h diff --git a/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryCrashExceptionApplication.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryCrashExceptionApplication.h similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/Headers/SentryCrashExceptionApplication.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryCrashExceptionApplication.h diff --git a/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryDebugImageProvider.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryDebugImageProvider.h similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/Headers/SentryDebugImageProvider.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryDebugImageProvider.h diff --git a/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryDebugMeta.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryDebugMeta.h similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/Headers/SentryDebugMeta.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryDebugMeta.h diff --git a/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryDefines.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryDefines.h similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/Headers/SentryDefines.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryDefines.h diff --git a/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryDsn.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryDsn.h similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/Headers/SentryDsn.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryDsn.h diff --git a/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryEnvelope.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryEnvelope.h similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/Headers/SentryEnvelope.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryEnvelope.h diff --git a/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryEnvelopeItemType.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryEnvelopeItemType.h similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/Headers/SentryEnvelopeItemType.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryEnvelopeItemType.h diff --git a/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryError.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryError.h similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/Headers/SentryError.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryError.h diff --git a/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryEvent.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryEvent.h similarity index 99% rename from Source/ThirdParty/IOS/Sentry.framework/Headers/SentryEvent.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryEvent.h index 48181512..af49aee3 100644 --- a/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryEvent.h +++ b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryEvent.h @@ -111,7 +111,7 @@ NS_SWIFT_NAME(Event) @property (nonatomic, strong) NSDictionary *_Nullable sdk; /** - * Modules of the event + * modules of the event */ @property (nonatomic, strong) NSDictionary *_Nullable modules; diff --git a/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryException.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryException.h similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/Headers/SentryException.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryException.h diff --git a/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryFrame.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryFrame.h similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/Headers/SentryFrame.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryFrame.h diff --git a/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryHub.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryHub.h similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/Headers/SentryHub.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryHub.h diff --git a/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryId.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryId.h similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/Headers/SentryId.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryId.h diff --git a/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryIntegrationProtocol.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryIntegrationProtocol.h similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/Headers/SentryIntegrationProtocol.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryIntegrationProtocol.h diff --git a/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryMechanism.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryMechanism.h similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/Headers/SentryMechanism.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryMechanism.h diff --git a/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryMechanismMeta.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryMechanismMeta.h similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/Headers/SentryMechanismMeta.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryMechanismMeta.h diff --git a/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryMessage.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryMessage.h similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/Headers/SentryMessage.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryMessage.h diff --git a/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryNSError.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryNSError.h similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/Headers/SentryNSError.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryNSError.h diff --git a/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryOptions.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryOptions.h similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/Headers/SentryOptions.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryOptions.h diff --git a/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryProfilingConditionals.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryProfilingConditionals.h similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/Headers/SentryProfilingConditionals.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryProfilingConditionals.h diff --git a/Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySDK.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySDK.h similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySDK.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySDK.h diff --git a/Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySampleDecision.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySampleDecision.h similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySampleDecision.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySampleDecision.h diff --git a/Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySamplingContext.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySamplingContext.h similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySamplingContext.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySamplingContext.h diff --git a/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryScope.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryScope.h similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/Headers/SentryScope.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryScope.h diff --git a/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryScreenFrames.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryScreenFrames.h similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/Headers/SentryScreenFrames.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryScreenFrames.h diff --git a/Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySdkInfo.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySdkInfo.h similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySdkInfo.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySdkInfo.h diff --git a/Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySerializable.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySerializable.h similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySerializable.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySerializable.h diff --git a/Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySession.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySession.h similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySession.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySession.h diff --git a/Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySpanContext.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySpanContext.h similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySpanContext.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySpanContext.h diff --git a/Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySpanId.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySpanId.h similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySpanId.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySpanId.h diff --git a/Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySpanProtocol.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySpanProtocol.h similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySpanProtocol.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySpanProtocol.h diff --git a/Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySpanStatus.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySpanStatus.h similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySpanStatus.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentrySpanStatus.h diff --git a/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryStacktrace.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryStacktrace.h similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/Headers/SentryStacktrace.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryStacktrace.h diff --git a/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryThread.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryThread.h similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/Headers/SentryThread.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryThread.h diff --git a/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryTraceHeader.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryTraceHeader.h similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/Headers/SentryTraceHeader.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryTraceHeader.h diff --git a/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryTransactionContext.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryTransactionContext.h similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/Headers/SentryTransactionContext.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryTransactionContext.h diff --git a/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryUser.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryUser.h similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/Headers/SentryUser.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryUser.h diff --git a/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryUserFeedback.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryUserFeedback.h similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/Headers/SentryUserFeedback.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Headers/SentryUserFeedback.h diff --git a/Source/ThirdParty/IOS/Sentry.framework/Info.plist b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Info.plist similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/Info.plist rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Info.plist diff --git a/Source/ThirdParty/IOS/Sentry.framework/Modules/module.modulemap b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Modules/module.modulemap similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/Modules/module.modulemap rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Modules/module.modulemap diff --git a/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/NSData+SentryCompression.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/NSData+SentryCompression.h similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/NSData+SentryCompression.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/NSData+SentryCompression.h diff --git a/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/NSDate+SentryExtras.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/NSDate+SentryExtras.h similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/NSDate+SentryExtras.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/NSDate+SentryExtras.h diff --git a/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/NSDictionary+SentrySanitize.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/NSDictionary+SentrySanitize.h similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/NSDictionary+SentrySanitize.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/NSDictionary+SentrySanitize.h diff --git a/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryAsynchronousOperation.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryAsynchronousOperation.h similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryAsynchronousOperation.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryAsynchronousOperation.h diff --git a/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryAutoSessionTrackingIntegration.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryAutoSessionTrackingIntegration.h similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryAutoSessionTrackingIntegration.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryAutoSessionTrackingIntegration.h diff --git a/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryCrashInstallationReporter.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryCrashInstallationReporter.h similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryCrashInstallationReporter.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryCrashInstallationReporter.h diff --git a/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryCrashReportConverter.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryCrashReportConverter.h similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryCrashReportConverter.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryCrashReportConverter.h diff --git a/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryCrashReportSink.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryCrashReportSink.h similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryCrashReportSink.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryCrashReportSink.h diff --git a/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryLog.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryLog.h similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryLog.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryLog.h diff --git a/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryRequestOperation.h b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryRequestOperation.h similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryRequestOperation.h rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/PrivateHeaders/SentryRequestOperation.h diff --git a/Source/ThirdParty/IOS/Sentry.framework/Sentry b/plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Sentry similarity index 100% rename from Source/ThirdParty/IOS/Sentry.framework/Sentry rename to plugin-dev/Source/ThirdParty/IOS/Sentry.framework/Sentry diff --git a/Source/ThirdParty/Linux/bin/crashpad_handler b/plugin-dev/Source/ThirdParty/Linux/bin/crashpad_handler similarity index 100% rename from Source/ThirdParty/Linux/bin/crashpad_handler rename to plugin-dev/Source/ThirdParty/Linux/bin/crashpad_handler diff --git a/Source/ThirdParty/Linux/bin/libsentry.dbg.so b/plugin-dev/Source/ThirdParty/Linux/bin/libsentry.dbg.so similarity index 100% rename from Source/ThirdParty/Linux/bin/libsentry.dbg.so rename to plugin-dev/Source/ThirdParty/Linux/bin/libsentry.dbg.so diff --git a/Source/ThirdParty/Linux/bin/libsentry.so b/plugin-dev/Source/ThirdParty/Linux/bin/libsentry.so similarity index 100% rename from Source/ThirdParty/Linux/bin/libsentry.so rename to plugin-dev/Source/ThirdParty/Linux/bin/libsentry.so diff --git a/Source/ThirdParty/Linux/include/sentry.h b/plugin-dev/Source/ThirdParty/Linux/include/sentry.h similarity index 100% rename from Source/ThirdParty/Linux/include/sentry.h rename to plugin-dev/Source/ThirdParty/Linux/include/sentry.h diff --git a/Source/ThirdParty/Mac/bin/crashpad_handler b/plugin-dev/Source/ThirdParty/Mac/bin/crashpad_handler similarity index 100% rename from Source/ThirdParty/Mac/bin/crashpad_handler rename to plugin-dev/Source/ThirdParty/Mac/bin/crashpad_handler diff --git a/Source/ThirdParty/Mac/bin/libsentry.dylib b/plugin-dev/Source/ThirdParty/Mac/bin/libsentry.dylib similarity index 100% rename from Source/ThirdParty/Mac/bin/libsentry.dylib rename to plugin-dev/Source/ThirdParty/Mac/bin/libsentry.dylib diff --git a/Source/ThirdParty/Mac/bin/libsentry.dylib.dSYM/Contents/Info.plist b/plugin-dev/Source/ThirdParty/Mac/bin/libsentry.dylib.dSYM/Contents/Info.plist similarity index 100% rename from Source/ThirdParty/Mac/bin/libsentry.dylib.dSYM/Contents/Info.plist rename to plugin-dev/Source/ThirdParty/Mac/bin/libsentry.dylib.dSYM/Contents/Info.plist diff --git a/Source/ThirdParty/Mac/bin/libsentry.dylib.dSYM/Contents/Resources/DWARF/libsentry.dylib b/plugin-dev/Source/ThirdParty/Mac/bin/libsentry.dylib.dSYM/Contents/Resources/DWARF/libsentry.dylib similarity index 100% rename from Source/ThirdParty/Mac/bin/libsentry.dylib.dSYM/Contents/Resources/DWARF/libsentry.dylib rename to plugin-dev/Source/ThirdParty/Mac/bin/libsentry.dylib.dSYM/Contents/Resources/DWARF/libsentry.dylib diff --git a/Source/ThirdParty/Mac/include/sentry.h b/plugin-dev/Source/ThirdParty/Mac/include/sentry.h similarity index 100% rename from Source/ThirdParty/Mac/include/sentry.h rename to plugin-dev/Source/ThirdParty/Mac/include/sentry.h diff --git a/Source/ThirdParty/Win64/bin/crashpad_handler.exe b/plugin-dev/Source/ThirdParty/Win64/bin/crashpad_handler.exe similarity index 100% rename from Source/ThirdParty/Win64/bin/crashpad_handler.exe rename to plugin-dev/Source/ThirdParty/Win64/bin/crashpad_handler.exe diff --git a/Source/ThirdParty/Win64/bin/sentry.dll b/plugin-dev/Source/ThirdParty/Win64/bin/sentry.dll similarity index 100% rename from Source/ThirdParty/Win64/bin/sentry.dll rename to plugin-dev/Source/ThirdParty/Win64/bin/sentry.dll diff --git a/Source/ThirdParty/Win64/bin/sentry.pdb b/plugin-dev/Source/ThirdParty/Win64/bin/sentry.pdb similarity index 100% rename from Source/ThirdParty/Win64/bin/sentry.pdb rename to plugin-dev/Source/ThirdParty/Win64/bin/sentry.pdb diff --git a/Source/ThirdParty/Win64/include/sentry.h b/plugin-dev/Source/ThirdParty/Win64/include/sentry.h similarity index 100% rename from Source/ThirdParty/Win64/include/sentry.h rename to plugin-dev/Source/ThirdParty/Win64/include/sentry.h diff --git a/Source/ThirdParty/Win64/lib/sentry.lib b/plugin-dev/Source/ThirdParty/Win64/lib/sentry.lib similarity index 100% rename from Source/ThirdParty/Win64/lib/sentry.lib rename to plugin-dev/Source/ThirdParty/Win64/lib/sentry.lib diff --git a/Scripts/build-cocoa.sh b/scripts/build-cocoa.sh similarity index 100% rename from Scripts/build-cocoa.sh rename to scripts/build-cocoa.sh diff --git a/Scripts/build-java.sh b/scripts/build-java.sh similarity index 100% rename from Scripts/build-java.sh rename to scripts/build-java.sh diff --git a/Scripts/build-native-linux.sh b/scripts/build-native-linux.sh similarity index 100% rename from Scripts/build-native-linux.sh rename to scripts/build-native-linux.sh diff --git a/Scripts/build-native-mac.sh b/scripts/build-native-mac.sh similarity index 100% rename from Scripts/build-native-mac.sh rename to scripts/build-native-mac.sh diff --git a/Scripts/build-native-windows.ps1 b/scripts/build-native-windows.ps1 similarity index 100% rename from Scripts/build-native-windows.ps1 rename to scripts/build-native-windows.ps1 diff --git a/Scripts/bump-version-android.sh b/scripts/bump-version-android.sh similarity index 100% rename from Scripts/bump-version-android.sh rename to scripts/bump-version-android.sh diff --git a/Scripts/checkout-submodule.sh b/scripts/checkout-submodule.sh similarity index 100% rename from Scripts/checkout-submodule.sh rename to scripts/checkout-submodule.sh diff --git a/Scripts/update-cocoa.sh b/scripts/update-cocoa.sh similarity index 62% rename from Scripts/update-cocoa.sh rename to scripts/update-cocoa.sh index 90682b3c..84d6dfe6 100755 --- a/Scripts/update-cocoa.sh +++ b/scripts/update-cocoa.sh @@ -1,12 +1,12 @@ #!/usr/bin/env bash set -euo pipefail -submodulePath=$"Modules/sentry-cocoa" +submodulePath=$"modules/sentry-cocoa" targetPlatform=$"iOS" case $1 in get-version) - git submodule update --init --no-fetch --single-branch $submodulePath > /dev/null + git submodule update --init --no-fetch --single-branch $submodulePath >/dev/null version=$(git -C $submodulePath describe --tags) echo $version ;; @@ -17,14 +17,14 @@ set-version) version=$2 git -C $submodulePath checkout $version - - ./Scripts/checkout-submodule.sh $submodulePath - ./Scripts/build-cocoa.sh $submodulePath Source/ThirdParty/$targetPlatform - echo "Setting submodule version to '$version'" + ./scripts/checkout-submodule.sh $submodulePath + ./scripts/build-cocoa.sh $submodulePath plugin-dev/Source/ThirdParty/$targetPlatform + + echo "Setting submodule version to '$version'" ;; *) echo "Unknown argument $1" exit 1 ;; -esac \ No newline at end of file +esac diff --git a/Scripts/update-java.sh b/scripts/update-java.sh similarity index 59% rename from Scripts/update-java.sh rename to scripts/update-java.sh index 8b83da67..0b631d41 100755 --- a/Scripts/update-java.sh +++ b/scripts/update-java.sh @@ -1,12 +1,12 @@ #!/usr/bin/env bash set -euo pipefail -submodulePath=$"Modules/sentry-java" +submodulePath=$"modules/sentry-java" targetPlatform=$"Android" case $1 in get-version) - git submodule update --init --no-fetch --single-branch $submodulePath > /dev/null + git submodule update --init --no-fetch --single-branch $submodulePath >/dev/null version=$(git -C $submodulePath describe --tags) echo $version ;; @@ -17,16 +17,16 @@ set-version) version=$2 git -C $submodulePath checkout $version - - ./Scripts/checkout-submodule.sh $submodulePath - ./Scripts/build-java.sh $submodulePath Source/ThirdParty/$targetPlatform - ./Scripts/bump-version-android.sh $version + ./scripts/checkout-submodule.sh $submodulePath + ./scripts/build-java.sh $submodulePath plugin-dev/Source/ThirdParty/$targetPlatform - echo "Setting submodule version to '$version'" + ./scripts/bump-version-android.sh $version + + echo "Setting submodule version to '$version'" ;; *) echo "Unknown argument $1" exit 1 ;; -esac \ No newline at end of file +esac diff --git a/Scripts/update-native-linux.sh b/scripts/update-native-linux.sh similarity index 66% rename from Scripts/update-native-linux.sh rename to scripts/update-native-linux.sh index 6dee6ef3..5621a246 100755 --- a/Scripts/update-native-linux.sh +++ b/scripts/update-native-linux.sh @@ -1,12 +1,12 @@ #!/usr/bin/env bash set -euo pipefail -submodulePath=$"Modules/sentry-native" +submodulePath=$"modules/sentry-native" targetPlatform=$"Linux" case $1 in get-version) - git submodule update --init --no-fetch --single-branch $submodulePath > /dev/null + git submodule update --init --no-fetch --single-branch $submodulePath >/dev/null version=$(git -C $submodulePath describe --tags) echo $version ;; @@ -20,14 +20,14 @@ set-version) sudo apt-get install zlib1g-dev libcurl4-openssl-dev libssl-dev git -C $submodulePath checkout $version - - ./Scripts/checkout-submodule.sh $submodulePath - ./Scripts/build-native-linux.sh $submodulePath Source/ThirdParty/$targetPlatform - echo "Setting submodule version to '$version'" + ./scripts/checkout-submodule.sh $submodulePath + ./scripts/build-native-linux.sh $submodulePath plugin-dev/Source/ThirdParty/$targetPlatform + + echo "Setting submodule version to '$version'" ;; *) echo "Unknown argument $1" exit 1 ;; -esac \ No newline at end of file +esac diff --git a/Scripts/update-native-mac.sh b/scripts/update-native-mac.sh similarity index 62% rename from Scripts/update-native-mac.sh rename to scripts/update-native-mac.sh index c3b9e399..dd45c02d 100755 --- a/Scripts/update-native-mac.sh +++ b/scripts/update-native-mac.sh @@ -1,12 +1,12 @@ #!/usr/bin/env bash set -euo pipefail -submodulePath=$"Modules/sentry-native" +submodulePath=$"modules/sentry-native" targetPlatform=$"Mac" case $1 in get-version) - git submodule update --init --no-fetch --single-branch $submodulePath > /dev/null + git submodule update --init --no-fetch --single-branch $submodulePath >/dev/null version=$(git -C $submodulePath describe --tags) echo $version ;; @@ -17,14 +17,14 @@ set-version) version=$2 git -C $submodulePath checkout $version - - ./Scripts/checkout-submodule.sh $submodulePath - ./Scripts/build-native-mac.sh $submodulePath Source/ThirdParty/$targetPlatform - echo "Setting submodule version to '$version'" + ./scripts/checkout-submodule.sh $submodulePath + ./scripts/build-native-mac.sh $submodulePath plugin-dev/Source/ThirdParty/$targetPlatform + + echo "Setting submodule version to '$version'" ;; *) echo "Unknown argument $1" exit 1 ;; -esac \ No newline at end of file +esac diff --git a/Scripts/update-native-windows.ps1 b/scripts/update-native-windows.ps1 similarity index 74% rename from Scripts/update-native-windows.ps1 rename to scripts/update-native-windows.ps1 index 5f840749..c7df03bd 100755 --- a/Scripts/update-native-windows.ps1 +++ b/scripts/update-native-windows.ps1 @@ -1,11 +1,11 @@ -param([string] $Action,[string] $Tag) +param([string] $Action, [string] $Tag) -$submodulePath="Modules/sentry-native" -$targetPlatform="Win64" +$submodulePath = "modules/sentry-native" +$targetPlatform = "Win64" function get-version () { - git submodule update --init --no-fetch --single-branch $submodulePath | out-null + git submodule update --init --no-fetch --single-branch $submodulePath | Out-Null $version = $(git -C $submodulePath describe --tags) return $version } @@ -22,7 +22,7 @@ function set-version ([string] $version) git submodule foreach git submodule update --init --recursive - & ./Scripts/build-native-windows.ps1 $submodulePath Source/ThirdParty/$targetPlatform + & ./scripts/build-native-windows.ps1 $submodulePath plugin-dev/Source/ThirdParty/$targetPlatform } switch ($Action)