connected-spaces-platform.web 4.26.2 → 4.27.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Debug/ConnectedSpacesPlatform_WASM.js +170 -4
- package/Debug/ConnectedSpacesPlatform_WASM.wasm +0 -0
- package/Debug/ConnectedSpacesPlatform_WASM.wasm.debug.wasm +0 -0
- package/README.md +5 -9
- package/Release/ConnectedSpacesPlatform_WASM.js +1 -1
- package/Release/ConnectedSpacesPlatform_WASM.wasm +0 -0
- package/connectedspacesplatform.d.ts +233 -8
- package/connectedspacesplatform.js +702 -10
- package/connectedspacesplatform.js.map +1 -1
- package/connectedspacesplatform.ts +1370 -14
- package/package.json +1 -1
|
Binary file
|
|
Binary file
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Built from changelist ID
|
|
1
|
+
# Built from changelist ID d80c2267994cef50054cc504f6aeaf8a5aa30e0c
|
|
2
2
|
|
|
3
3
|
<br>
|
|
4
4
|
|
|
@@ -9,10 +9,8 @@
|
|
|
9
9
|
|
|
10
10
|
### 🐛 🔨 Bug Fixes
|
|
11
11
|
|
|
12
|
-
-
|
|
13
|
-
-
|
|
14
|
-
- Revert 'prevent crash on container' (#393) *(99aadd4)* [**OF-1272**]
|
|
15
|
-
- IsInSpace bad behavior (#394) *(c9dab2e)* [**OF-1275**]
|
|
12
|
+
- Do not strip symbols for VisionOS *(0487f42)* [**OB-3490**]
|
|
13
|
+
- Don't p/invoke private ctors/dtors *(9d7c83c)* [**OB-3490**]
|
|
16
14
|
|
|
17
15
|
|
|
18
16
|
|
|
@@ -26,7 +24,5 @@
|
|
|
26
24
|
|
|
27
25
|
| Change ID | Author | Description |
|
|
28
26
|
| --------- | ------ | ----------- |
|
|
29
|
-
|
|
|
30
|
-
|
|
|
31
|
-
| 99aadd4 | MAG-AW | [OF-1272] fix: revert 'prevent crash on container' (#393)<br>This reverts commit 26da0e39ca7f96ac30383c8ca7243099ab66111e. |
|
|
32
|
-
| c9dab2e | MAG-AW | [OF-1275] fix: IsInSpace bad behavior (#394) |
|
|
27
|
+
| 0487f42 | Michael K. | [OB-3490] fix: do not strip symbols for VisionOS |
|
|
28
|
+
| 9d7c83c | Michael K. | [OB-3490] fix: don't p/invoke private ctors/dtors<br>The C# wrapper generator was generating p/invoke imports for private<br>constructors and destructors, resulting in VisionOS attempting to<br>link against these non-existing exports. |
|