Skip to content

Commit 8d28b1c

Browse files
committed
fix: fixed error with recording state; update to beta5
1 parent 923f044 commit 8d28b1c

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

Runtime/Core/JahroConfig.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public enum Environment
1515
}
1616

1717
internal const Environment ENV = Environment.PROD;
18-
public static readonly string CurrentVersion = "1.0.0-beta4";
18+
public static readonly string CurrentVersion = "1.0.0-beta5";
1919

2020
#endregion
2121

Runtime/Core/Snapshots/SnapshotsManager.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -336,6 +336,8 @@ private void ChechExistingSnapshots()
336336
{
337337
foreach (var snapshot in SnapshotSessions)
338338
{
339+
if (_activeSession.sessionId == snapshot.sessionId) continue;
340+
339341
snapshot.SetError(null);
340342
if (snapshot.GetStatus() == SnapshotSession.Status.Recorded)
341343
{

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "io.jahro.console",
3-
"version": "1.0.0-beta4",
3+
"version": "1.0.0-beta5",
44
"displayName": "Jahro",
55
"description": "Jahro is a powerful and easy-to-use Unity debugging console and runtime tool. Effortlessly execute commands, monitor variables in real-time, capture logs, and sync snapshots to analyze your game like never before. Perfect for developers who want a smarter way to debug, test, and optimize their Unity projects!",
66
"unity": "2021.1",

0 commit comments

Comments
 (0)