Skip to content

Commit 935d67a

Browse files
committed
Version 2.1.1: Version bump, Readme/Changelog update
1 parent 239d99e commit 935d67a

8 files changed

+15
-85
lines changed

CHANGELOG.md

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

3+
## Version 2.1.1
4+
5+
- UPM modifications - fixed editor assembly definition,
6+
- Hiding Documentation and Scripts folders
7+
- Added Mac and Rider files to .gitignore
8+
- Moved Backtrace Configuration create menu deeper into the hierarchy
9+
310
## Version 2.1.0
411

512
- UPM support - changed project structure and divide Backtrae-unity plugin into assemblies.

Documentation~/images/dialog-box.PNG

40.9 KB
Loading

Editor/BacktraceMenu.cs

-66
This file was deleted.

Editor/BacktraceMenu.cs.meta

-11
This file was deleted.

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,13 @@ List of steps necessary to setup full Backtrace Unity integration.
4747

4848
## Integrating into your project
4949

50-
- Under the Assets Menu, there is now a Backtrace -> Configuration option. Choose that option (or Right click on empty space and select from the menu box) to have a Backtrace Configuration is generated in the Assets folder. You can drag and drop generated asset file into Backtrace Client configuration window.
51-
![Backtrace menu dialog box](./Documentation/images/dialog-box.PNG)
50+
- Under the Assets Menu "Create" option, there is now a Backtrace -> Configuration option. Choose that option (or Right click on empty space and select from the menu box) to have a Backtrace Configuration is generated in the Assets folder. You can drag and drop generated asset file into Backtrace Client configuration window.
51+
![Backtrace menu dialog box](./Documentation~/images/dialog-box.PNG)
5252
- Next, select an object from the Scene Hierarchy to associate the Backtrace reporting client to. In the example below, we use the Manager object., Using the Inspector panel, click the Add Component button and search for the Backtrace Client object.
5353
- Within the Backtrace Client panel, there is a Backtrace Configuration field. Drag and drop the Backtrace Configuration from the Assets folder to that field. More fields will appear for you to fill in to configure the Backtrace Client and Offline Database options.
54-
![Backtrace configuration window](./Documentation/images/unity-basic-configuration.PNG)
54+
![Backtrace configuration window](./Documentation~/images/unity-basic-configuration.PNG)
5555
- Provide valid Backtrace client configuration and start using library!
56-
![Full Backtrace configuration](./Documentation/images/client-setup.PNG)
56+
![Full Backtrace configuration](./Documentation~/images/client-setup.PNG)
5757

5858
Watch this 1 minute silent video to see the Integration and Configuration in action. The first 20 seconds of the video shows the above Integrating steps, and the second part shows details of the below Client and Database Settings - https://player.vimeo.com/video/300051476
5959

@@ -229,7 +229,7 @@ backtraceDatabase.Clear();
229229
#### Deduplication
230230

231231
Backtrace unity integration allows you to aggregate the same reports and send only one message to Backtrace Api. As a developer you can choose deduplication options. Please use `DeduplicationStrategy` enum to setup possible deduplication rules in Unity UI:
232-
![Backtrace deduplicaiton setup](./Documentation/images/deduplication-setup.PNG)
232+
![Backtrace deduplicaiton setup](./Documentation~/images/deduplication-setup.PNG)
233233

234234
Deduplication strategy types:
235235

Runtime/Model/BacktraceConfiguration.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
namespace Backtrace.Unity.Model
77
{
88
[Serializable]
9-
[CreateAssetMenu(fileName = "New Backtrace Configuration", menuName = "Backtrace/Configuration", order = 0)]
9+
[CreateAssetMenu(fileName = "Backtrace Configuration", menuName = "Backtrace/Configuration", order = 0)]
1010
public class BacktraceConfiguration : ScriptableObject
1111
{
1212
/// <summary>

Runtime/Model/BacktraceData.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ private void SetReportInformation()
194194
LangVersion = "Mono";
195195
#endif
196196

197-
AgentVersion = "2.1.0";
197+
AgentVersion = "2.1.1";
198198
Classifier = Report.ExceptionTypeReport ? new[] { Report.Classifier } : null;
199199
}
200200
}

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": "2.1.0",
4+
"version": "2.1.1",
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)