From 524a828e711b356a36676f8d17d0a2a35dfd687d Mon Sep 17 00:00:00 2001 From: Mamadou Babaei Date: Tue, 22 Apr 2025 13:48:11 +0200 Subject: [PATCH] revamp android backend initialization error handling and bump the senseglove libraries to the latest experimental ble builds --- .../SGAndroid/SGAndroidPermissions.cpp | 2 +- .../Private/SGAndroid/SGConnectJNI.cpp | 12 +++++----- .../Private/SGAndroid/SGCoreJNI.cpp | 14 +++++------ .../Private/SGBackend/SGBackend.cpp | 24 +++++++++++++++++++ .../include/SenseGlove/BLE/Platform.hpp | 4 ++-- .../ThirdParty/include/SenseGlove/BLE/sgble.h | 4 ++-- .../include/SenseGlove/BLE/sgble.hpp | 4 ++-- .../include/SenseGlove/Connect/Android.hpp | 4 ++-- .../include/SenseGlove/Connect/SGConnect.hpp | 4 ++-- .../include/SenseGlove/Core/Android.hpp | 4 ++-- .../lib/android/r25b/arm64/debug/libsgble.a | 4 ++-- .../android/r25b/arm64/debug/libsgconnect.a | 4 ++-- .../lib/android/r25b/arm64/debug/libsgcore.a | 2 +- .../lib/android/r25b/arm64/release/libsgble.a | 4 ++-- .../android/r25b/arm64/release/libsgconnect.a | 2 +- .../android/r25b/arm64/release/libsgcore.a | 2 +- .../lib/android/r25b/x64/debug/libsgble.a | 4 ++-- .../lib/android/r25b/x64/debug/libsgconnect.a | 4 ++-- .../lib/android/r25b/x64/debug/libsgcore.a | 2 +- .../lib/android/r25b/x64/release/libsgble.a | 4 ++-- .../android/r25b/x64/release/libsgconnect.a | 2 +- .../lib/android/r25b/x64/release/libsgcore.a | 2 +- .../lib/linux/rustc/aarch64/debug/libsgble.a | 4 ++-- .../linux/rustc/aarch64/release/libsgble.a | 4 ++-- .../lib/linux/rustc/x86-64/debug/libsgble.a | 4 ++-- .../lib/linux/rustc/x86-64/release/libsgble.a | 4 ++-- .../linux/v21/aarch64/debug/libsgconnect.a | 4 ++-- .../lib/linux/v21/aarch64/debug/libsgcore.a | 2 +- .../linux/v21/aarch64/release/libsgconnect.a | 2 +- .../lib/linux/v21/aarch64/release/libsgcore.a | 2 +- .../lib/linux/v21/x86-64/debug/libsgconnect.a | 4 ++-- .../lib/linux/v21/x86-64/debug/libsgcore.a | 2 +- .../linux/v21/x86-64/release/libsgconnect.a | 2 +- .../lib/linux/v21/x86-64/release/libsgcore.a | 2 +- .../linux/v22/aarch64/debug/libsgconnect.a | 4 ++-- .../lib/linux/v22/aarch64/debug/libsgcore.a | 2 +- .../linux/v22/aarch64/release/libsgconnect.a | 2 +- .../lib/linux/v22/aarch64/release/libsgcore.a | 2 +- .../lib/linux/v22/x86-64/debug/libsgconnect.a | 4 ++-- .../lib/linux/v22/x86-64/debug/libsgcore.a | 2 +- .../linux/v22/x86-64/release/libsgconnect.a | 2 +- .../lib/linux/v22/x86-64/release/libsgcore.a | 2 +- .../linux/v23/aarch64/debug/libsgconnect.a | 4 ++-- .../lib/linux/v23/aarch64/debug/libsgcore.a | 2 +- .../linux/v23/aarch64/release/libsgconnect.a | 2 +- .../lib/linux/v23/aarch64/release/libsgcore.a | 2 +- .../lib/linux/v23/x86-64/debug/libsgconnect.a | 4 ++-- .../lib/linux/v23/x86-64/debug/libsgcore.a | 2 +- .../linux/v23/x86-64/release/libsgconnect.a | 2 +- .../lib/linux/v23/x86-64/release/libsgcore.a | 2 +- .../linux/v24/aarch64/debug/libsgconnect.a | 4 ++-- .../lib/linux/v24/aarch64/debug/libsgcore.a | 2 +- .../linux/v24/aarch64/release/libsgconnect.a | 2 +- .../lib/linux/v24/aarch64/release/libsgcore.a | 2 +- .../lib/linux/v24/x86-64/debug/libsgconnect.a | 4 ++-- .../lib/linux/v24/x86-64/debug/libsgcore.a | 2 +- .../linux/v24/x86-64/release/libsgconnect.a | 2 +- .../lib/linux/v24/x86-64/release/libsgcore.a | 2 +- .../lib/win64/msvc142/debug/serial.lib | 2 +- .../lib/win64/msvc142/debug/sgconnect.lib | 2 +- .../lib/win64/msvc142/debug/sgcore.lib | 4 ++-- .../lib/win64/msvc142/release/serial.lib | 2 +- .../lib/win64/msvc142/release/sgconnect.lib | 2 +- .../lib/win64/msvc142/release/sgcore.lib | 2 +- .../lib/win64/msvc143/debug/serial.lib | 2 +- .../lib/win64/msvc143/debug/sgconnect.lib | 2 +- .../lib/win64/msvc143/debug/sgcore.lib | 2 +- .../lib/win64/msvc143/release/serial.lib | 2 +- .../lib/win64/msvc143/release/sgconnect.lib | 4 ++-- .../lib/win64/msvc143/release/sgcore.lib | 4 ++-- .../lib/win64/rustc/debug/sgble.lib | 4 ++-- .../lib/win64/rustc/release/sgble.lib | 4 ++-- 72 files changed, 135 insertions(+), 111 deletions(-) diff --git a/Source/SenseGloveAndroid/Private/SGAndroid/SGAndroidPermissions.cpp b/Source/SenseGloveAndroid/Private/SGAndroid/SGAndroidPermissions.cpp index 8c04b83c..72e9198d 100644 --- a/Source/SenseGloveAndroid/Private/SGAndroid/SGAndroidPermissions.cpp +++ b/Source/SenseGloveAndroid/Private/SGAndroid/SGAndroidPermissions.cpp @@ -137,7 +137,7 @@ void USGAndroidPermissions::OnPermissionsGranted(const TArray& Permissi return; } - for (int32 i = 0; i < Permissions.Num(); i++) + for (int32 i = 0; i < Permissions.Num(); ++i) { if (GrantResults[i]) { diff --git a/Source/SenseGloveAndroid/Private/SGAndroid/SGConnectJNI.cpp b/Source/SenseGloveAndroid/Private/SGAndroid/SGConnectJNI.cpp index 10cfe515..8bfc444f 100644 --- a/Source/SenseGloveAndroid/Private/SGAndroid/SGConnectJNI.cpp +++ b/Source/SenseGloveAndroid/Private/SGAndroid/SGConnectJNI.cpp @@ -54,7 +54,7 @@ int32 FSGConnectJNI::Initialize() { - int32 Result = -999999; + int32 Result = -1000; #if PLATFORM_ANDROID static constexpr char SGCONNECT_JAVA_CLASS_NAME[] = "com.senseglove.sgconnect.SGConnect"; @@ -66,7 +66,7 @@ int32 FSGConnectJNI::Initialize() if (!Env) { SGLOG_ERROR("FSGCoreJNI: failed to get the Android JNI environmnet!"); - return -1999999; + return -1001; } FSGIC_JNIEnv_Ptr InEnvContainer{Env}; @@ -77,7 +77,7 @@ int32 FSGConnectJNI::Initialize() if (Env->IsSameObject(Class, nullptr)) { SGLOG_ERROR("FSGCoreJNI: failed to get the Android Java class!"); - return -2999999; + return -1002; } Class = (jclass)Env->NewGlobalRef(Class); FSGIC_jclass InClassContainer{Class}; @@ -89,7 +89,7 @@ int32 FSGConnectJNI::Initialize() if (!InitMethodID) { SGLOG_ERROR("FSGCoreJNI: failed to get the Android JNI method 'Init'!"); - return -3999999; + return -1003; } FSGIC_jmethodID InInitMethodIDContainer{InitMethodID}; @@ -100,7 +100,7 @@ int32 FSGConnectJNI::Initialize() if (!DisposeMethodID) { SGLOG_ERROR("FSGCoreJNI: failed to get the Android JNI method 'Dispose'!"); - return -4999999; + return -1004; } FSGIC_jmethodID InDisposeMethodIDContainer{DisposeMethodID}; @@ -111,7 +111,7 @@ int32 FSGConnectJNI::Initialize() if (!GetLibraryVersionMethodID) { SGLOG_ERROR("FSGCoreJNI: failed to get the Android JNI method 'GetLibraryVersion'!"); - return -5999999; + return -1005; } FSGIC_jmethodID InGetLibraryVersionMethodIDContainer{GetLibraryVersionMethodID}; diff --git a/Source/SenseGloveAndroid/Private/SGAndroid/SGCoreJNI.cpp b/Source/SenseGloveAndroid/Private/SGAndroid/SGCoreJNI.cpp index 0641ad64..f0f27189 100644 --- a/Source/SenseGloveAndroid/Private/SGAndroid/SGCoreJNI.cpp +++ b/Source/SenseGloveAndroid/Private/SGAndroid/SGCoreJNI.cpp @@ -54,7 +54,7 @@ int32 FSGCoreJNI::Initialize() { - int32 Result = -999999; + int32 Result = -1000; #if PLATFORM_ANDROID static constexpr char SGCONNECT_JAVA_CLASS_NAME[] = "com.senseglove.sgconnect.SGConnect"; @@ -66,7 +66,7 @@ int32 FSGCoreJNI::Initialize() if (!Env) { SGLOG_ERROR("FSGCoreJNI: failed to get the Android JNI environmnet!"); - return -1999999; + return -1001; } FSGIC_JNIEnv_Ptr InEnvContainer{Env}; @@ -77,7 +77,7 @@ int32 FSGCoreJNI::Initialize() if (Env->IsSameObject(Class, nullptr)) { SGLOG_ERROR("FSGCoreJNI: failed to get the Android Java class!"); - return -2999999; + return -1002; } Class = (jclass)Env->NewGlobalRef(Class); FSGIC_jclass InClassContainer{Class}; @@ -89,7 +89,7 @@ int32 FSGCoreJNI::Initialize() if (!ActiveDevicesMethodID) { SGLOG_ERROR("FSGCoreJNI: failed to get the Android JNI method 'ActiveDevices'!"); - return -3999999; + return -1003; } FSGIC_jmethodID InActiveDevicesMethodIDContainer{ActiveDevicesMethodID}; @@ -100,7 +100,7 @@ int32 FSGCoreJNI::Initialize() if (!GetDeviceStringMethodID) { SGLOG_ERROR("FSGCoreJNI: failed to get the Android JNI method 'GetDeviceString'!"); - return -4999999; + return -1004; } FSGIC_jmethodID InGetDeviceStringMethodIDContainer{GetDeviceStringMethodID}; @@ -111,7 +111,7 @@ int32 FSGCoreJNI::Initialize() if (!GetSensorStringMethodID) { SGLOG_ERROR("FSGCoreJNI: failed to get the Android JNI method 'GetSensorString'!"); - return -5999999; + return -1005; } FSGIC_jmethodID InGetSensorStringMethodIDContainer{GetSensorStringMethodID}; @@ -122,7 +122,7 @@ int32 FSGCoreJNI::Initialize() if (!WriteHapticsMethodID) { SGLOG_ERROR("FSGCoreJNI: failed to get the Android JNI method 'WriteHaptics'!"); - return -6999999; + return -1006; } FSGIC_jmethodID InWriteHapticsMethodIDContainer{WriteHapticsMethodID}; diff --git a/Source/SenseGloveBackend/Private/SGBackend/SGBackend.cpp b/Source/SenseGloveBackend/Private/SGBackend/SGBackend.cpp index d5348b1b..f773e095 100644 --- a/Source/SenseGloveBackend/Private/SGBackend/SGBackend.cpp +++ b/Source/SenseGloveBackend/Private/SGBackend/SGBackend.cpp @@ -93,6 +93,18 @@ bool USGBackend::InitializeBackend() const int32 Result = FSGConnect::Init(); switch (Result) { + case -103: + SGLOG_ERROR("Android JNI-specific Error: Invalid Java method ID!"); + return false; + case -102: + SGLOG_ERROR("Android JNI-specific Error: Invalid Java class!"); + return false; + case -101: + SGLOG_ERROR("Android JNI-specific Error: Invalid Java environment!"); + return false; + case -100: + SGLOG_ERROR("Android JNI-specific Error: Generic Error! Note: you should never see this!"); + return false; case -3: SGLOG_ERROR("An Unexpected error occurred. Please try again."); return false; @@ -136,6 +148,18 @@ bool USGBackend::UninitializeBackend() const int32 Result = FSGConnect::Dispose(); switch (Result) { + case -103: + SGLOG_ERROR("Android JNI-specific Error: Invalid Java method ID!"); + return false; + case -102: + SGLOG_ERROR("Android JNI-specific Error: Invalid Java class!"); + return false; + case -101: + SGLOG_ERROR("Android JNI-specific Error: Invalid Java environment!"); + return false; + case -100: + SGLOG_ERROR("Android JNI-specific Error: Generic Error! Note: you should never see this!"); + return false; case -3: SGLOG_ERROR("An Unexpected error occurred. Please try again."); return false; diff --git a/Source/ThirdParty/include/SenseGlove/BLE/Platform.hpp b/Source/ThirdParty/include/SenseGlove/BLE/Platform.hpp index 163a60c4..5414ac82 100644 --- a/Source/ThirdParty/include/SenseGlove/BLE/Platform.hpp +++ b/Source/ThirdParty/include/SenseGlove/BLE/Platform.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8cab86bb39ce5d6c5042df024deed54bbafbb189daaac3b00f7f2e9d4149fc50 -size 4992 +oid sha256:71ccb30878c9d97d729bd40af36c938e4f05b176cb4176a1a70ae4950f5838dd +size 4789 diff --git a/Source/ThirdParty/include/SenseGlove/BLE/sgble.h b/Source/ThirdParty/include/SenseGlove/BLE/sgble.h index 2ec0c719..9bdccc1e 100644 --- a/Source/ThirdParty/include/SenseGlove/BLE/sgble.h +++ b/Source/ThirdParty/include/SenseGlove/BLE/sgble.h @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3c12ba6ba494b66a0686c8307482d40070f1a988298764bd7fe65d742d196a9e -size 12422 +oid sha256:b6db158efe811510871200beb216c058a22df92eb232728790bc6177ddf3a92e +size 12675 diff --git a/Source/ThirdParty/include/SenseGlove/BLE/sgble.hpp b/Source/ThirdParty/include/SenseGlove/BLE/sgble.hpp index 78a1cdcc..189954eb 100644 --- a/Source/ThirdParty/include/SenseGlove/BLE/sgble.hpp +++ b/Source/ThirdParty/include/SenseGlove/BLE/sgble.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:620f532a12b1cb8975aa715df7873afa538f4ca818ffc844ddff8fc6401263c0 -size 8810 +oid sha256:76ab1bce1fe87b372d851faad5d0b61e6016d0abe4c6037a88ef85e1d5d8c2eb +size 9059 diff --git a/Source/ThirdParty/include/SenseGlove/Connect/Android.hpp b/Source/ThirdParty/include/SenseGlove/Connect/Android.hpp index 84008443..c3853996 100644 --- a/Source/ThirdParty/include/SenseGlove/Connect/Android.hpp +++ b/Source/ThirdParty/include/SenseGlove/Connect/Android.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:83c730f7c6840f3c89628f9d691859100a713bae02c3d4d9a5bc6848b2870228 -size 1905 +oid sha256:c4755e3b0fb5679eee3c593c4d2bb6607986cc3b85b58c0e84286fc2e89d7895 +size 4061 diff --git a/Source/ThirdParty/include/SenseGlove/Connect/SGConnect.hpp b/Source/ThirdParty/include/SenseGlove/Connect/SGConnect.hpp index c4bb9cc0..05fee435 100644 --- a/Source/ThirdParty/include/SenseGlove/Connect/SGConnect.hpp +++ b/Source/ThirdParty/include/SenseGlove/Connect/SGConnect.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:412d0472a4bee7fee8dfd66d824694199b17e55e8ba29679a012a20e0e5140aa -size 12697 +oid sha256:c49b7a0fcef0129862a0b4deed5725e97a9068b63fea876685611338e4f64e5b +size 13277 diff --git a/Source/ThirdParty/include/SenseGlove/Core/Android.hpp b/Source/ThirdParty/include/SenseGlove/Core/Android.hpp index d893ce2e..07679235 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/Android.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/Android.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:95f486ea273b2dbcc1db8bdded8a9cbdc848d20f22f82cae376f575ba9cb73a8 -size 2129 +oid sha256:0ba40d16e348ff3e1e3d623b96260c059ed26789d6947673cab3fca20d78f8ec +size 3652 diff --git a/Source/ThirdParty/lib/android/r25b/arm64/debug/libsgble.a b/Source/ThirdParty/lib/android/r25b/arm64/debug/libsgble.a index a990bd4c..514b87c3 100644 --- a/Source/ThirdParty/lib/android/r25b/arm64/debug/libsgble.a +++ b/Source/ThirdParty/lib/android/r25b/arm64/debug/libsgble.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:74b9dbec4e4b62cd2b7af1c9cb0292c3a19273959f2de11eb147492e2338e92b -size 152170124 +oid sha256:d3b2d63df057af82ba609a1f2a57472b501c6d72c1e031c4732630279db4a914 +size 152173974 diff --git a/Source/ThirdParty/lib/android/r25b/arm64/debug/libsgconnect.a b/Source/ThirdParty/lib/android/r25b/arm64/debug/libsgconnect.a index eb802f88..654215d3 100644 --- a/Source/ThirdParty/lib/android/r25b/arm64/debug/libsgconnect.a +++ b/Source/ThirdParty/lib/android/r25b/arm64/debug/libsgconnect.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:01bc0a927b1a2e437d82b1aecff5448a82409ebd344c689c74c4ee6f15f6c45a -size 18857470 +oid sha256:e6843bc27e08bfb7b4cf986d16a9e4941d2f74900ae6149d57e680315ce52e74 +size 18857398 diff --git a/Source/ThirdParty/lib/android/r25b/arm64/debug/libsgcore.a b/Source/ThirdParty/lib/android/r25b/arm64/debug/libsgcore.a index e89b8f46..d48e80d7 100644 --- a/Source/ThirdParty/lib/android/r25b/arm64/debug/libsgcore.a +++ b/Source/ThirdParty/lib/android/r25b/arm64/debug/libsgcore.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:09d6e28b00c71229860f5bfe1ff5b70cee7dba572db136288f95fa179ab80aa7 +oid sha256:b6b77f37947134184637d6e7a3194a0939f1b6efc0ebc1b2f71dfccd18fa8c9d size 15512404 diff --git a/Source/ThirdParty/lib/android/r25b/arm64/release/libsgble.a b/Source/ThirdParty/lib/android/r25b/arm64/release/libsgble.a index f0f691fb..c9d89412 100644 --- a/Source/ThirdParty/lib/android/r25b/arm64/release/libsgble.a +++ b/Source/ThirdParty/lib/android/r25b/arm64/release/libsgble.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b131b98b2a811208b9e6f7543887bf7e76833534ab8a7988d146a948b90a6fe6 -size 34688704 +oid sha256:23a32cc9e16148b914bf58ee7cff026eb6550735622eea23c3cfeacf63346294 +size 34698870 diff --git a/Source/ThirdParty/lib/android/r25b/arm64/release/libsgconnect.a b/Source/ThirdParty/lib/android/r25b/arm64/release/libsgconnect.a index 0bdedd3b..6bd49a33 100644 --- a/Source/ThirdParty/lib/android/r25b/arm64/release/libsgconnect.a +++ b/Source/ThirdParty/lib/android/r25b/arm64/release/libsgconnect.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:aa216f00afce401145c2922bf5787cd381a2924701e78ae17758e7188008bca3 +oid sha256:b0990afb30523cb53732062857c54292e2ce4ad4a4d42329a58db1e25973ba61 size 2070328 diff --git a/Source/ThirdParty/lib/android/r25b/arm64/release/libsgcore.a b/Source/ThirdParty/lib/android/r25b/arm64/release/libsgcore.a index ab96ba8e..4644dd95 100644 --- a/Source/ThirdParty/lib/android/r25b/arm64/release/libsgcore.a +++ b/Source/ThirdParty/lib/android/r25b/arm64/release/libsgcore.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2f1e8828d7e282203a5f8898227cc42124aad943dfaf2daee74dd4e49bcfb0d9 +oid sha256:573e3c7a3dbc6e3b4d63f4c9573841c5163d9a8a800896232ad0e6dfe240f64d size 1945776 diff --git a/Source/ThirdParty/lib/android/r25b/x64/debug/libsgble.a b/Source/ThirdParty/lib/android/r25b/x64/debug/libsgble.a index 8db5b84c..40f213fb 100644 --- a/Source/ThirdParty/lib/android/r25b/x64/debug/libsgble.a +++ b/Source/ThirdParty/lib/android/r25b/x64/debug/libsgble.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:677c88fab884643788cc40acd387d48e150fe7825240c7265fcc0b0c7a936cdb -size 152915176 +oid sha256:66f4893dd19ea6bea39908189e104065b85a4a0fe471e1021e25990eafa2c0c2 +size 152905884 diff --git a/Source/ThirdParty/lib/android/r25b/x64/debug/libsgconnect.a b/Source/ThirdParty/lib/android/r25b/x64/debug/libsgconnect.a index dbb01e01..57482424 100644 --- a/Source/ThirdParty/lib/android/r25b/x64/debug/libsgconnect.a +++ b/Source/ThirdParty/lib/android/r25b/x64/debug/libsgconnect.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:347f7ab69d11274b643c98f0872ab128646bb2bf9ab3c52d7c143229fc732edf -size 18526774 +oid sha256:7654e39836312930960d26e414aef187103682d676ea07fbb9c31669828a1b9d +size 18526726 diff --git a/Source/ThirdParty/lib/android/r25b/x64/debug/libsgcore.a b/Source/ThirdParty/lib/android/r25b/x64/debug/libsgcore.a index 45e23a9f..2bddcede 100644 --- a/Source/ThirdParty/lib/android/r25b/x64/debug/libsgcore.a +++ b/Source/ThirdParty/lib/android/r25b/x64/debug/libsgcore.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0b17ccc356c1bba2a298b6db00e0f58da33a833bff0d4a5663832f0a06bce9d5 +oid sha256:68203739796df731e061c1854fc016bc00f140d0fa5b12322466cb6403d2ccee size 15215764 diff --git a/Source/ThirdParty/lib/android/r25b/x64/release/libsgble.a b/Source/ThirdParty/lib/android/r25b/x64/release/libsgble.a index efdc19d1..165a94e3 100644 --- a/Source/ThirdParty/lib/android/r25b/x64/release/libsgble.a +++ b/Source/ThirdParty/lib/android/r25b/x64/release/libsgble.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:06b8e63e6460c111e94404380c53435abeb341f44a57680224230c3297556937 -size 33488572 +oid sha256:8caddc79a03a00c12d710500ebd522d7021db102c09617a29fce0fd06386f01e +size 33494512 diff --git a/Source/ThirdParty/lib/android/r25b/x64/release/libsgconnect.a b/Source/ThirdParty/lib/android/r25b/x64/release/libsgconnect.a index 218d0606..3fc1a722 100644 --- a/Source/ThirdParty/lib/android/r25b/x64/release/libsgconnect.a +++ b/Source/ThirdParty/lib/android/r25b/x64/release/libsgconnect.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ab2350967b8de9ae1d8b9c86e5c91928625a685db97f421c5c3f872f05a00b45 +oid sha256:a0ececebdce24720de451b3433861f896a4179c4fea7d2f63f0c4303b42058ec size 2038624 diff --git a/Source/ThirdParty/lib/android/r25b/x64/release/libsgcore.a b/Source/ThirdParty/lib/android/r25b/x64/release/libsgcore.a index 839d94d4..41934e16 100644 --- a/Source/ThirdParty/lib/android/r25b/x64/release/libsgcore.a +++ b/Source/ThirdParty/lib/android/r25b/x64/release/libsgcore.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:70e28bf4bac2ff5a6895504c0748020bfa0dac8da3218484cf33cebc7476c3cf +oid sha256:b346ac0b9b4237517b2747a0cd04616ac508e50e6a795b563f07a684e04f3b2b size 1925088 diff --git a/Source/ThirdParty/lib/linux/rustc/aarch64/debug/libsgble.a b/Source/ThirdParty/lib/linux/rustc/aarch64/debug/libsgble.a index 776f9af4..5285f726 100644 --- a/Source/ThirdParty/lib/linux/rustc/aarch64/debug/libsgble.a +++ b/Source/ThirdParty/lib/linux/rustc/aarch64/debug/libsgble.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:88b04436ec6deb5c9c90a446cb7ae0584627c6057268e84e257ae5bdbddc91be -size 182391152 +oid sha256:a3211ac58962d78b2fca02fa8100b26d9a935650f1ed784c1c4ae7e6ff80576b +size 182398712 diff --git a/Source/ThirdParty/lib/linux/rustc/aarch64/release/libsgble.a b/Source/ThirdParty/lib/linux/rustc/aarch64/release/libsgble.a index 9c10387d..f518e434 100644 --- a/Source/ThirdParty/lib/linux/rustc/aarch64/release/libsgble.a +++ b/Source/ThirdParty/lib/linux/rustc/aarch64/release/libsgble.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6981601e69624397f5ad9ff8b3567c7deca8619e7e5f86051cc2d3868386cef7 -size 38966264 +oid sha256:84dfec26a12d53ed3d0f455813d9a3a0e8db0c67d3019f6eda7c6d64311eb410 +size 38963200 diff --git a/Source/ThirdParty/lib/linux/rustc/x86-64/debug/libsgble.a b/Source/ThirdParty/lib/linux/rustc/x86-64/debug/libsgble.a index 1ef38915..70a3f983 100644 --- a/Source/ThirdParty/lib/linux/rustc/x86-64/debug/libsgble.a +++ b/Source/ThirdParty/lib/linux/rustc/x86-64/debug/libsgble.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4dd1d552ba1af8824708247c0d88ecf76acfbdb431e585fb16abb3a3dc4bcb78 -size 182429438 +oid sha256:61b71e4ed00ce5ca9e59fcd95e9457726d515ffba04bd65c1721a92bcc19f1e1 +size 182441182 diff --git a/Source/ThirdParty/lib/linux/rustc/x86-64/release/libsgble.a b/Source/ThirdParty/lib/linux/rustc/x86-64/release/libsgble.a index a30ec758..5d89611c 100644 --- a/Source/ThirdParty/lib/linux/rustc/x86-64/release/libsgble.a +++ b/Source/ThirdParty/lib/linux/rustc/x86-64/release/libsgble.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:347f819123523e72a36f058038b07b54a9e9a469a70b34ff207a073138ad7a46 -size 37422198 +oid sha256:6c85f2de085288487b554c29e131436c0573baa32b47aed32de6db401c97357d +size 37423062 diff --git a/Source/ThirdParty/lib/linux/v21/aarch64/debug/libsgconnect.a b/Source/ThirdParty/lib/linux/v21/aarch64/debug/libsgconnect.a index 7031b2af..3fa4aac0 100644 --- a/Source/ThirdParty/lib/linux/v21/aarch64/debug/libsgconnect.a +++ b/Source/ThirdParty/lib/linux/v21/aarch64/debug/libsgconnect.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ca49f4280e3aa3db8899860d03d4f67096d6b132563096849eae0fd70c757e29 -size 15964532 +oid sha256:fd4e69cb68d071c5522a4a78cc647b0ddac0de8c6aeb2c881755a9e1a94aef7a +size 15964516 diff --git a/Source/ThirdParty/lib/linux/v21/aarch64/debug/libsgcore.a b/Source/ThirdParty/lib/linux/v21/aarch64/debug/libsgcore.a index 3d6d1cef..92c16709 100644 --- a/Source/ThirdParty/lib/linux/v21/aarch64/debug/libsgcore.a +++ b/Source/ThirdParty/lib/linux/v21/aarch64/debug/libsgcore.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1234cbd0c1f0602d5848a2d7e7117d67c85ec0bdcfa9dfa5b8c5b625c659e320 +oid sha256:74d241a2967a4cea84b3c2d4fe0e327161765001ffea89cd88fb1e75f0bccd08 size 12915568 diff --git a/Source/ThirdParty/lib/linux/v21/aarch64/release/libsgconnect.a b/Source/ThirdParty/lib/linux/v21/aarch64/release/libsgconnect.a index c9754abe..6f29c920 100644 --- a/Source/ThirdParty/lib/linux/v21/aarch64/release/libsgconnect.a +++ b/Source/ThirdParty/lib/linux/v21/aarch64/release/libsgconnect.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f3bd4d0923f5bb55a9d4afdbb499d512590f69cafdf90e5dc4fc1e0937d61c56 +oid sha256:cc1ab015e29decb63a44664a061011df47e110e4d9ef5a384346188ae5a367ea size 2022906 diff --git a/Source/ThirdParty/lib/linux/v21/aarch64/release/libsgcore.a b/Source/ThirdParty/lib/linux/v21/aarch64/release/libsgcore.a index 667a3cfd..9e688808 100644 --- a/Source/ThirdParty/lib/linux/v21/aarch64/release/libsgcore.a +++ b/Source/ThirdParty/lib/linux/v21/aarch64/release/libsgcore.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ae348eb7f9cf5edabd8e0e6392a4113661e690cb5b60d07caa4dd50222e0e67c +oid sha256:47d5ad7f1fb2f674c7efbf7c97b269268699c2609be0354480846390e915ba5b size 1868250 diff --git a/Source/ThirdParty/lib/linux/v21/x86-64/debug/libsgconnect.a b/Source/ThirdParty/lib/linux/v21/x86-64/debug/libsgconnect.a index 0f3e667e..c80880ac 100644 --- a/Source/ThirdParty/lib/linux/v21/x86-64/debug/libsgconnect.a +++ b/Source/ThirdParty/lib/linux/v21/x86-64/debug/libsgconnect.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a45ff1ca4fcba3499eef75c2e9349f271b85d4f5e41cad803a1096d50bc13aed -size 15504496 +oid sha256:42e7766ac4fced35e4f162e97b2a43cddcc1569f48ebc4dcbb36e3c3216a6e1d +size 15504480 diff --git a/Source/ThirdParty/lib/linux/v21/x86-64/debug/libsgcore.a b/Source/ThirdParty/lib/linux/v21/x86-64/debug/libsgcore.a index 60d23449..f5d8a128 100644 --- a/Source/ThirdParty/lib/linux/v21/x86-64/debug/libsgcore.a +++ b/Source/ThirdParty/lib/linux/v21/x86-64/debug/libsgcore.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:349fc1ebc20072e175141ad31cdddd4c50c9244cf451b16970afb6cac95d7d4c +oid sha256:b82eb200cc1eb3685fb5bb9f878af84cc4a47a19deef14d83bf3f91f4a9efe77 size 12587360 diff --git a/Source/ThirdParty/lib/linux/v21/x86-64/release/libsgconnect.a b/Source/ThirdParty/lib/linux/v21/x86-64/release/libsgconnect.a index 48333ce6..24b8fc27 100644 --- a/Source/ThirdParty/lib/linux/v21/x86-64/release/libsgconnect.a +++ b/Source/ThirdParty/lib/linux/v21/x86-64/release/libsgconnect.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:30e555d39b0462fdb07cfc700a8fa8225c6d5d364306f1d9c987fd289f078e1f +oid sha256:857205c262eedae3900782cc3aa713dd19b31fca6db6a88c825c465cc97dc38f size 1940044 diff --git a/Source/ThirdParty/lib/linux/v21/x86-64/release/libsgcore.a b/Source/ThirdParty/lib/linux/v21/x86-64/release/libsgcore.a index a4224a6a..dca8051e 100644 --- a/Source/ThirdParty/lib/linux/v21/x86-64/release/libsgcore.a +++ b/Source/ThirdParty/lib/linux/v21/x86-64/release/libsgcore.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f4f7174683cea8cd760dfd1e4f74bbfa368438ee9175e0597292d495b658a796 +oid sha256:1130f79e0daadd2ee0de9ac8b3ad96040163ab893669cb9c92d9410cab676efd size 1856954 diff --git a/Source/ThirdParty/lib/linux/v22/aarch64/debug/libsgconnect.a b/Source/ThirdParty/lib/linux/v22/aarch64/debug/libsgconnect.a index 375b19cd..37e22dca 100644 --- a/Source/ThirdParty/lib/linux/v22/aarch64/debug/libsgconnect.a +++ b/Source/ThirdParty/lib/linux/v22/aarch64/debug/libsgconnect.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:128d4da6f4971feb35f64b542776c6d3e32f53c1d122e16c20c1d7359329daf5 -size 17173172 +oid sha256:550b7f5826d671a8196868c689bc761bf488765cc170f9e75ce9fbbc9e386a97 +size 17173148 diff --git a/Source/ThirdParty/lib/linux/v22/aarch64/debug/libsgcore.a b/Source/ThirdParty/lib/linux/v22/aarch64/debug/libsgcore.a index 4c0adb95..14bf1386 100644 --- a/Source/ThirdParty/lib/linux/v22/aarch64/debug/libsgcore.a +++ b/Source/ThirdParty/lib/linux/v22/aarch64/debug/libsgcore.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:05ca37cae7029779a1efd2f09743fcf9371325e5bbb447a99b60048f826dd568 +oid sha256:b0c887c18ab0e0892022f85da6bb954abc34c27c1eade4aa58cafce73f287afe size 15165786 diff --git a/Source/ThirdParty/lib/linux/v22/aarch64/release/libsgconnect.a b/Source/ThirdParty/lib/linux/v22/aarch64/release/libsgconnect.a index c1c83f2d..787dd78d 100644 --- a/Source/ThirdParty/lib/linux/v22/aarch64/release/libsgconnect.a +++ b/Source/ThirdParty/lib/linux/v22/aarch64/release/libsgconnect.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c13994dcd1f64e7b13bb9e0819c5cc3065bc53367364a27772dbad2d815be267 +oid sha256:7cac51f5ea6cdb30002d719e156e7403dad8ff27f5101bf967fdfa94c0bb251c size 2039788 diff --git a/Source/ThirdParty/lib/linux/v22/aarch64/release/libsgcore.a b/Source/ThirdParty/lib/linux/v22/aarch64/release/libsgcore.a index dc93975c..a3a95704 100644 --- a/Source/ThirdParty/lib/linux/v22/aarch64/release/libsgcore.a +++ b/Source/ThirdParty/lib/linux/v22/aarch64/release/libsgcore.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:99d5632c0e66c45bdba46cef9d8ec4b71b11e06d226e2b1ac968b73c3f05f272 +oid sha256:5ddf3cee150c23d21f8008eb5580b0dbe90a60f06b2741a8246ffd180fe73947 size 1896810 diff --git a/Source/ThirdParty/lib/linux/v22/x86-64/debug/libsgconnect.a b/Source/ThirdParty/lib/linux/v22/x86-64/debug/libsgconnect.a index 2dca57db..9b16ddff 100644 --- a/Source/ThirdParty/lib/linux/v22/x86-64/debug/libsgconnect.a +++ b/Source/ThirdParty/lib/linux/v22/x86-64/debug/libsgconnect.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ac1a908a80e2ec762a431f6503d489b3d830072078c7f2c700f6f426af02be11 -size 16715694 +oid sha256:27b6306d3ef5f66d1bac7981ad17b90797b6552f0f873c18b0898dcf7c4bb04f +size 16715670 diff --git a/Source/ThirdParty/lib/linux/v22/x86-64/debug/libsgcore.a b/Source/ThirdParty/lib/linux/v22/x86-64/debug/libsgcore.a index c9a26396..44b6d3e8 100644 --- a/Source/ThirdParty/lib/linux/v22/x86-64/debug/libsgcore.a +++ b/Source/ThirdParty/lib/linux/v22/x86-64/debug/libsgcore.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:62ee7cf51f0cddf3b4e5f2b69d235b2cdbfa09014fedc24c672de79d850f768b +oid sha256:75959945eb3fc6deb226a1507b1c6e22cd32f7e167e52ac582e3ad4667a34477 size 14806354 diff --git a/Source/ThirdParty/lib/linux/v22/x86-64/release/libsgconnect.a b/Source/ThirdParty/lib/linux/v22/x86-64/release/libsgconnect.a index 9fd11047..b25bfb3f 100644 --- a/Source/ThirdParty/lib/linux/v22/x86-64/release/libsgconnect.a +++ b/Source/ThirdParty/lib/linux/v22/x86-64/release/libsgconnect.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2c3d897e61a4cd203784307b305db2c9ca035ff5c4c760c55083a5c44c790d06 +oid sha256:34edb9eea48aa3d04146f42eb23380516863f6ef2e300e9b6cb9bb1f0f3f7fb6 size 1957082 diff --git a/Source/ThirdParty/lib/linux/v22/x86-64/release/libsgcore.a b/Source/ThirdParty/lib/linux/v22/x86-64/release/libsgcore.a index 8982b634..b2ddc4cf 100644 --- a/Source/ThirdParty/lib/linux/v22/x86-64/release/libsgcore.a +++ b/Source/ThirdParty/lib/linux/v22/x86-64/release/libsgcore.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:500fc4c06201567e6c4914697f1521c7d3893f08849e90f26add2558b5b68b03 +oid sha256:5e3a941b1b006b766d5919e0c27e457c78db174cc740cfb4b6510d7963f98ab7 size 1877854 diff --git a/Source/ThirdParty/lib/linux/v23/aarch64/debug/libsgconnect.a b/Source/ThirdParty/lib/linux/v23/aarch64/debug/libsgconnect.a index 9680a708..abac4adf 100644 --- a/Source/ThirdParty/lib/linux/v23/aarch64/debug/libsgconnect.a +++ b/Source/ThirdParty/lib/linux/v23/aarch64/debug/libsgconnect.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e26e04deaad3da44cd7496fabf6d9037c97961982bd7e8075c4e862a6729982e -size 11877564 +oid sha256:f10b14d1e10b25dfe3f8fb9ab5202826b3d809d47907f9fb2d73d6e8e5ef88da +size 11877540 diff --git a/Source/ThirdParty/lib/linux/v23/aarch64/debug/libsgcore.a b/Source/ThirdParty/lib/linux/v23/aarch64/debug/libsgcore.a index 10a7a84d..6db2de5b 100644 --- a/Source/ThirdParty/lib/linux/v23/aarch64/debug/libsgcore.a +++ b/Source/ThirdParty/lib/linux/v23/aarch64/debug/libsgcore.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:92cc74c27317f551339c9d0a5c61538e5b5a3d2c74102672001169dd8e87fee0 +oid sha256:15582dcc31147cd3304c9ee6bcd6f1550cdd79a69a9f6f038fc9df5a9538021d size 10919814 diff --git a/Source/ThirdParty/lib/linux/v23/aarch64/release/libsgconnect.a b/Source/ThirdParty/lib/linux/v23/aarch64/release/libsgconnect.a index a22b000e..a16945f9 100644 --- a/Source/ThirdParty/lib/linux/v23/aarch64/release/libsgconnect.a +++ b/Source/ThirdParty/lib/linux/v23/aarch64/release/libsgconnect.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:431574349355822732615cb282e3ba22547a6c93bea9249c7ec9f833bf72f2c8 +oid sha256:47d76f75afcdc666b74240ae7266f2eeffdc0f354414e325a285d14ed232aad3 size 2130914 diff --git a/Source/ThirdParty/lib/linux/v23/aarch64/release/libsgcore.a b/Source/ThirdParty/lib/linux/v23/aarch64/release/libsgcore.a index bbf75da3..5fe8a97c 100644 --- a/Source/ThirdParty/lib/linux/v23/aarch64/release/libsgcore.a +++ b/Source/ThirdParty/lib/linux/v23/aarch64/release/libsgcore.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1cad187b9cd78243ffa3ab01139860a3090c4a2d06cd248aa82b74c9e16f7423 +oid sha256:d1494dcad0acf40c2bab71d12bfedb71ba7a6ad9d90f3d8ac5b86ec638db5c97 size 1984320 diff --git a/Source/ThirdParty/lib/linux/v23/x86-64/debug/libsgconnect.a b/Source/ThirdParty/lib/linux/v23/x86-64/debug/libsgconnect.a index fb63fed6..c4a38842 100644 --- a/Source/ThirdParty/lib/linux/v23/x86-64/debug/libsgconnect.a +++ b/Source/ThirdParty/lib/linux/v23/x86-64/debug/libsgconnect.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a1547e493223ac2374b24c0f218f08359f28e49d3a03decc7c24b6721c067491 -size 11545072 +oid sha256:31b99968719f1f4126c1bd3a0dcfe0588b60db4edfacbf1a1ccb5037b102fdd3 +size 11545048 diff --git a/Source/ThirdParty/lib/linux/v23/x86-64/debug/libsgcore.a b/Source/ThirdParty/lib/linux/v23/x86-64/debug/libsgcore.a index d4cdf7ce..f23118c5 100644 --- a/Source/ThirdParty/lib/linux/v23/x86-64/debug/libsgcore.a +++ b/Source/ThirdParty/lib/linux/v23/x86-64/debug/libsgcore.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4ab4369205fd502d9cd11283bba7d87cfab697fbfa59f686b78c9078cc2d0a3c +oid sha256:b3131f840917c4da3a3bca9631a62a5fdb455acd826a0a3ff8897d001a2764cf size 10690754 diff --git a/Source/ThirdParty/lib/linux/v23/x86-64/release/libsgconnect.a b/Source/ThirdParty/lib/linux/v23/x86-64/release/libsgconnect.a index 3e5cc71e..62c65e7c 100644 --- a/Source/ThirdParty/lib/linux/v23/x86-64/release/libsgconnect.a +++ b/Source/ThirdParty/lib/linux/v23/x86-64/release/libsgconnect.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7c892ce6d8379ba3c254a401a217f35754e3278a36c5994a7b340acfb308b773 +oid sha256:131900313500631b03eb580e75efdb1a5ba4b5c6185180175b02906eb610975e size 1977382 diff --git a/Source/ThirdParty/lib/linux/v23/x86-64/release/libsgcore.a b/Source/ThirdParty/lib/linux/v23/x86-64/release/libsgcore.a index d8c939d8..4bd78a8d 100644 --- a/Source/ThirdParty/lib/linux/v23/x86-64/release/libsgcore.a +++ b/Source/ThirdParty/lib/linux/v23/x86-64/release/libsgcore.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a74b599d27aaf83629c08486b87d43e222297892c71b04fe9a249e2b28c6eb02 +oid sha256:87dd4005b5ded781d90a50a6dde38543288869a3eaf4aaed2fffaaf7372422d5 size 1942908 diff --git a/Source/ThirdParty/lib/linux/v24/aarch64/debug/libsgconnect.a b/Source/ThirdParty/lib/linux/v24/aarch64/debug/libsgconnect.a index 1b4b881e..072b2113 100644 --- a/Source/ThirdParty/lib/linux/v24/aarch64/debug/libsgconnect.a +++ b/Source/ThirdParty/lib/linux/v24/aarch64/debug/libsgconnect.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dd9e91aea8e9c99c458fbf9fad631a3292292b9417a1c9429c5a76e54cebd793 -size 12114544 +oid sha256:e6c49c38d3788f7a6812c66b82286b6ce0c8676b76c4b317fb8d7237c3c3d556 +size 12114520 diff --git a/Source/ThirdParty/lib/linux/v24/aarch64/debug/libsgcore.a b/Source/ThirdParty/lib/linux/v24/aarch64/debug/libsgcore.a index 2cb1ad73..097a7db0 100644 --- a/Source/ThirdParty/lib/linux/v24/aarch64/debug/libsgcore.a +++ b/Source/ThirdParty/lib/linux/v24/aarch64/debug/libsgcore.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:321074da1c8ca2bea2268121223b73e1090b9f1bb56b612f7490c6b56abf6b55 +oid sha256:edd3f15dd4c0b2218fd54e2d688cbe14a7ef33484dd6339e55b9da6e8af4d213 size 11640834 diff --git a/Source/ThirdParty/lib/linux/v24/aarch64/release/libsgconnect.a b/Source/ThirdParty/lib/linux/v24/aarch64/release/libsgconnect.a index b18fd54d..410ef67a 100644 --- a/Source/ThirdParty/lib/linux/v24/aarch64/release/libsgconnect.a +++ b/Source/ThirdParty/lib/linux/v24/aarch64/release/libsgconnect.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4f106716ee9b71d331f425e5c4847b0dde25040e56095ef44525ed0fa83cc61f +oid sha256:eb60c1c5c4199bb5f7df77f66734f828a6c4efc331d6faa80eefe95a459d207c size 2132862 diff --git a/Source/ThirdParty/lib/linux/v24/aarch64/release/libsgcore.a b/Source/ThirdParty/lib/linux/v24/aarch64/release/libsgcore.a index a842c947..d851302c 100644 --- a/Source/ThirdParty/lib/linux/v24/aarch64/release/libsgcore.a +++ b/Source/ThirdParty/lib/linux/v24/aarch64/release/libsgcore.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:61bcbc4672938f0063675ae366b1a60f67d5b267cf719bd766ae847e441e12bd +oid sha256:8e953ed1dea5e1d8164aba2c6034521144493b7c6abcc47a316f28ecb192b26b size 2028876 diff --git a/Source/ThirdParty/lib/linux/v24/x86-64/debug/libsgconnect.a b/Source/ThirdParty/lib/linux/v24/x86-64/debug/libsgconnect.a index a0587b52..1a1714a9 100644 --- a/Source/ThirdParty/lib/linux/v24/x86-64/debug/libsgconnect.a +++ b/Source/ThirdParty/lib/linux/v24/x86-64/debug/libsgconnect.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7ef81e14dc29b532de0236eabc179b1998e331e4277eef81e75538120a25ed05 -size 11771942 +oid sha256:b1e663d43b1f3952e04afe29f5a090bf1970287ff8b78ed52ad3e95d2ce76fb3 +size 11771926 diff --git a/Source/ThirdParty/lib/linux/v24/x86-64/debug/libsgcore.a b/Source/ThirdParty/lib/linux/v24/x86-64/debug/libsgcore.a index b8ce436d..f9852565 100644 --- a/Source/ThirdParty/lib/linux/v24/x86-64/debug/libsgcore.a +++ b/Source/ThirdParty/lib/linux/v24/x86-64/debug/libsgcore.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f1065b7e33150838847030be76ec56cc7bd4983e960b4d2bae54ec21b6cfe018 +oid sha256:879e298f2cd70714b2931ead8d0b3020187bf15aeda12d22a1f61aaae0209cdb size 11380622 diff --git a/Source/ThirdParty/lib/linux/v24/x86-64/release/libsgconnect.a b/Source/ThirdParty/lib/linux/v24/x86-64/release/libsgconnect.a index 7a26a9e1..de6972de 100644 --- a/Source/ThirdParty/lib/linux/v24/x86-64/release/libsgconnect.a +++ b/Source/ThirdParty/lib/linux/v24/x86-64/release/libsgconnect.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b2537c98411ae3e0e050071f3e5307a96bcf7a0e19ff54c322dbaa1684a3945f +oid sha256:9a2b0e2f6eb968f4836a4bc0c44b8314a7a8083e17d5559c3c6bdf3170e906bd size 2002418 diff --git a/Source/ThirdParty/lib/linux/v24/x86-64/release/libsgcore.a b/Source/ThirdParty/lib/linux/v24/x86-64/release/libsgcore.a index 4811cbbd..e7b8e3d2 100644 --- a/Source/ThirdParty/lib/linux/v24/x86-64/release/libsgcore.a +++ b/Source/ThirdParty/lib/linux/v24/x86-64/release/libsgcore.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2dff683433ff450badb72842b3fe822a0ba8b72711adb668c1d3aaabd8fdabf4 +oid sha256:214376d4d3cfda61be7877b6a2c8a0ca7c3fe2e6f53bb9e5dcc5c8019b3209ed size 1999232 diff --git a/Source/ThirdParty/lib/win64/msvc142/debug/serial.lib b/Source/ThirdParty/lib/win64/msvc142/debug/serial.lib index 9f3a7bf3..56aabf69 100644 --- a/Source/ThirdParty/lib/win64/msvc142/debug/serial.lib +++ b/Source/ThirdParty/lib/win64/msvc142/debug/serial.lib @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:31b5af4c3b84dfa2de408395292ffccefb763a8f555b0498eeccc1312ae07503 +oid sha256:acf5364429d53e4893f020b81e04a24dbc48ab5dfe6605fed33083d124225cf5 size 1188592 diff --git a/Source/ThirdParty/lib/win64/msvc142/debug/sgconnect.lib b/Source/ThirdParty/lib/win64/msvc142/debug/sgconnect.lib index 0c763d26..ed6994e6 100644 --- a/Source/ThirdParty/lib/win64/msvc142/debug/sgconnect.lib +++ b/Source/ThirdParty/lib/win64/msvc142/debug/sgconnect.lib @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:207525d7921b97e6a6091f7ee5d5bb44120d99f6ec4bd1c9109d8ad426402fb8 +oid sha256:91c9b95fa9b85f2f121e07f13597f87a06c778753ef251151a6bfdf21f5cb132 size 27006980 diff --git a/Source/ThirdParty/lib/win64/msvc142/debug/sgcore.lib b/Source/ThirdParty/lib/win64/msvc142/debug/sgcore.lib index a2299168..3784c4c3 100644 --- a/Source/ThirdParty/lib/win64/msvc142/debug/sgcore.lib +++ b/Source/ThirdParty/lib/win64/msvc142/debug/sgcore.lib @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3b931a6b8f0c8e4a8586b18362472b05946a8f76d6949f2bdb0305c79a176c8a -size 21696712 +oid sha256:db270891961a00b759593ec2719ebf51d51fbd077ace7904c071ede04c8286bd +size 21696648 diff --git a/Source/ThirdParty/lib/win64/msvc142/release/serial.lib b/Source/ThirdParty/lib/win64/msvc142/release/serial.lib index 5a5dc8cc..5ba71261 100644 --- a/Source/ThirdParty/lib/win64/msvc142/release/serial.lib +++ b/Source/ThirdParty/lib/win64/msvc142/release/serial.lib @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:233ca88db05fd09b7f502e50791c08129b64737d897cf2b977a0b65fd4e84533 +oid sha256:561d23c871f9725ff9d343d3fcdd1b107fced4c2928640331a03572b86b315f3 size 351206 diff --git a/Source/ThirdParty/lib/win64/msvc142/release/sgconnect.lib b/Source/ThirdParty/lib/win64/msvc142/release/sgconnect.lib index 3501d1f1..4f82289a 100644 --- a/Source/ThirdParty/lib/win64/msvc142/release/sgconnect.lib +++ b/Source/ThirdParty/lib/win64/msvc142/release/sgconnect.lib @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a8f050b6cae6ead29204379613451b863307e3d929930cf7bd3924a683b74ace +oid sha256:1d69aa3f65e15016351239182084d058ab03bf063a02e49c487a716228c44083 size 5335528 diff --git a/Source/ThirdParty/lib/win64/msvc142/release/sgcore.lib b/Source/ThirdParty/lib/win64/msvc142/release/sgcore.lib index c140e14f..b4a8f0ef 100644 --- a/Source/ThirdParty/lib/win64/msvc142/release/sgcore.lib +++ b/Source/ThirdParty/lib/win64/msvc142/release/sgcore.lib @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9e27b6eccf6cadb55f09e7374aa0b835690a9c2af6b43c844153ac028248b318 +oid sha256:41b54c81ea3937dd677ecfcf486940125a567b2b2cd0306bd1c14f7780d8b1d0 size 5216404 diff --git a/Source/ThirdParty/lib/win64/msvc143/debug/serial.lib b/Source/ThirdParty/lib/win64/msvc143/debug/serial.lib index de843914..9c6bded3 100644 --- a/Source/ThirdParty/lib/win64/msvc143/debug/serial.lib +++ b/Source/ThirdParty/lib/win64/msvc143/debug/serial.lib @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:25965131be3cb55ab9e4c875980da90c4d290469516321f1ef194fad97d900e6 +oid sha256:6267504b6d57779e640aeefc20ec51a51a45a4ac03f42ae225132e7b279efa67 size 1165006 diff --git a/Source/ThirdParty/lib/win64/msvc143/debug/sgconnect.lib b/Source/ThirdParty/lib/win64/msvc143/debug/sgconnect.lib index 6ece1e8b..1f8ccfc6 100644 --- a/Source/ThirdParty/lib/win64/msvc143/debug/sgconnect.lib +++ b/Source/ThirdParty/lib/win64/msvc143/debug/sgconnect.lib @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:96300d7bbcd94d1759668853cfc7ecfb7be82b65d94b5140d339bb01edc5c153 +oid sha256:639adce68643bf0fe531d8355f9815476524510f1ff0623b1c74ac3b0af6dd07 size 26996418 diff --git a/Source/ThirdParty/lib/win64/msvc143/debug/sgcore.lib b/Source/ThirdParty/lib/win64/msvc143/debug/sgcore.lib index b2fccc24..b61dde9a 100644 --- a/Source/ThirdParty/lib/win64/msvc143/debug/sgcore.lib +++ b/Source/ThirdParty/lib/win64/msvc143/debug/sgcore.lib @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4c82c0f5e51342d9705b7ed310c2fbc5b84dab9ae78fe8cb2e11767c206ce6e5 +oid sha256:06cc3e37075dfa7d632982176cc5503ce558ad40644f37576ea539852bea4e84 size 21748712 diff --git a/Source/ThirdParty/lib/win64/msvc143/release/serial.lib b/Source/ThirdParty/lib/win64/msvc143/release/serial.lib index 8fba21c2..72731d4b 100644 --- a/Source/ThirdParty/lib/win64/msvc143/release/serial.lib +++ b/Source/ThirdParty/lib/win64/msvc143/release/serial.lib @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:280f6d8d0bfd7fbb6a421960bffc6fa048955a9044e3c40153d9eaa4a07d5503 +oid sha256:1a2884b15f4e2539b586c7c8ebc47a1733d2ca60f046ca125b66a580b134df79 size 340028 diff --git a/Source/ThirdParty/lib/win64/msvc143/release/sgconnect.lib b/Source/ThirdParty/lib/win64/msvc143/release/sgconnect.lib index 9d3fdbf8..51030695 100644 --- a/Source/ThirdParty/lib/win64/msvc143/release/sgconnect.lib +++ b/Source/ThirdParty/lib/win64/msvc143/release/sgconnect.lib @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4885d9bf3b640a1f80d8ea83eefa2be79b1a1b8f94e0561a29dd2c52df08df44 -size 5177302 +oid sha256:e556660130b9c0b24f4c0622db3f1984e286898f96f024d56a91fd65994bc531 +size 5177296 diff --git a/Source/ThirdParty/lib/win64/msvc143/release/sgcore.lib b/Source/ThirdParty/lib/win64/msvc143/release/sgcore.lib index d59348ff..9586200c 100644 --- a/Source/ThirdParty/lib/win64/msvc143/release/sgcore.lib +++ b/Source/ThirdParty/lib/win64/msvc143/release/sgcore.lib @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:015079504e4446f34c0601dec704fd29a72b25cd4ea443a1d87cf024464f7582 -size 4989798 +oid sha256:68108ef6673e50967bcf82a4c88009151851b34c0b89b0b095fbc342c50ed245 +size 4989794 diff --git a/Source/ThirdParty/lib/win64/rustc/debug/sgble.lib b/Source/ThirdParty/lib/win64/rustc/debug/sgble.lib index 5395e701..1c7d5a61 100644 --- a/Source/ThirdParty/lib/win64/rustc/debug/sgble.lib +++ b/Source/ThirdParty/lib/win64/rustc/debug/sgble.lib @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:00a4bff644a153aa64c5dce17844d03804850315a58e38213009091ace98ae01 -size 201667822 +oid sha256:96d30fec19a0f0fbca8455f626b55a9fa226291d2d157dc1152f82eade2a8148 +size 201930760 diff --git a/Source/ThirdParty/lib/win64/rustc/release/sgble.lib b/Source/ThirdParty/lib/win64/rustc/release/sgble.lib index 82ecd36a..8091b558 100644 --- a/Source/ThirdParty/lib/win64/rustc/release/sgble.lib +++ b/Source/ThirdParty/lib/win64/rustc/release/sgble.lib @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a6a35479f6bfc2589a1483950aa04977cd011943c5a583f6e48e689d3e07abd7 -size 31072576 +oid sha256:6525349fbb77fd308691275eb3833619af14c7c05b315ab7bf28af42bc1eeddf +size 31076528