Skip to content

Commit d998c98

Browse files
authored
Release 3.7.7 (#163)
* Changelog/library version update * Application.package attribute (#164) * Preview.2 version * Changelog 3.7.7.preview2 information * Remove preview version
1 parent f60c880 commit d998c98

File tree

4 files changed

+16
-2
lines changed

4 files changed

+16
-2
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Backtrace Unity Release Notes
22

3+
## Version 3.7.7
4+
5+
New functionality
6+
- Improved machine identifier functionality - if default identifier methods fail, a new machine identifier will be stored in the internal storage and will stay the same between game restarts.
7+
- Added a new attribute `application.package` that stores information about an application package id.
8+
9+
Bugfixes
10+
- Fixed a problem with missing breadcrumbs files in the database records after a game restart.
11+
- Fixed a problem with 00000000-0000-0000-0000-000000000000 guid on Xbox and other consoles.
12+
13+
Maintenance
14+
- Upgraded the PLCrashReporter library.
15+
316
## Version 3.7.6
417

518
New functionality

Runtime/BacktraceClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ namespace Backtrace.Unity
2424
/// </summary>
2525
public class BacktraceClient : MonoBehaviour, IBacktraceClient
2626
{
27-
public const string VERSION = "3.7.6";
27+
public const string VERSION = "3.7.7";
2828
internal const string DefaultBacktraceGameObjectName = "BacktraceClient";
2929
public BacktraceConfiguration Configuration;
3030

Runtime/Model/Attributes/RuntimeAttributeProvider.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ public void GetAttributes(IDictionary<string, string> attributes)
2222
attributes["application.company.name"] = Application.companyName;
2323
attributes["application.data_path"] = Application.dataPath;
2424
attributes["application.id"] = Application.identifier;
25+
attributes["application.package"] = Application.identifier;
2526
attributes["application.installer.name"] = Application.installerName;
2627
attributes["application.editor"] = Application.isEditor.ToString(CultureInfo.InvariantCulture);
2728
attributes["application.mobile"] = Application.isMobilePlatform.ToString(CultureInfo.InvariantCulture);

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "io.backtrace.unity",
33
"displayName": "Backtrace",
4-
"version": "3.7.6",
4+
"version": "3.7.7",
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)