webtun 1.5.1 → 1.5.2

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 CHANGED
@@ -69,6 +69,7 @@ git clone https://github.com/unn-Known1/webtun.git && cd webtun && ./setup.sh &&
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
  - **tmux sessions** — persistent sessions survive page reload
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,29 @@ git clone https://github.com/unn-Known1/webtun.git && cd webtun && ./setup.sh &&
174
175
 
175
176
  ## Changelog
176
177
 
178
+ ### v1.5.2
179
+ - UI/UX audit fixes: theme-aware xterm selection color, `--fg3` across all 6 themes
180
+ - Replaced native `confirm()` with a theme-aware, focus-trapped dialog
181
+ - File explorer keyboard navigation (arrows, type-ahead, select-all) + loading state
182
+ - Mobile header overflow (more) menu; compact hostname restored on mobile
183
+ - Context menu keyboard navigation and `aria-expanded` on submenus
184
+ - SVG-ified remaining text glyphs; aria-labels on JS-generated icon buttons
185
+ - Single-line scrollable breadcrumb; tab-bar mask no longer clips new-tab
186
+ - Removed infinite keep-awake bounce; light-theme contrast bump
187
+ - `term.paste()` replaces deprecated `execCommand('insertText')`
188
+ - Pull-to-refresh indicator; tunnel rows use CSS classes
189
+ - JetBrains Mono web font + CSP `font-src`; PWA screenshots
190
+ - Fixed addon-webgl 404 (0.18.1 → 0.18.0); removed MiMo CLI default command
191
+ - Explicit Tokyo Night theme block + `color-scheme` for all 6 themes
192
+ - IBM Plex Sans UI font paired with JetBrains Mono (chrome vs code surfaces)
193
+ - Keyboard Shortcuts dialog in overflow menu; dialog `role`/`aria-modal` semantics
194
+ - Busy-spinner buttons + inline field errors (rename/new file/new folder/tunnel/save)
195
+ - Toast type icons and max 4 visible; editor unsaved-changes dot + Discard dialog
196
+ - Deferred CDN scripts for faster first paint; icon stroke-width normalized to 2
197
+ - Empty-directory quick actions; Reset settings button; skip-link + landmark roles
198
+ - Terminal connecting spinner; install banner clears mobile key bar
199
+ - Search button touch targets on coarse pointers; subtle hover on plain buttons
200
+
177
201
  ### v1.5.1
178
202
  - Fixed command history saving terminal garbage instead of actual commands
179
203
  - Fixed history 401 errors on Cloudflare tunnel URLs
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "webtun",
3
- "version": "1.5.1",
3
+ "version": "1.5.2",
4
4
  "description": "Self-hosted web terminal with Cloudflare Tunnel, file explorer, and PWA support",
5
5
  "author": {
6
6
  "name": "Gaurang Patel",
@@ -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' },