loopsy 1.0.6 → 1.0.8

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.
@@ -95,12 +95,12 @@ function updateClock() {
95
95
  async function init() {
96
96
  // Load view modules
97
97
  await Promise.all([
98
- import('/views/overview.js'),
99
- import('/views/terminal.js'),
100
- import('/views/context.js'),
101
- import('/views/messages.js'),
102
- import('/views/peers.js'),
103
- import('/views/ai-tasks.js'),
98
+ import('./views/overview.js'),
99
+ import('./views/terminal.js'),
100
+ import('./views/context.js'),
101
+ import('./views/messages.js'),
102
+ import('./views/peers.js'),
103
+ import('./views/ai-tasks.js'),
104
104
  ]);
105
105
 
106
106
  // Nav click handlers
@@ -1,4 +1,4 @@
1
- import { registerView, dashboardApi, escapeHtml, formatTime } from '/app.js';
1
+ import { registerView, dashboardApi, escapeHtml, formatTime } from '../app.js';
2
2
 
3
3
  let refreshTimer = null;
4
4
  let selectedTask = null; // { taskId, port, address }
@@ -1,4 +1,4 @@
1
- import { registerView, api, dashboardApi, escapeHtml, formatTime } from '/app.js';
1
+ import { registerView, api, dashboardApi, escapeHtml, formatTime } from '../app.js';
2
2
 
3
3
  let refreshTimer = null;
4
4
 
@@ -1,4 +1,4 @@
1
- import { registerView, api, dashboardApi, escapeHtml, formatTime } from '/app.js';
1
+ import { registerView, api, dashboardApi, escapeHtml, formatTime } from '../app.js';
2
2
 
3
3
  let refreshTimer = null;
4
4
  let activeTab = 'inbox';
@@ -1,4 +1,4 @@
1
- import { registerView, dashboardApi, formatUptime, escapeHtml } from '/app.js';
1
+ import { registerView, dashboardApi, formatUptime, escapeHtml } from '../app.js';
2
2
 
3
3
  function platformSvg(platform) {
4
4
  const s = (d) => `<svg width="18" height="18" viewBox="0 0 18 18" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" style="color:var(--text-secondary)">${d}</svg>`;
@@ -1,4 +1,4 @@
1
- import { registerView, api, dashboardApi, escapeHtml, formatTime } from '/app.js';
1
+ import { registerView, api, dashboardApi, escapeHtml, formatTime } from '../app.js';
2
2
 
3
3
  function platformSvg(platform) {
4
4
  const s = (d) => `<svg width="18" height="18" viewBox="0 0 18 18" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" style="color:var(--text-secondary)">${d}</svg>`;
@@ -1,4 +1,4 @@
1
- import { registerView, dashboardApi, escapeHtml } from '/app.js';
1
+ import { registerView, dashboardApi, escapeHtml } from '../app.js';
2
2
 
3
3
  let eventSource = null;
4
4
  let refreshTimer = null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "loopsy",
3
- "version": "1.0.6",
3
+ "version": "1.0.8",
4
4
  "description": "Cross-machine communication for AI coding agents — run commands, transfer files, and share context between machines",
5
5
  "type": "module",
6
6
  "bin": {
@@ -38,7 +38,7 @@ for (const stub of stubs) {
38
38
  join(stubDir, 'package.json'),
39
39
  JSON.stringify({
40
40
  name: `@loopsy/${stub.name}`,
41
- version: '1.0.6',
41
+ version: '1.0.8',
42
42
  type: 'module',
43
43
  main: 'index.js',
44
44
  exports: { '.': './index.js' },