File tree 4 files changed +4
-4
lines changed
deployments/UnityMixpanel/Assets/Mixpanel
dependencies/nano/include/nanosocket
4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
2
*** do not modify the line below, it is updated by the build scripts ***
3
- Mixpanel SDK for Unity version v1.3.0
3
+ Mixpanel SDK for Unity version v1.3.1
4
4
*/
5
5
6
6
#if ! UNITY_PRO_LICENSE && ( UNITY_2_6 || UNITY_2_6_1 || UNITY_3_0 || UNITY_3_0_0 || UNITY_3_1 || UNITY_3_2 || UNITY_3_3 || UNITY_3_4 || UNITY_3_5 || UNITY_4_0 || UNITY_4_0_1 || UNITY_4_1 || UNITY_4_2 || UNITY_4_3 || UNITY_4_5 || UNITY_4_6 )
Original file line number Diff line number Diff line change 1
1
/*
2
2
*** do not modify the line below, it is updated by the build scripts ***
3
- Mixpanel C++ SDK version v1.3.0
3
+ Mixpanel C++ SDK version v1.3.1
4
4
*/
5
5
6
6
#ifndef _MIXPANEL_HPP_
Original file line number Diff line number Diff line change @@ -383,7 +383,6 @@ class MBEDTLSSocket : public Socket
383
383
public:
384
384
MBEDTLSSocket ()
385
385
{
386
- mixpanel_mbedtls_debug_set_threshold (0 );
387
386
mixpanel_mbedtls_net_init ( &net );
388
387
mixpanel_mbedtls_ssl_init ( &ssl );
389
388
mixpanel_mbedtls_ssl_config_init ( &conf );
@@ -477,6 +476,7 @@ class MBEDTLSSocket : public Socket
477
476
478
477
virtual int close () override
479
478
{
479
+ // mixpanel_mbedtls_debug_set_threshold(1000);
480
480
mixpanel_mbedtls_net_free ( &net );
481
481
// mixpanel_mbedtls_x509_crt_free( &cacert );
482
482
mixpanel_mbedtls_ssl_free ( &ssl );
Original file line number Diff line number Diff line change 22
22
23
23
namespace mixpanel
24
24
{
25
- static const std::string sdk_version = " v1.3.0 " ;
25
+ static const std::string sdk_version = " v1.3.1 " ;
26
26
27
27
// helper function to get the time since epoch as double / float etc.
28
28
template <typename T>
You can’t perform that action at this time.
0 commit comments