Skip to content

Commit ae75629

Browse files
authored
Merge pull request #483 from microsoft/release/4.1.0
Release 4.1.0
2 parents 6879313 + e8ee455 commit ae75629

File tree

12 files changed

+74
-17
lines changed

12 files changed

+74
-17
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ namespace Microsoft.AppCenter.Unity.Analytics
1616
public class Analytics
1717
{
1818
// Used by App Center Unity Editor Extensions: https://github.com/Microsoft/AppCenter-SDK-Unity-Extension
19-
public const string AnalyticsSDKVersion = "4.0.0";
19+
public const string AnalyticsSDKVersion = "4.1.0";
2020

2121
public static void PrepareEventHandlers()
2222
{

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

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

1414
public const string Name = "appcenter.unity";
15-
public const string WrapperSdkVersion = "4.0.0";
15+
public const string WrapperSdkVersion = "4.1.0";
1616

1717
internal static string WrapperRuntimeVersion
1818
{

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

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ namespace Microsoft.AppCenter.Unity.Distribute
1616
public class Distribute
1717
{
1818
// Used by App Center Unity Editor Extensions: https://github.com/Microsoft/AppCenter-SDK-Unity-Extension
19-
public const string DistributeSDKVersion = "4.0.0";
19+
public const string DistributeSDKVersion = "4.1.0";
2020

2121
public static void PrepareEventHandlers()
2222
{

CHANGELOG.md

Lines changed: 26 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,41 @@
11
# App Center SDK for Unity Change Log
22

3-
## Version 4.0.1 (under development)
3+
## Release 4.1.0
44

5-
### App Center Distribute
5+
### AppCenter
6+
7+
#### UWP
8+
9+
* **[Feature]** Add a `SetMaxStorageSizeAsync` API which allows setting a maximum size limit on the local SQLite storage. The default value is 10MiB.
610

711
#### iOS
812

9-
* **[Feature]** Add `WillExitApp` callback to distribute listener.
13+
* **[Fix]** Fix a crash when SQLite returns zero for `page_size`.
14+
15+
### App Center Distribute
1016

1117
#### iOS/Android
1218

1319
* **[Feature]** Add `NoReleaseAvailable` callback to distribute listener.
1420
* **[Fix]** Fix show the custom dialog update after the application start.
1521

22+
#### iOS
23+
24+
* **[Feature]** Add `WillExitApp` callback to distribute listener.
25+
26+
#### Android
27+
28+
* **[Fix]** Fix a crash when the app is trying to open the system settings screen from the background.
29+
* **[Fix]** Fix browser opening when using a private distribution group on Android 11.
30+
31+
### App Center Crashes
32+
33+
#### Android
34+
35+
* **[Fix]** Fix removing throwable files after rewriting error logs due to small database size.
36+
37+
___
38+
1639
## Release 4.0.0
1740

1841
### App Center

RELEASE.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,37 @@
1+
## Release 4.1.0
2+
3+
### AppCenter
4+
5+
#### UWP
6+
7+
* **[Feature]** Add a `SetMaxStorageSizeAsync` API which allows setting a maximum size limit on the local SQLite storage. The default value is 10MiB.
8+
9+
#### iOS
10+
11+
* **[Fix]** Fix a crash when SQLite returns zero for `page_size`.
12+
13+
### App Center Distribute
14+
15+
#### iOS/Android
16+
17+
* **[Feature]** Add `NoReleaseAvailable` callback to distribute listener.
18+
* **[Fix]** Fix show the custom dialog update after the application start.
19+
20+
#### iOS
21+
22+
* **[Feature]** Add `WillExitApp` callback to distribute listener.
23+
24+
#### Android
25+
26+
* **[Fix]** Fix a crash when the app is trying to open the system settings screen from the background.
27+
* **[Fix]** Fix browser opening when using a private distribution group on Android 11.
28+
29+
### App Center Crashes
30+
31+
#### Android
32+
33+
* **[Fix]** Fix removing throwable files after rewriting error logs due to small database size.
34+
135
## Release 4.0.0
236

337
### App Center

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="4.0.0">
2+
<package name="AppCenter" version="4.1.0">
33
<include>
44
<!-- Editor related files -->
55
<file path="Assets/AppCenter/Editor" />

UnityPackageSpecs/AppCenterAnalytics.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="AppCenterAnalytics" version="4.0.0" needsCore="true">
2+
<package name="AppCenterAnalytics" version="4.1.0" needsCore="true">
33
<include>
44
<!-- Shared files -->
55
<file path="Assets/AppCenter/Plugins/AppCenterSDK/Analytics/Shared" />

UnityPackageSpecs/AppCenterCrashes.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="AppCenterCrashes" version="4.0.0" needsCore="true">
2+
<package name="AppCenterCrashes" version="4.1.0" needsCore="true">
33
<include>
44
<!-- Shared files -->
55
<file path="Assets/AppCenter/Plugins/AppCenterSDK/Crashes/Shared" />

UnityPackageSpecs/AppCenterDistribute.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="AppCenterDistribute" version="4.0.0" needsCore="true">
2+
<package name="AppCenterDistribute" version="4.1.0" needsCore="true">
33
<include>
44
<!-- Shared files -->
55
<file path="Assets/AppCenter/Plugins/AppCenterSDK/Distribute/Shared" />

0 commit comments

Comments
 (0)