claude-remote-cli 1.4.2 → 1.5.0

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": "claude-remote-cli",
3
- "version": "1.4.2",
3
+ "version": "1.5.0",
4
4
  "description": "Remote web interface for Claude Code CLI sessions",
5
5
  "type": "module",
6
6
  "main": "dist/server/index.js",
package/public/app.js CHANGED
@@ -556,11 +556,12 @@
556
556
 
557
557
  ctxResumeYolo.addEventListener('click', function (e) {
558
558
  e.stopPropagation();
559
+ var target = contextMenuTarget;
559
560
  hideContextMenu();
560
- if (!contextMenuTarget) return;
561
+ if (!target) return;
561
562
  startSession(
562
- contextMenuTarget.repoPath,
563
- contextMenuTarget.worktreePath,
563
+ target.repoPath,
564
+ target.worktreePath,
564
565
  ['--dangerously-skip-permissions']
565
566
  );
566
567
  });
package/public/style.css CHANGED
@@ -417,6 +417,7 @@ html, body {
417
417
 
418
418
  /* ===== Touch Toolbar ===== */
419
419
  #toolbar {
420
+ display: none;
420
421
  flex-shrink: 0;
421
422
  background: var(--surface);
422
423
  border-top: 1px solid var(--border);
@@ -993,6 +994,10 @@ dialog#delete-worktree-dialog h2 {
993
994
  .tb-btn.tb-arrow {
994
995
  font-size: 1.2rem;
995
996
  }
997
+
998
+ #toolbar {
999
+ display: block;
1000
+ }
996
1001
  }
997
1002
 
998
1003
  /* ===== Scrollbar ===== */