claude-opencode-viewer 2.1.0 → 2.1.1

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.
Files changed (2) hide show
  1. package/index.html +2 -2
  2. package/package.json +1 -1
package/index.html CHANGED
@@ -425,13 +425,13 @@
425
425
  ws = new WebSocket(proto + '//' + location.host + '/ws');
426
426
 
427
427
  ws.onopen = function() {
428
- statusText.textContent = '● 已连接';
428
+ statusText.textContent = '●';
429
429
  statusEl.className = 'connected';
430
430
  resize();
431
431
  };
432
432
 
433
433
  ws.onclose = function() {
434
- statusText.textContent = '● 未连接';
434
+ statusText.textContent = '●';
435
435
  statusEl.className = 'disconnected';
436
436
  modeIndicator.textContent = '-';
437
437
  ws = null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-opencode-viewer",
3
- "version": "2.1.0",
3
+ "version": "2.1.1",
4
4
  "description": "A unified terminal viewer for Claude Code and OpenCode with seamless switching",
5
5
  "type": "module",
6
6
  "main": "server.js",