webtun 1.5.1 → 1.5.3
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/README.md +29 -1
- package/package.json +1 -1
- package/public/commands.js +0 -1
- package/public/index.html +770 -183
- package/server.js +87 -22
package/README.md
CHANGED
|
@@ -68,7 +68,8 @@ git clone https://github.com/unn-Known1/webtun.git && cd webtun && ./setup.sh &&
|
|
|
68
68
|
- **Multi-tab** — drag to reorder, side-by-side sessions
|
|
69
69
|
- **Bracketed paste** — Ctrl+V works in TUI apps (vim, nano, htop)
|
|
70
70
|
- **Command history** — keystroke-based capture, strips ANSI/control sequences
|
|
71
|
-
- **
|
|
71
|
+
- **Session persistence** — tmux or in-memory PTY; tabs survive page reload (all platforms)
|
|
72
|
+
- **Keyboard Shortcuts** — reference dialog in the overflow menu (Ctrl+P/T/W/B/F, etc.)
|
|
72
73
|
|
|
73
74
|
### File Explorer
|
|
74
75
|
- Browse, upload, download, rename, delete files
|
|
@@ -174,6 +175,33 @@ git clone https://github.com/unn-Known1/webtun.git && cd webtun && ./setup.sh &&
|
|
|
174
175
|
|
|
175
176
|
## Changelog
|
|
176
177
|
|
|
178
|
+
### v1.5.3
|
|
179
|
+
- Terminal session persistence without tmux (in-memory PTY on Windows + Linux)
|
|
180
|
+
- Session IDs always generated; tabs now survive page reload on all platforms
|
|
181
|
+
|
|
182
|
+
### v1.5.2
|
|
183
|
+
- UI/UX audit fixes: theme-aware xterm selection color, `--fg3` across all 6 themes
|
|
184
|
+
- Replaced native `confirm()` with a theme-aware, focus-trapped dialog
|
|
185
|
+
- File explorer keyboard navigation (arrows, type-ahead, select-all) + loading state
|
|
186
|
+
- Mobile header overflow (more) menu; compact hostname restored on mobile
|
|
187
|
+
- Context menu keyboard navigation and `aria-expanded` on submenus
|
|
188
|
+
- SVG-ified remaining text glyphs; aria-labels on JS-generated icon buttons
|
|
189
|
+
- Single-line scrollable breadcrumb; tab-bar mask no longer clips new-tab
|
|
190
|
+
- Removed infinite keep-awake bounce; light-theme contrast bump
|
|
191
|
+
- `term.paste()` replaces deprecated `execCommand('insertText')`
|
|
192
|
+
- Pull-to-refresh indicator; tunnel rows use CSS classes
|
|
193
|
+
- JetBrains Mono web font + CSP `font-src`; PWA screenshots
|
|
194
|
+
- Fixed addon-webgl 404 (0.18.1 → 0.18.0); removed MiMo CLI default command
|
|
195
|
+
- Explicit Tokyo Night theme block + `color-scheme` for all 6 themes
|
|
196
|
+
- IBM Plex Sans UI font paired with JetBrains Mono (chrome vs code surfaces)
|
|
197
|
+
- Keyboard Shortcuts dialog in overflow menu; dialog `role`/`aria-modal` semantics
|
|
198
|
+
- Busy-spinner buttons + inline field errors (rename/new file/new folder/tunnel/save)
|
|
199
|
+
- Toast type icons and max 4 visible; editor unsaved-changes dot + Discard dialog
|
|
200
|
+
- Deferred CDN scripts for faster first paint; icon stroke-width normalized to 2
|
|
201
|
+
- Empty-directory quick actions; Reset settings button; skip-link + landmark roles
|
|
202
|
+
- Terminal connecting spinner; install banner clears mobile key bar
|
|
203
|
+
- Search button touch targets on coarse pointers; subtle hover on plain buttons
|
|
204
|
+
|
|
177
205
|
### v1.5.1
|
|
178
206
|
- Fixed command history saving terminal garbage instead of actual commands
|
|
179
207
|
- Fixed history 401 errors on Cloudflare tunnel URLs
|
package/package.json
CHANGED
package/public/commands.js
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
window.DEFAULT_CMDS = [
|
|
2
2
|
{ name: 'Install OpenCode AI', cmd: 'npm install -g opencode-ai', cat: 'AI Tools' },
|
|
3
|
-
{ name: 'Install MiMo CLI', cmd: 'npm install -g @mimo-ai/cli', cat: 'AI Tools' },
|
|
4
3
|
{ name: 'Install 9Router', cmd: 'npm install -g 9router', cat: 'AI Tools' },
|
|
5
4
|
{ name: 'GitHub TUI', cmd: 'npx github-tui', cat: 'Tools' },
|
|
6
5
|
{ name: 'Colab Setup', cmd: 'curl -fsSL https://raw.githubusercontent.com/unn-Known1/unn-Known1/main/colab_setup.sh | bash', cat: 'Setup' },
|