handmux 0.17.4 → 0.17.5
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 +3 -3
- package/public/assets/index-BojPm0vc.js +330 -0
- package/public/assets/index-CKy8gVDA.css +32 -0
- package/public/index.html +2 -2
- package/src/agents/claude.js +15 -43
- package/src/agents/codex.js +15 -5
- package/src/agents/processIdentity.js +72 -0
- package/src/claudeEvents.js +7 -5
- package/src/previewServer.js +5 -14
- package/src/push.js +11 -3
- package/src/routes/push.js +10 -1
- package/src/routes/transcript.js +7 -8
- package/src/transcriptParse.js +14 -3
- package/src/transcriptReader.js +101 -0
- package/public/assets/index-BT03K2MQ.css +0 -32
- package/public/assets/index-BfJTQWOA.js +0 -330
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "handmux",
|
|
3
|
-
"version": "0.17.
|
|
3
|
+
"version": "0.17.5",
|
|
4
4
|
"description": "A mobile vibe-coding cockpit — built on tmux: drive your live session, Claude Code / Codex — anything a terminal can run — from your phone.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "AGPL-3.0-only",
|
|
@@ -57,13 +57,13 @@
|
|
|
57
57
|
"vitest": "^2.0.0"
|
|
58
58
|
},
|
|
59
59
|
"whatsNew": [
|
|
60
|
+
{"version":"0.17.5","date":"2026-07-20","zh":"通知开启修复 · 长会话与设置可靠性提升","en":"Notification setup fixed · stronger chat and settings reliability"},
|
|
60
61
|
{"version":"0.17.4","date":"2026-07-19","zh":"HTTPS 本机预览修复 · 通知链接安全加固","en":"HTTPS localhost previews fixed · safer notification links"},
|
|
61
62
|
{"version":"0.17.3","date":"2026-07-19","zh":"三修官方一键安装的 Claude 识别,真机已验证","en":"Third fix for native-install Claude detection, device-verified"},
|
|
62
63
|
{"version":"0.17.0","date":"2026-07-18","zh":"对话视图(实验性)· 通知记录 · 本机地址一键预览","en":"Chat view (experimental) · notification inbox · one-tap localhost preview"},
|
|
63
64
|
{"version":"0.16.0","date":"2026-07-15","zh":"分屏布局地图 · 手机也能建/删窗格","en":"Split-layout map · create & close panes from the phone"},
|
|
64
65
|
{"version":"0.15.0","date":"2026-07-14","zh":"键盘弹起终端自适应 · 全屏程序可上下滚动","en":"Keyboard-aware terminal · scroll inside full-screen apps"},
|
|
65
66
|
{"version":"0.14.0","date":"2026-07-13","zh":"终端文字选中拷贝 · 脚本复用推送通道","en":"Terminal select & copy · scripts reuse the push channel"},
|
|
66
|
-
{"version":"0.13.0","date":"2026-07-12","zh":"终端文件路径高亮可点","en":"Tappable, highlighted file paths"}
|
|
67
|
-
{"version":"0.12.3","date":"2026-07-11","zh":"接管会话可自定义名称 + Homebrew 一键安装","en":"Name a takeover session · Homebrew install"}
|
|
67
|
+
{"version":"0.13.0","date":"2026-07-12","zh":"终端文件路径高亮可点","en":"Tappable, highlighted file paths"}
|
|
68
68
|
]
|
|
69
69
|
}
|