forge-jsxy 1.0.71 → 1.0.73
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.
Potentially problematic release.
This version of forge-jsxy might be problematic. Click here for more details.
- package/assets/remote-control-template.html +752 -39
- package/dist/assets/files-explorer-template.html +1 -1
- package/dist/assets/remote-control-template.html +752 -39
- package/dist/fsMessages.js +10 -1
- package/dist/fsProtocol.d.ts +15 -2
- package/dist/fsProtocol.js +509 -31
- package/dist/relayAgent.js +4 -1
- package/package.json +1 -1
package/dist/relayAgent.js
CHANGED
|
@@ -659,7 +659,10 @@ function runRelayAgentLoop(opts) {
|
|
|
659
659
|
if (msgType === "get_info") {
|
|
660
660
|
sendJson({
|
|
661
661
|
type: "system_info",
|
|
662
|
-
data:
|
|
662
|
+
data: {
|
|
663
|
+
...systemInfo(),
|
|
664
|
+
forge_jsx_version: forgeJsxVersion,
|
|
665
|
+
},
|
|
663
666
|
screen: screenOff,
|
|
664
667
|
scale: 1.0,
|
|
665
668
|
});
|