Skip to content

Commit 7ea5298

Browse files
authored
version 1.2.0 (#221)
1 parent 68f576b commit 7ea5298

File tree

16 files changed

+38
-24
lines changed

16 files changed

+38
-24
lines changed

Assets/AppCenter/Plugins/AppCenterSDK/Analytics/Shared/Analytics.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ namespace Microsoft.AppCenter.Unity.Analytics
1717
public class Analytics
1818
{
1919
// Used by App Center Unity Editor Extensions: https://github.com/Microsoft/AppCenter-SDK-Unity-Extension
20-
public const string AnalyticsSDKVersion = "1.1.0";
20+
public const string AnalyticsSDKVersion = "1.2.0";
2121

2222
public static void PrepareEventHandlers()
2323
{

Assets/AppCenter/Plugins/AppCenterSDK/Core/Shared/WrapperSdk.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public static class WrapperSdk
1313
private static bool _hasAttemptedToGetRuntimeVersion;
1414

1515
public const string Name = "appcenter.unity";
16-
public const string WrapperSdkVersion = "1.1.0";
16+
public const string WrapperSdkVersion = "1.2.0";
1717

1818
internal static string WrapperRuntimeVersion
1919
{

Assets/AppCenter/Plugins/AppCenterSDK/Crashes/Shared/Crashes.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ namespace Microsoft.AppCenter.Unity.Crashes
2121
public class Crashes
2222
{
2323
// Used by App Center Unity Editor Extensions: https://github.com/Microsoft/AppCenter-SDK-Unity-Extension
24-
public const string CrashesSDKVersion = "1.1.0";
24+
public const string CrashesSDKVersion = "1.2.0";
2525
private static bool _reportUnhandledExceptions = false;
2626
private static readonly object _objectLock = new object();
2727

Assets/AppCenter/Plugins/AppCenterSDK/Distribute/Shared/Distribute.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ namespace Microsoft.AppCenter.Unity.Distribute
1717
public class Distribute
1818
{
1919
// Used by App Center Unity Editor Extensions: https://github.com/Microsoft/AppCenter-SDK-Unity-Extension
20-
public const string DistributeSDKVersion = "1.1.0";
20+
public const string DistributeSDKVersion = "1.2.0";
2121

2222
public static void PrepareEventHandlers()
2323
{

Assets/AppCenter/Plugins/AppCenterSDK/Push/Shared/Push.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ namespace Microsoft.AppCenter.Unity.Push
1717
public class Push
1818
{
1919
// Used by App Center Unity Editor Extensions: https://github.com/Microsoft/AppCenter-SDK-Unity-Extension
20-
public const string PushSDKVersion = "1.1.0";
20+
public const string PushSDKVersion = "1.2.0";
2121
private static readonly object _lockObject = new object();
2222
private static bool _needsReplay = true;
2323

Assets/AppCenter/Plugins/iOS/Analytics/PropertyConfigurator.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ void appcenter_unity_property_configurator_set_app_name(MSPropertyConfigurator *
1212
}
1313

1414
void appcenter_unity_property_configurator_set_user_id(MSPropertyConfigurator *configurator, char* userId) {
15-
//[configurator setUserId: appcenter_unity_cstr_to_ns_string(userId)];
15+
[configurator setUserId: appcenter_unity_cstr_to_ns_string(userId)];
1616
}
1717

1818
void appcenter_unity_property_configurator_set_app_version(MSPropertyConfigurator *configurator, char* appVersion) {

Assets/AppCenter/Plugins/iOS/Core/AppCenterUnity.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ void appcenter_unity_set_log_url(const char* logUrl)
3737

3838
void appcenter_unity_set_user_id(char* userId)
3939
{
40-
//[MSAppCenter setUserId: appcenter_unity_cstr_to_ns_string(userId)];
40+
[MSAppCenter setUserId: appcenter_unity_cstr_to_ns_string(userId)];
4141
}
4242

4343
void appcenter_unity_set_enabled(bool isEnabled)

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# App Center SDK for Unity Change Log
22

3+
## Release 1.2.0
4+
5+
App Center SDK for Unity now uses the latest native SDKs:
6+
* App Center SDK for Android version 1.11.0
7+
* App Center SDK for iOS version 1.12.0
8+
* App Center SDK for .NET version 1.11.0
9+
10+
* **[Feature]** Add support for `Push`.
11+
* **[Feature]** Implement `AppCenter.SetUserId` that allows users to set userId that applies to crashes, error and push logs.
12+
* **[Feature]** Work for a future change in transmission protocol and endpoint for Analytics data. There is no impact on your current workflow when using App Center.
13+
* **[Bug Fix]** Fix AppCenter Analytics working incorrectly in case there's no advanced behavior but this file exists.
14+
15+
___
16+
317
## Release 1.1.0
418

519
**Analytics**

RELEASE.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
# Release 1.1.0
1+
# Release 1.2.0
22

3-
**Analytics**
3+
App Center SDK for Unity now uses the latest native SDKs:
4+
* App Center SDK for Android version 1.11.0
5+
* App Center SDK for iOS version 1.12.0
6+
* App Center SDK for .NET version 1.11.0
47

5-
* **[Feature]** Add new trackEvent APIs that take priority (normal or critical) of event logs. Events tracked with critical flag will take precedence over all other logs except crash logs (when AppCenterCrashes is enabled), and only be dropped if storage is full and must make room for newer critical events or crashes logs.
6-
* **[Feature]** Add support for typed properties. Note that these APIs still convert properties back to strings on the App Center backend. More work is needed to store and display typed properties in the App Center portal. Using the new APIs now will enable future scenarios, but for now the behavior will be the same as it is for current event properties.
7-
8-
**Android**
9-
10-
* **[Fix]** Preventing stack overflow crash while reading a huge throwable file.
8+
* **[Feature]** Add support for `Push`.
9+
* **[Feature]** Implement `AppCenter.SetUserId` that allows users to set userId that applies to crashes, error and push logs.
10+
* **[Feature]** Work for a future change in transmission protocol and endpoint for Analytics data. There is no impact on your current workflow when using App Center.
11+
* **[Bug Fix]** Fix AppCenter Analytics working incorrectly in case there's no advanced behavior but this file exists.

UnityPackageSpecs/AppCenter.unitypackagespec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<package name="AppCenter" version="1.1.0">
2+
<package name="AppCenter" version="1.2.0">
33
<include>
44
<!-- Editor related files -->
55
<file path="Assets/AppCenter/Editor" />

0 commit comments

Comments
 (0)