resend pairing code when url changes
parent
22cbd6c791
commit
e779473cf5
|
|
@ -22,7 +22,16 @@ namespace VELConnect
|
|||
public static string VelConnectUrl
|
||||
{
|
||||
get => instance.velConnectUrl;
|
||||
set => instance.velConnectUrl = value;
|
||||
set {
|
||||
instance.velConnectUrl = value;
|
||||
SetDeviceField(new Dictionary<DeviceField, string>
|
||||
{
|
||||
{ DeviceField.os_info, SystemInfo.operatingSystem },
|
||||
{ DeviceField.friendly_name, SystemInfo.deviceName },
|
||||
{ DeviceField.current_app, Application.productName },
|
||||
{ DeviceField.pairing_code, PairingCode },
|
||||
});
|
||||
}
|
||||
}
|
||||
private static VELConnectManager instance;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "edu.uga.engr.vel.vel-connect",
|
||||
"displayName": "VEL-Connect",
|
||||
"version": "5.0.1",
|
||||
"version": "5.0.2",
|
||||
"unity": "2019.1",
|
||||
"description": "Web-based configuration for VR applications",
|
||||
"keywords": [],
|
||||
|
|
|
|||
Loading…
Reference in New Issue