Skip to content

Commit b204432

Browse files
committed
fix: members switch, minor bug fixes
1 parent 5868e90 commit b204432

19 files changed

+17
-497
lines changed

Runtime/Core/Context/InitContextRequest.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
using System;
2+
using System.Collections.Concurrent;
23
using JahroConsole.Core.Network;
34
using UnityEngine;
45
using UnityEngine.Networking;

Runtime/Core/Context/JahroConfig.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public enum Environment
1010

1111
internal const Environment ENV = Environment.PROD;
1212

13-
internal static readonly string CurrentVersion = "0.1.0-alpha.2";
13+
internal static readonly string CurrentVersion = "0.1.0-alpha.3";
1414

1515
internal static readonly string RegisterUrl = "https://console.jahro.io";
1616

Runtime/Core/Context/JahroSession.cs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,14 @@ private set
2222
}
2323
}
2424

25+
internal string Id
26+
{
27+
get
28+
{
29+
return _sessionID;
30+
}
31+
}
32+
2533
private static JahroSession _current;
2634

2735
private JahroContext _context;

Runtime/Core/Snapshots/SnapshotUploadRequest.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ internal override List<IMultipartFormSection> FormDataMultipart()
5757
var formSections = new List<IMultipartFormSection>
5858
{
5959
new MultipartFormDataSection("tenantId", _teamId),
60+
new MultipartFormDataSection("sessionId", JahroSession.Current.Id),
6061
new MultipartFormDataSection("projectId", _projectId),
6162
new MultipartFormDataSection("createdBy", _userId),
6263
new MultipartFormDataSection("platform", Application.platform.ToString()),

Runtime/InternalCommands.meta

Lines changed: 0 additions & 8 deletions
This file was deleted.

Runtime/InternalCommands/ConsoleCommandsTestMethods.cs

Lines changed: 0 additions & 350 deletions
This file was deleted.

0 commit comments

Comments
 (0)