Skip to content

Commit 2f33572

Browse files
committed
release 4.1.0
1 parent de8320f commit 2f33572

File tree

12 files changed

+70
-17
lines changed

12 files changed

+70
-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: 24 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,39 @@
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+
* **[Feature]** Add a `SetMaxStorageSizeAsync` API which allows setting a maximum size limit on the local SQLite storage. The default value is 10MiB.
68

79
#### iOS
810

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

1115
#### iOS/Android
1216

1317
* **[Feature]** Add `NoReleaseAvailable` callback to distribute listener.
1418
* **[Fix]** Fix show the custom dialog update after the application start.
1519

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+
35+
___
36+
1637
## Release 4.0.0
1738

1839
### App Center

RELEASE.md

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

335
### 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)