Skip to content

Commit

Permalink
Version 2.1.1: Version bump, Readme/Changelog update
Browse files Browse the repository at this point in the history
  • Loading branch information
konraddysput committed Apr 20, 2020
1 parent 239d99e commit 935d67a
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 85 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Backtrace Unity Release Notes

## Version 2.1.1

- UPM modifications - fixed editor assembly definition,
- Hiding Documentation and Scripts folders
- Added Mac and Rider files to .gitignore
- Moved Backtrace Configuration create menu deeper into the hierarchy

## Version 2.1.0

- UPM support - changed project structure and divide Backtrae-unity plugin into assemblies.
Expand Down
Binary file modified Documentation~/images/dialog-box.PNG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
66 changes: 0 additions & 66 deletions Editor/BacktraceMenu.cs

This file was deleted.

11 changes: 0 additions & 11 deletions Editor/BacktraceMenu.cs.meta

This file was deleted.

10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,13 @@ List of steps necessary to setup full Backtrace Unity integration.

## Integrating into your project

- 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.
![Backtrace menu dialog box](./Documentation/images/dialog-box.PNG)
- 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.
![Backtrace menu dialog box](./Documentation~/images/dialog-box.PNG)
- 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.
- 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.
![Backtrace configuration window](./Documentation/images/unity-basic-configuration.PNG)
![Backtrace configuration window](./Documentation~/images/unity-basic-configuration.PNG)
- Provide valid Backtrace client configuration and start using library!
![Full Backtrace configuration](./Documentation/images/client-setup.PNG)
![Full Backtrace configuration](./Documentation~/images/client-setup.PNG)

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

Expand Down Expand Up @@ -229,7 +229,7 @@ backtraceDatabase.Clear();
#### Deduplication

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:
![Backtrace deduplicaiton setup](./Documentation/images/deduplication-setup.PNG)
![Backtrace deduplicaiton setup](./Documentation~/images/deduplication-setup.PNG)

Deduplication strategy types:

Expand Down
2 changes: 1 addition & 1 deletion Runtime/Model/BacktraceConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
namespace Backtrace.Unity.Model
{
[Serializable]
[CreateAssetMenu(fileName = "New Backtrace Configuration", menuName = "Backtrace/Configuration", order = 0)]
[CreateAssetMenu(fileName = "Backtrace Configuration", menuName = "Backtrace/Configuration", order = 0)]
public class BacktraceConfiguration : ScriptableObject
{
/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion Runtime/Model/BacktraceData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ private void SetReportInformation()
LangVersion = "Mono";
#endif

AgentVersion = "2.1.0";
AgentVersion = "2.1.1";
Classifier = Report.ExceptionTypeReport ? new[] { Report.Classifier } : null;
}
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "io.backtrace.unity",
"displayName": "Backtrace",
"version": "2.1.0",
"version": "2.1.1",
"unity": "2017.1",
"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.",
"keywords": [
Expand Down

0 comments on commit 935d67a

Please sign in to comment.