shell-mirror 1.5.75 → 1.5.76

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": "shell-mirror",
3
- "version": "1.5.75",
3
+ "version": "1.5.76",
4
4
  "description": "Access your Mac shell from any device securely. Perfect for mobile coding with Claude Code CLI, Gemini CLI, and any shell tool.",
5
5
  "main": "server.js",
6
6
  "bin": {
@@ -1,6 +1,8 @@
1
1
  <!DOCTYPE html>
2
2
  <html>
3
3
  <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
4
6
  <title>Terminal Mirror</title>
5
7
 
6
8
  <!-- Google Analytics 4 -->
@@ -262,6 +262,7 @@ function startConnection() {
262
262
  // Delay fit to ensure proper dimensions after CSS transitions
263
263
  setTimeout(() => {
264
264
  fitAddon.fit();
265
+ term.focus(); // Ensure cursor is visible even before connection
265
266
  }, 100);
266
267
  initialize();
267
268
  }