robopark 2.8.0 → 2.8.2

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": "robopark",
3
- "version": "2.8.0",
3
+ "version": "2.8.2",
4
4
  "description": "RoboPark fleet control CLI — set up, watch, and drive a fleet of talking robots. The operator front-end over the infinicode mesh.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -15,7 +15,7 @@
15
15
  "node": ">=20"
16
16
  },
17
17
  "dependencies": {
18
- "infinicode": "^2.8.0"
18
+ "infinicode": "^2.8.2"
19
19
  },
20
20
  "keywords": [
21
21
  "robopark",
package/scheduler/main.py CHANGED
@@ -2190,7 +2190,7 @@ async def dashboard():
2190
2190
  if (!confirm('Rotate the global default enrollment token? Any Pi waiting to enroll with the previous token will be rejected.')) return;
2191
2191
  try {
2192
2192
  const r = await fetch('/api/settings/enrollment-token/rotate', { method: 'POST' }).then(r => r.json());
2193
- alert('New enrollment token (copy now, shown once):\n\n' + r.enrollment_token);
2193
+ alert('New enrollment token (copy now, shown once):\\n\\n' + r.enrollment_token);
2194
2194
  settings.value.default_enrollment_token_set = true;
2195
2195
  } catch (e) {
2196
2196
  alert('Failed to rotate token: ' + e.message);
@@ -2366,7 +2366,7 @@ async def dashboard():
2366
2366
  class="px-3 py-2 rounded-lg flex items-center gap-2 text-sm"
2367
2367
  :title="livekit.url || 'Not configured'">
2368
2368
  <span class="w-2 h-2 rounded-full" :class="livekit.url && livekit.has_secret ? 'bg-cyan-200' : 'bg-yellow-400'"></span>
2369
- LiveKit: <strong>{{ livekit.url && livekit.has_secret ? (livekit.url.replace(/^wss?:\/\//, '')) : 'NOT SET' }}</strong>
2369
+ LiveKit: <strong>{{ livekit.url && livekit.has_secret ? (livekit.url.replace(/^wss?:[/][/]/, '')) : 'NOT SET' }}</strong>
2370
2370
  </button>
2371
2371
  <button @click="toggleProductionMode"
2372
2372
  :class="settings.production_mode ? 'bg-green-600 hover:bg-green-700' : 'bg-gray-700 hover:bg-gray-600'"