@frockbot/plugin-user-machine 0.3.4 → 0.3.6

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@frockbot/plugin-user-machine",
3
- "version": "0.3.4",
3
+ "version": "0.3.6",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "exports": {
@@ -33,18 +33,18 @@
33
33
  "typecheck": "vue-tsc --noEmit -p tsconfig.json"
34
34
  },
35
35
  "dependencies": {
36
- "@frockbot/client-core": "0.3.4",
37
- "@frockbot/client-ui": "0.3.4",
38
- "@frockbot/desktop-core": "0.3.4",
39
- "@frockbot/kernel-agent-loop": "0.3.4",
40
- "@frockbot/kernel-contracts": "0.3.4",
41
- "@frockbot/machine-protocol": "0.3.4",
42
- "@frockbot/plugin-shell": "0.3.4",
36
+ "@frockbot/client-core": "0.3.6",
37
+ "@frockbot/client-ui": "0.3.6",
38
+ "@frockbot/desktop-core": "0.3.6",
39
+ "@frockbot/kernel-agent-loop": "0.3.6",
40
+ "@frockbot/kernel-contracts": "0.3.6",
41
+ "@frockbot/machine-protocol": "0.3.6",
42
+ "@frockbot/plugin-shell": "0.3.6",
43
43
  "cordis": "4.0.0-rc.8",
44
44
  "vue": "3.5.41"
45
45
  },
46
46
  "devDependencies": {
47
- "@frockbot/plugin-tools": "0.3.4",
47
+ "@frockbot/plugin-tools": "0.3.6",
48
48
  "@types/bun": "1.4.0",
49
49
  "@vitejs/plugin-vue": "6.0.8",
50
50
  "typescript": "5.9.3",
@@ -53,9 +53,9 @@ onMounted(() => machines.value.load());
53
53
  <header>
54
54
  <h2>Registered machines</h2>
55
55
  <p>
56
- A registered machine runs the FrockBot desktop app and dials out to this
57
- deployment. A Bot can read files and run commands on one only after you
58
- approve each action, and only while the app is running.
56
+ A registered machine is a computer running the FrockBot desktop app. A
57
+ Bot can read files and run commands on it only while the app is open,
58
+ and only after you approve each action.
59
59
  </p>
60
60
  </header>
61
61
 
@@ -65,8 +65,8 @@ onMounted(() => machines.value.load());
65
65
  <span class="machines-pairing__text">
66
66
  <strong>This computer</strong>
67
67
  <small v-if="agent?.enrolled">
68
- Paired as {{ agent.label }} · agent
69
- {{ agent.running ? "running" : "stopped" }}
68
+ Paired as {{ agent.label }} ·
69
+ {{ agent.running ? "connected" : "not running" }}
70
70
  </small>
71
71
  <small v-else>Not paired yet</small>
72
72
  </span>
@@ -90,7 +90,7 @@ export const userMachineClientPlugin: ClientPlugin = (ctx) => {
90
90
  await work();
91
91
  state.value.error = undefined;
92
92
  } catch (error) {
93
- state.value.error = message(error, "The machine registry refused");
93
+ state.value.error = message(error, "Couldn't register that machine.");
94
94
  } finally {
95
95
  state.value.busy = false;
96
96
  }