Skip to content

Commit 9f29888

Browse files
authored
Docs update (#35)
1 parent 8c1720e commit 9f29888

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

CHANGELOG.md

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

33
## Version 3.0.1
4-
- the `BacktraceDatabase` class will now create database directory, before final database validation. Previously, when directory didn't exist, BacktraceDatabase was disabled.
5-
- `BacktraceDatabase` now allows to pass interpolated string in Database options. Developer can use `Application.dataPath` or `Application.persistendDataPath` to set path to database.
6-
- Fixed ANR watchdog initialization - right now Backtrace native client will create class instance of `BacktraceAnrWatchdog` class, instead of creating instance via static class method.
7-
- `BacktraceLogManager` (class responsible for storing log data) will be initialized in `CaptureUnityMessages` method to prevent situation, when custom log from `BacktraceClient` can throw an unhandled exception.
8-
- The backtrace-unity library (Backtrace) will generate new image files in .jpg format.
4+
- The `BacktraceDatabase` class will now create database directory before final database validation. Previously, when directory didn't exist, BacktraceDatabase was disabled.
5+
- The `BacktraceDatabase` field now allows users to pass interpolated string in Database options. Developer can use `${Application.dataPath}` or `${Application.persistentDataPath}` to set path to database.
6+
- The backtrace-unity library will generate screenshot image files in .jpg format.
7+
- Optimizations in ANR watchdog and `BacktraceLogManager` initialization - The Backtrace client will now create a class instance of `BacktraceAnrWatchdog` class, instead of creating instance via static class method. The `BacktraceLogManager` (class responsible for storing log data) will be initialized in `CaptureUnityMessages`.
98

109
## Version 3.0.0
1110

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,8 @@ The following is a reference guide to the Backtrace Client fields:
7474
- Ignore SSL validation: Unity by default will validate ssl certificates. By using this option you can avoid ssl certificates validation. However, if you don't need to ignore ssl validation, please set this option to false.
7575
- Handle ANR (Application not responding) - this options is available only in Android build. It allows to catch ANR (application not responding) events happened to your game in Android devices. In this release, ANR is set to detect after 5 seconds. This will be configurable in a future release.
7676
- Enable Database: When this setting is toggled, the backtrace-unity plugin will configure an offline database that will store reports if they can't be submitted do to being offline or not finding a network. When toggled on, there are a number of Database settings to configure.
77-
- Backtrace Database path: This is the path to directory where the Backtrace database will store reports on your game. NOTE: Backtrace database will remove all existing files on database start
77+
- Backtrace Database path: This is the path to directory where the Backtrace database will store reports on your game. You can use interpolated strings SUCH AS
78+
${Application.persistentDataPath}/backtrace/database to dynamically look up a known directory structure to use. NOTE: Backtrace database will remove all existing files in the database directory upion first initialization.
7879
- Create database directory toggle: If toggled, the library will create the offline database directory if the provided path doesn't exists,
7980
- Client-side deduplication: Backtrace-unity plugin allows you to combine the same reports. By using deduplication rules, you can tell backtrace-unity plugin how we should merge reports.
8081
- Minidump type: Type of minidump that will be attached to Backtrace report in the report generated on Windows machine.

0 commit comments

Comments
 (0)