@jean2/client 0.4.2 → 0.4.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/README.md CHANGED
@@ -4,7 +4,7 @@ Cross-platform frontend for the Jean2 AI Agent. Connects to a Jean2 server over
4
4
 
5
5
  Three deployment targets:
6
6
 
7
- - **Tauri Desktop** — Native macOS application with multi-window support
7
+ - **Tauri Desktop** — Native macOS and Windows application with multi-window support
8
8
  - **Tauri iOS** — Native iPhone application
9
9
  - **Web CLI** — Run locally via `npx @jean2/client`
10
10
 
@@ -18,14 +18,16 @@ Three deployment targets:
18
18
  - File tree browser and file path autocomplete
19
19
  - MCP (Model Context Protocol) server management
20
20
  - Queued messages when a session is busy streaming
21
+ - Built-in remote terminal with multi-tab support and session reconnection
21
22
  - Offline detection with exponential backoff auto-reconnect
22
23
  - Dark and light themes (persists per platform)
23
24
  - Responsive layout — works on desktop and mobile viewports
25
+ - Two view modes — Default (session list) and Overview (multi-workspace dashboard with Quick Switcher)
24
26
 
25
27
  ## Prerequisites
26
28
 
27
29
  - [Bun](https://bun.sh/)
28
- - For Tauri desktop builds: [Rust](https://www.rust-lang.org/tools/install) and Xcode Command Line Tools (`xcode-select --install`)
30
+ - For Tauri desktop builds: [Rust](https://www.rust-lang.org/tools/install) and Xcode Command Line Tools (`xcode-select --install`) (macOS) or Visual Studio Build Tools (Windows)
29
31
  - For iOS builds: Xcode, Apple Developer account — see [README-ios.md](README-ios.md)
30
32
 
31
33
  ## Development
@@ -80,6 +82,13 @@ Apps downloaded from GitHub releases are not code-signed. macOS will block openi
80
82
  xattr -cr /Applications/Jean2.app
81
83
  ```
82
84
 
85
+ ### Tauri Windows
86
+
87
+ ```bash
88
+ # Windows (x64)
89
+ bun run tauri:build:windows
90
+ ```
91
+
83
92
  ### Tauri iOS
84
93
 
85
94
  See [README-ios.md](README-ios.md) for full build and deployment instructions.
@@ -146,7 +155,7 @@ packages/client/
146
155
  components.json shadcn/ui configuration (radix-nova style)
147
156
  vite.config.ts Vite — React, Tailwind, path aliases, dev proxy
148
157
  package.npm.json Minimal manifest for npm publish (CLI mode)
149
- VERSION Client version (0.2.1)
158
+ VERSION Client version
150
159
  ```
151
160
 
152
161
  ## Technology Stack
@@ -158,7 +167,7 @@ packages/client/
158
167
  | Styling | Tailwind CSS v4, shadcn/ui, Radix UI |
159
168
  | Fonts | Geist Variable |
160
169
  | Icons | Lucide React |
161
- | Desktop | Tauri 2 (Rust) |
170
+ | Desktop | Tauri 2 (Rust) — macOS, Windows |
162
171
  | Mobile | Tauri 2 iOS |
163
172
  | Markdown | react-markdown + remark-gfm |
164
173
  | Code blocks | prism-react-renderer |