update version to 3.2.0
This commit is contained in:
Родитель
352acad897
Коммит
24e2532ea0
|
@ -1,4 +1,4 @@
|
||||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
// Licensed under the MIT license.
|
// Licensed under the MIT license.
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
|
@ -16,7 +16,7 @@ namespace Microsoft.AppCenter.Unity.Analytics
|
||||||
public class Analytics
|
public class Analytics
|
||||||
{
|
{
|
||||||
// Used by App Center Unity Editor Extensions: https://github.com/Microsoft/AppCenter-SDK-Unity-Extension
|
// Used by App Center Unity Editor Extensions: https://github.com/Microsoft/AppCenter-SDK-Unity-Extension
|
||||||
public const string AnalyticsSDKVersion = "3.1.0";
|
public const string AnalyticsSDKVersion = "3.2.0";
|
||||||
|
|
||||||
public static void PrepareEventHandlers()
|
public static void PrepareEventHandlers()
|
||||||
{
|
{
|
||||||
|
|
|
@ -12,7 +12,7 @@ namespace Microsoft.AppCenter.Unity
|
||||||
private static bool _hasAttemptedToGetRuntimeVersion;
|
private static bool _hasAttemptedToGetRuntimeVersion;
|
||||||
|
|
||||||
public const string Name = "appcenter.unity";
|
public const string Name = "appcenter.unity";
|
||||||
public const string WrapperSdkVersion = "3.1.0";
|
public const string WrapperSdkVersion = "3.2.0";
|
||||||
|
|
||||||
internal static string WrapperRuntimeVersion
|
internal static string WrapperRuntimeVersion
|
||||||
{
|
{
|
||||||
|
|
|
@ -20,7 +20,7 @@ namespace Microsoft.AppCenter.Unity.Crashes
|
||||||
public class Crashes
|
public class Crashes
|
||||||
{
|
{
|
||||||
// Used by App Center Unity Editor Extensions: https://github.com/Microsoft/AppCenter-SDK-Unity-Extension
|
// Used by App Center Unity Editor Extensions: https://github.com/Microsoft/AppCenter-SDK-Unity-Extension
|
||||||
public const string CrashesSDKVersion = "3.1.0";
|
public const string CrashesSDKVersion = "3.2.0";
|
||||||
private static bool _reportUnhandledExceptions = false;
|
private static bool _reportUnhandledExceptions = false;
|
||||||
private static bool _enableErrorAttachmentsCallbacks = false;
|
private static bool _enableErrorAttachmentsCallbacks = false;
|
||||||
private static readonly object _objectLock = new object();
|
private static readonly object _objectLock = new object();
|
||||||
|
|
|
@ -16,7 +16,7 @@ namespace Microsoft.AppCenter.Unity.Distribute
|
||||||
public class Distribute
|
public class Distribute
|
||||||
{
|
{
|
||||||
// Used by App Center Unity Editor Extensions: https://github.com/Microsoft/AppCenter-SDK-Unity-Extension
|
// Used by App Center Unity Editor Extensions: https://github.com/Microsoft/AppCenter-SDK-Unity-Extension
|
||||||
public const string DistributeSDKVersion = "3.1.0";
|
public const string DistributeSDKVersion = "3.2.0";
|
||||||
|
|
||||||
public static void PrepareEventHandlers()
|
public static void PrepareEventHandlers()
|
||||||
{
|
{
|
||||||
|
|
|
@ -16,7 +16,7 @@ namespace Microsoft.AppCenter.Unity.Push
|
||||||
public class Push
|
public class Push
|
||||||
{
|
{
|
||||||
// Used by App Center Unity Editor Extensions: https://github.com/Microsoft/AppCenter-SDK-Unity-Extension
|
// Used by App Center Unity Editor Extensions: https://github.com/Microsoft/AppCenter-SDK-Unity-Extension
|
||||||
public const string PushSDKVersion = "3.1.0";
|
public const string PushSDKVersion = "3.2.0";
|
||||||
private static readonly object _lockObject = new object();
|
private static readonly object _lockObject = new object();
|
||||||
private static bool _needsReplay = true;
|
private static bool _needsReplay = true;
|
||||||
private static bool IsAppCenterStarted;
|
private static bool IsAppCenterStarted;
|
||||||
|
|
26
CHANGELOG.md
26
CHANGELOG.md
|
@ -1,6 +1,6 @@
|
||||||
# App Center SDK for Unity Change Log
|
# App Center SDK for Unity Change Log
|
||||||
|
|
||||||
## Release 3.1.1 (Under development)
|
## Release 3.2.0
|
||||||
|
|
||||||
### App Center
|
### App Center
|
||||||
|
|
||||||
|
@ -10,6 +10,30 @@
|
||||||
|
|
||||||
* **[Fix]** Add missing system dependencies that aren't implicitly included when `APPCENTER_DONT_USE_NATIVE_STARTER` flag is used.
|
* **[Fix]** Add missing system dependencies that aren't implicitly included when `APPCENTER_DONT_USE_NATIVE_STARTER` flag is used.
|
||||||
|
|
||||||
|
#### UWP
|
||||||
|
|
||||||
|
* **[Fix]** Fix retry sending logs after timeout exception.
|
||||||
|
|
||||||
|
### App Center Crashes
|
||||||
|
|
||||||
|
* **[Fix]** Remove the multiple attachments warning as that is now supported by the portal.
|
||||||
|
|
||||||
|
#### Android
|
||||||
|
|
||||||
|
* **[Fix]** Change minidump filter to use file extension instead of name.
|
||||||
|
* **[Fix]** Fix removing minidump files when the sending crash report was discarded.
|
||||||
|
|
||||||
|
#### iOS
|
||||||
|
|
||||||
|
* **[Improvement]** Update PLCrashReporter to 1.5.1.
|
||||||
|
|
||||||
|
### App Center Distribute
|
||||||
|
|
||||||
|
#### Android
|
||||||
|
|
||||||
|
* **[Feature]** Automatically check for update when application switches from background to foreground (unless automatic checks are disabled).
|
||||||
|
* **[Fix]** Fix checking for updates after disabling the Distribute module while downloading the release.
|
||||||
|
|
||||||
___
|
___
|
||||||
|
|
||||||
## Release 3.1.0
|
## Release 3.1.0
|
||||||
|
|
34
RELEASE.md
34
RELEASE.md
|
@ -1,3 +1,37 @@
|
||||||
|
## Release 3.2.0
|
||||||
|
|
||||||
|
### App Center
|
||||||
|
|
||||||
|
* **[Fix]** Fix SDK doesn't work without `Distribute` package.
|
||||||
|
|
||||||
|
#### iOS
|
||||||
|
|
||||||
|
* **[Fix]** Add missing system dependencies that aren't implicitly included when `APPCENTER_DONT_USE_NATIVE_STARTER` flag is used.
|
||||||
|
|
||||||
|
#### UWP
|
||||||
|
|
||||||
|
* **[Fix]** Fix retry sending logs after timeout exception.
|
||||||
|
|
||||||
|
### App Center Crashes
|
||||||
|
|
||||||
|
* **[Fix]** Remove the multiple attachments warning as that is now supported by the portal.
|
||||||
|
|
||||||
|
#### Android
|
||||||
|
|
||||||
|
* **[Fix]** Change minidump filter to use file extension instead of name.
|
||||||
|
* **[Fix]** Fix removing minidump files when the sending crash report was discarded.
|
||||||
|
|
||||||
|
#### iOS
|
||||||
|
|
||||||
|
* **[Improvement]** Update PLCrashReporter to 1.5.1.
|
||||||
|
|
||||||
|
### App Center Distribute
|
||||||
|
|
||||||
|
#### Android
|
||||||
|
|
||||||
|
* **[Feature]** Automatically check for update when application switches from background to foreground (unless automatic checks are disabled).
|
||||||
|
* **[Fix]** Fix checking for updates after disabling the Distribute module while downloading the release.
|
||||||
|
|
||||||
## Release 3.1.0
|
## Release 3.1.0
|
||||||
|
|
||||||
### App Center
|
### App Center
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<package name="AppCenter" version="3.1.0">
|
<package name="AppCenter" version="3.2.0">
|
||||||
<include>
|
<include>
|
||||||
<!-- Editor related files -->
|
<!-- Editor related files -->
|
||||||
<file path="Assets/AppCenter/Editor" />
|
<file path="Assets/AppCenter/Editor" />
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<package name="AppCenterAnalytics" version="3.1.0" needsCore="true">
|
<package name="AppCenterAnalytics" version="3.2.0" needsCore="true">
|
||||||
<include>
|
<include>
|
||||||
<!-- Shared files -->
|
<!-- Shared files -->
|
||||||
<file path="Assets/AppCenter/Plugins/AppCenterSDK/Analytics/Shared" />
|
<file path="Assets/AppCenter/Plugins/AppCenterSDK/Analytics/Shared" />
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<package name="AppCenterCrashes" version="3.1.0" needsCore="true">
|
<package name="AppCenterCrashes" version="3.2.0" needsCore="true">
|
||||||
<include>
|
<include>
|
||||||
<!-- Shared files -->
|
<!-- Shared files -->
|
||||||
<file path="Assets/AppCenter/Plugins/AppCenterSDK/Crashes/Shared" />
|
<file path="Assets/AppCenter/Plugins/AppCenterSDK/Crashes/Shared" />
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<package name="AppCenterDistribute" version="3.1.0" needsCore="true">
|
<package name="AppCenterDistribute" version="3.2.0" needsCore="true">
|
||||||
<include>
|
<include>
|
||||||
<!-- Shared files -->
|
<!-- Shared files -->
|
||||||
<file path="Assets/AppCenter/Plugins/AppCenterSDK/Distribute/Shared" />
|
<file path="Assets/AppCenter/Plugins/AppCenterSDK/Distribute/Shared" />
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<package name="AppCenterPush" version="3.1.0" needsCore="true">
|
<package name="AppCenterPush" version="3.2.0" needsCore="true">
|
||||||
<include>
|
<include>
|
||||||
<!-- Shared files -->
|
<!-- Shared files -->
|
||||||
<file path="Assets/AppCenter/Plugins/AppCenterSDK/Push/Shared" />
|
<file path="Assets/AppCenter/Plugins/AppCenterSDK/Push/Shared" />
|
||||||
|
|
|
@ -13,9 +13,9 @@ using System.Net;
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
|
|
||||||
// Native SDK versions
|
// Native SDK versions
|
||||||
const string AndroidSdkVersion = "3.1.0";
|
const string AndroidSdkVersion = "3.2.1";
|
||||||
const string IosSdkVersion = "3.1.0";
|
const string IosSdkVersion = "3.1.1";
|
||||||
const string UwpSdkVersion = "3.1.0";
|
const string UwpSdkVersion = "3.2.1";
|
||||||
|
|
||||||
// URLs for downloading binaries.
|
// URLs for downloading binaries.
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"git": {
|
"git": {
|
||||||
"repositoryUrl": "https://github.com/microsoft/appcenter-sdk-android.git",
|
"repositoryUrl": "https://github.com/microsoft/appcenter-sdk-android.git",
|
||||||
"commitHash": "af4f0eecef83a0c6c00b26f9e12d215d0df21351"
|
"commitHash": "46937a914f945c7eebdc3d74acf2c91744357d0d"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -14,7 +14,7 @@
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"git": {
|
"git": {
|
||||||
"repositoryUrl": "https://github.com/microsoft/appcenter-sdk-apple.git",
|
"repositoryUrl": "https://github.com/microsoft/appcenter-sdk-apple.git",
|
||||||
"commitHash": "68ef3d10a6e3f578d9f6a13ee65e0326b320f23c"
|
"commitHash": "9cda019f382e53844f369e168fd02ad457b11c07"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -23,7 +23,7 @@
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"git": {
|
"git": {
|
||||||
"repositoryUrl": "https://github.com/microsoft/appcenter-sdk-dotnet.git",
|
"repositoryUrl": "https://github.com/microsoft/appcenter-sdk-dotnet.git",
|
||||||
"commitHash": "d045132db7cdce82e75d5ff8c17d3d4e9914af2c"
|
"commitHash": "b6355d44135ff6a9774a6bf0ebfb255937d6adeb"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Загрузка…
Ссылка в новой задаче