Skip to content

Commit f10a80e

Browse files
konraddysputjasoncdavis0
and
jasoncdavis0
authored
Version 3.3.3 (#61)
* Version 3.3.2: ANR detection fix * Syntax fix * Prevents Backtrace client integration from displaying Application.isPlaying is true * Fix iOS Backtrace namespace issue * Release notes + version update * Prevents Backtrace client integration from displaying Application.isPlaying is true * Fix iOS Backtrace namespace issue * Release notes + version update * Update CHANGELOG.md Co-authored-by: jasoncdavis0 <[email protected]>
1 parent dfe56b1 commit f10a80e

5 files changed

+10
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Backtrace Unity Release Notes
22

3+
## Version 3.3.3
4+
- Fixed iOS compilation issue with Backtrace namespace.
5+
- Prevent displaying Backtrace configuration when Application.isPlaying is true.
6+
37
## Version 3.3.2
48
- ANR detection algorithm now uses `Time.unscaledTime` instead of `Time.time` to prevent ANR detection when game is paused.
59

Editor/BacktraceClientEditor.cs

+4
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ public class BacktraceClientEditor : UnityEditor.Editor
99
{
1010
public override void OnInspectorGUI()
1111
{
12+
if (Application.isPlaying)
13+
{
14+
return;
15+
}
1216
var component = (BacktraceClient)target;
1317
component.Configuration =
1418
(BacktraceConfiguration)EditorGUILayout.ObjectField(

Runtime/BacktraceClient.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public class BacktraceClient : MonoBehaviour, IBacktraceClient
2020
{
2121
public BacktraceConfiguration Configuration;
2222

23-
public const string VERSION = "3.3.2";
23+
public const string VERSION = "3.3.3";
2424
public bool Enabled { get; private set; }
2525

2626
/// <summary>

iOS/libBacktrace-Unity-Cocoa.a

656 Bytes
Binary file not shown.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "io.backtrace.unity",
33
"displayName": "Backtrace",
4-
"version": "3.3.2",
4+
"version": "3.3.3",
55
"unity": "2017.1",
66
"description": "Backtrace's integration with Unity games allows customers to capture and report handled and unhandled Unity exceptions to their Backtrace instance, instantly offering the ability to prioritize and debug software errors.",
77
"keywords": [

0 commit comments

Comments
 (0)