tandem-editor 0.3.2 → 0.4.0
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/CHANGELOG.md +31 -1
- package/dist/channel/index.js +17912 -13
- package/dist/channel/index.js.map +1 -1
- package/dist/cli/index.js +3 -3
- package/dist/cli/index.js.map +1 -1
- package/dist/client/assets/{index-DRkek0mA.js → index-D6wQrQ7U.js} +42 -42
- package/dist/client/index.html +1 -1
- package/dist/server/index.js +112578 -4500
- package/dist/server/index.js.map +1 -1
- package/package.json +9 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,7 +5,37 @@ All notable changes to Tandem will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
-
## [
|
|
8
|
+
## [0.4.0] - 2026-04-12
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- Tauri v2 desktop app wrapping the existing web editor (macOS, Linux, Windows)
|
|
13
|
+
- System tray with menu: Open Editor, Setup Claude, Check for Updates, About, Quit
|
|
14
|
+
- Single-instance detection — second launch focuses the existing window instead of opening a duplicate
|
|
15
|
+
- Node.js sidecar lifecycle: auto-spawn on startup, health polling, crash restart with exponential backoff
|
|
16
|
+
- Auto-updater checks on launch and every 8h; manual check available via tray menu "Check for Updates"
|
|
17
|
+
- Cross-platform CI release workflow (macOS arm64/x64, Linux x64, Windows x64) with GitHub Releases
|
|
18
|
+
- Window state persistence — position and size remembered across sessions
|
|
19
|
+
- Sample file copied to writable data directory on first run (supports read-only app bundles)
|
|
20
|
+
- Self-signed code signing for Windows builds in CI
|
|
21
|
+
- MCP setup auto-configuration on launch — writes Claude Code/Desktop config without manual `tandem setup`
|
|
22
|
+
|
|
23
|
+
### Fixed
|
|
24
|
+
|
|
25
|
+
- Accept `tauri.localhost` origin in WebSocket and CORS checks so the production WebView can connect
|
|
26
|
+
- Strip Windows `\\?\` extended-length path prefix returned by Tauri path APIs before passing to Node
|
|
27
|
+
- Sidecar binary name resolution corrected for Tauri's platform-specific naming convention
|
|
28
|
+
- Self-contained JS bundles via tsup `noExternal` so Tauri doesn't require `node_modules` at runtime
|
|
29
|
+
- Poll for port release before restarting after update install, preventing a startup race condition
|
|
30
|
+
- Surface last HTTP error in health-poll timeout diagnostics for easier debugging
|
|
31
|
+
|
|
32
|
+
### Changed
|
|
33
|
+
|
|
34
|
+
- Updater-unavailable log downgraded from error to debug (reduces noise in dev builds without updater keys)
|
|
35
|
+
- Unhandled sidecar events are now logged instead of silently dropped
|
|
36
|
+
- Warn when `sample/` directory is missing in release builds
|
|
37
|
+
- CI: fail build when updater signing key secret is absent
|
|
38
|
+
- CI: summary job catches partial platform build failures rather than reporting false success
|
|
9
39
|
|
|
10
40
|
## [0.3.2] - 2026-04-12
|
|
11
41
|
|