reasonix 1.38.1 → 1.38.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.
Files changed (2) hide show
  1. package/README.md +5 -9
  2. package/package.json +8 -8
package/README.md CHANGED
@@ -134,19 +134,15 @@ make cross # -> dist/ (darwin|linux|windows × amd64|arm64)
134
134
 
135
135
  #### Desktop
136
136
 
137
- The desktop build additionally requires:
138
-
139
- - **Node 24+ and pnpm 10** (`npm install -g pnpm@10`) for the frontend
140
- - **Wails CLI** matching the shared `.wails-version` pin
137
+ The desktop build additionally requires **Node 24+ and pnpm 10**
138
+ (`npm install -g pnpm@10`) for the frontend and the Electron shell:
141
139
 
142
140
  ```sh
143
- make wails-install
144
- cd desktop
145
- wails build
141
+ scripts/desktop-build.sh darwin/arm64 v0.0.0-dev # one platform per run
146
142
  ```
147
143
 
148
- See the [desktop build guide](desktop/README.md#prerequisites) for platform
149
- webview dependencies and Linux build tags.
144
+ No platform webview dependencies are needed — the shell ships its own
145
+ Chromium. See the [desktop build guide](desktop/README.md#prerequisites).
150
146
 
151
147
  ## Quick start
152
148
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reasonix",
3
- "version": "1.38.1",
3
+ "version": "1.38.5",
4
4
  "description": "Cache-first DeepSeek coding agent for the terminal.",
5
5
  "bin": {
6
6
  "reasonix": "bin/reasonix.js"
@@ -29,12 +29,12 @@
29
29
  "tui"
30
30
  ],
31
31
  "optionalDependencies": {
32
- "@reasonix/cli-darwin-arm64": "1.38.1",
33
- "@reasonix/cli-darwin-x64": "1.38.1",
34
- "@reasonix/cli-linux-arm64": "1.38.1",
35
- "@reasonix/cli-linux-x64": "1.38.1",
36
- "@reasonix/cli-win32-arm64": "1.38.1",
37
- "@reasonix/cli-win32-x64": "1.38.1"
32
+ "@reasonix/cli-darwin-arm64": "1.38.5",
33
+ "@reasonix/cli-darwin-x64": "1.38.5",
34
+ "@reasonix/cli-linux-arm64": "1.38.5",
35
+ "@reasonix/cli-linux-x64": "1.38.5",
36
+ "@reasonix/cli-win32-arm64": "1.38.5",
37
+ "@reasonix/cli-win32-x64": "1.38.5"
38
38
  },
39
- "reasonixCandidateSha": "6c2e845b81a9478041a2596cbbb95ac2c531989f"
39
+ "reasonixCandidateSha": "95d02e52bd99471e29da0c3b0cf6306fcfc3d43d"
40
40
  }