coxpit 5.14.2 → 5.14.4

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/package.json +1 -1
  2. package/src/board.ts +6 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "coxpit",
3
- "version": "5.14.2",
3
+ "version": "5.14.4",
4
4
  "description": "Self-hosted cockpit for running a fleet of AI coding agents across your own machines — parallel worktree runs, live board, compare & merge, web terminal, design capture.",
5
5
  "type": "module",
6
6
  "license": "SEE LICENSE IN LICENSE.md",
package/src/board.ts CHANGED
@@ -6,7 +6,7 @@ export const BOARD_HTML = /* html */ `<!doctype html>
6
6
  <html lang="en">
7
7
  <head>
8
8
  <meta charset="utf-8" />
9
- <meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover" />
9
+ <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, viewport-fit=cover" />
10
10
  <title>coxpit · fleet</title>
11
11
  <link rel="icon" href="/brand/favicon.ico" sizes="any" />
12
12
  <link rel="icon" type="image/png" sizes="32x32" href="/brand/favicon-32.png" />
@@ -57,9 +57,8 @@ export const BOARD_HTML = /* html */ `<!doctype html>
57
57
  .daemon-badge{font-family:var(--mono);font-size:10.5px;color:var(--faint);padding:3px 9px;
58
58
  border:1px solid var(--line);border-radius:999px;background:var(--surface);cursor:default}
59
59
  .daemon-badge b{color:var(--muted);font-weight:500}
60
- .cockpit-link{text-decoration:none;color:var(--muted);font-family:var(--mono);font-size:11.5px;
61
- border:1px solid var(--line);border-radius:7px;padding:5px 10px;display:inline-flex;align-items:center;gap:4px}
62
- .cockpit-link:hover{color:var(--brand);border-color:var(--line-hi)}
60
+ /* Cockpit(터미널) 링크 = 헤더의 다른 고스트 아이콘 버튼(bell·remote)과 동일한 디자인. 아이콘 정렬만 추가 */
61
+ .cockpit-link{text-decoration:none;display:inline-flex;align-items:center;justify-content:center}
63
62
  .ws{display:flex;align-items:center;gap:7px;font-family:var(--mono);font-size:11px;color:var(--muted);
64
63
  padding:4px 10px;border:1px solid var(--line);border-radius:999px;background:var(--surface)}
65
64
  .dot{width:7px;height:7px;border-radius:50%;background:var(--s-failed);transition:background .3s}
@@ -846,8 +845,9 @@ export const BOARD_HTML = /* html */ `<!doctype html>
846
845
  #newBtn,.newnote{display:none}
847
846
  header{padding:0 12px;gap:9px}
848
847
  .brand .sub,.daemon-badge,.machines{display:none}
849
- /* cockpit(터미널) 링크는 모바일에서도 보이게 터미널 워크스페이스로 가는 유일한 입구 */
848
+ /* cockpit(터미널) 링크는 모바일에서도 보이게(다른 고스트 아이콘 버튼과 동일 디자인, 강조/채움 없음) */
850
849
  .cockpit-link{display:inline-flex;margin-left:auto}
850
+ .brand .wm{font-size:15px}
851
851
  main{padding:14px}
852
852
  .grid{grid-template-columns:1fr}
853
853
  /* 모달 = 풀블리드 */
@@ -884,7 +884,7 @@ ${ICON_SPRITE}
884
884
  <div class="ws"><span class="dot" id="wsdot"></span><span id="wstext">connecting</span></div>
885
885
  <button class="btn-ghost sm" id="bell" title="notify when a run settles"><svg class="ic"><use href="#i-bell-off"/></svg></button>
886
886
  <button class="btn-ghost sm" id="remoteBtn" title="reach this daemon from elsewhere (Tailscale · recipes)"><svg class="ic"><use href="#i-external-link"/></svg></button>
887
- <a class="cockpit-link" href="/cockpit" title="터미널 우선 셸 데스크톱 기본 ">◨ Cockpit</a>
887
+ <a class="btn-ghost sm cockpit-link" href="/cockpit" title="Cockpit터미널 워크스페이스"><svg class="ic"><use href="#i-terminal"/></svg></a>
888
888
  <div class="machines" id="machines"></div>
889
889
  </header>
890
890
  <div class="scrim" id="scrim"></div>