@frockbot/plugin-fly-sprite 0.3.11 → 0.3.13
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/package.json +8 -8
- package/src/computer.ts +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@frockbot/plugin-fly-sprite",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.13",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -25,16 +25,16 @@
|
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@cordisjs/plugin-webui": "0.8.2",
|
|
28
|
-
"@frockbot/computer-core": "0.3.
|
|
29
|
-
"@frockbot/computer-host-protocol": "0.3.
|
|
30
|
-
"@frockbot/computer-host-runtime": "0.3.
|
|
31
|
-
"@frockbot/kernel-contracts": "0.3.
|
|
32
|
-
"@frockbot/plugin-computer": "0.3.
|
|
28
|
+
"@frockbot/computer-core": "0.3.13",
|
|
29
|
+
"@frockbot/computer-host-protocol": "0.3.13",
|
|
30
|
+
"@frockbot/computer-host-runtime": "0.3.13",
|
|
31
|
+
"@frockbot/kernel-contracts": "0.3.13",
|
|
32
|
+
"@frockbot/plugin-computer": "0.3.13",
|
|
33
33
|
"cordis": "4.0.0-rc.8"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@frockbot/plugin-testkit": "0.3.
|
|
37
|
-
"@frockbot/workspace-store": "0.3.
|
|
36
|
+
"@frockbot/plugin-testkit": "0.3.13",
|
|
37
|
+
"@frockbot/workspace-store": "0.3.13",
|
|
38
38
|
"@types/bun": "1.4.0",
|
|
39
39
|
"@types/node": "26.2.0",
|
|
40
40
|
"typescript": "^7.0.2"
|
package/src/computer.ts
CHANGED
|
@@ -1055,7 +1055,9 @@ export class FlySpriteComputer {
|
|
|
1055
1055
|
const script = [
|
|
1056
1056
|
this.agentControlGuard(layout),
|
|
1057
1057
|
`PORT=$(cat ${layout.runtimeDir}/cdp-port)`,
|
|
1058
|
-
|
|
1058
|
+
// The Bot key, because one browser now serves every Bot of the User and
|
|
1059
|
+
// the helper has to know whose window to act in (ADR 0031).
|
|
1060
|
+
`node ${RUNTIME_ROOT}/browser.mjs "$PORT" ${shellQuote(encoded)} ${shellQuote(layout.key)}`,
|
|
1059
1061
|
].join("\n");
|
|
1060
1062
|
const outcome = await this.execute(
|
|
1061
1063
|
host,
|