tabminal 2.0.7 → 2.0.9

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/.dockerignore ADDED
@@ -0,0 +1,7 @@
1
+ .git
2
+ .github
3
+ node_modules
4
+ coverage
5
+ dist
6
+ .DS_Store
7
+ apps
package/AGENTS.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Tabminal Agent Notes
2
2
 
3
- Last updated: 2026-02-10
3
+ Last updated: 2026-03-23
4
4
 
5
5
  This file is for future AI/code agents working in this repo.
6
6
  Goal: keep context accurate, avoid reintroducing old bugs, and preserve current UX
@@ -12,6 +12,9 @@ contracts after the multi-host refactor.
12
12
  - Backend entry: `src/server.mjs`.
13
13
  - Frontend entry: `public/app.js` (plus modules in `public/modules/`).
14
14
  - PWA shell: `public/index.html` + `public/sw.js`.
15
+ - Native app workspace: `apps/`
16
+ - Apple client: `apps/Apple`
17
+ - Ghostty vendor tooling: `apps/ghostty-vendor`
15
18
  - Multi-host registry persistence: `~/.tabminal/cluster.json` via backend API.
16
19
 
17
20
  Core idea now:
@@ -261,6 +264,11 @@ Frontend:
261
264
  - `public/index.html`: shell DOM, runtime versioned loader, SW register.
262
265
  - `public/sw.js`: runtime-versioned caching strategy.
263
266
 
267
+ Native apps:
268
+ - `apps/README.md`: native app architecture and rollout plan.
269
+ - `apps/Apple`: Apple-platform app, Swift package, CLI launch scripts.
270
+ - `apps/ghostty-vendor`: Ghostty xcframework build and verification helpers.
271
+
264
272
  ## 6) Logs and Debug Guidance
265
273
 
266
274
  Expected, low-noise warnings:
package/README.md CHANGED
@@ -52,6 +52,11 @@ Built from the ground up for **iPadOS**, **iOS** and **Android**.
52
52
  * **Responsive Layout**: Auto-adapts to landscape/portrait modes, respecting Safe Areas and Notches.
53
53
  * **PWA Ready**: Install to Home Screen for a full-screen, native app feel.
54
54
 
55
+ Native app work now lives under:
56
+
57
+ - `apps/Apple`: Apple-platform native client
58
+ - `apps/ghostty-vendor`: Ghostty xcframework vendor/build tooling
59
+
55
60
  ### 💻 Powerful Desktop Features
56
61
  * **Persistent Sessions**: Your terminal state lives on the server. Refresh or switch devices without losing your work.
57
62
  * **Built-in Editor**: Integrated **Monaco Editor** (VS Code core) allows you to edit files directly on the server.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tabminal",
3
- "version": "2.0.7",
3
+ "version": "2.0.9",
4
4
  "description": "A modern, persistent web terminal with multi-tab support and real-time system monitoring.",
5
5
  "type": "module",
6
6
  "bin": {