iclavue 10.12.34 → 10.12.35
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 +7 -7
- package/dist/clavue.js +1 -1
- package/dist/cli.js +4264 -4258
- package/dist/mao-command.js +1 -1
- package/dist/native/clavue-pager-darwin-arm64 +0 -0
- package/dist/native/manifest.json +5 -5
- package/dist/openai-responses-adapter.js +2 -2
- package/dist/provider-setup.js +1 -1
- package/install.sh +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Clavue v10.12.
|
|
1
|
+
# Clavue v10.12.35
|
|
2
2
|
|
|
3
3
|

|
|
4
4
|
|
|
@@ -18,13 +18,13 @@ curl -fsSL https://www.clavue.com/cli/install.sh | bash
|
|
|
18
18
|
Or pin a version:
|
|
19
19
|
|
|
20
20
|
```bash
|
|
21
|
-
curl -fsSL https://www.clavue.com/cli/install.sh | bash -s -- 10.12.
|
|
21
|
+
curl -fsSL https://www.clavue.com/cli/install.sh | bash -s -- 10.12.35
|
|
22
22
|
```
|
|
23
23
|
|
|
24
24
|
Classic npm:
|
|
25
25
|
|
|
26
26
|
```bash
|
|
27
|
-
npm install -g iclavue@10.12.
|
|
27
|
+
npm install -g iclavue@10.12.35
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
|
|
@@ -89,8 +89,8 @@ npx -y iclavue
|
|
|
89
89
|
Run a specific version with `npx`:
|
|
90
90
|
|
|
91
91
|
```bash
|
|
92
|
-
npx -y iclavue@10.12.
|
|
93
|
-
npx -y iclavue@10.12.
|
|
92
|
+
npx -y iclavue@10.12.35 --version
|
|
93
|
+
npx -y iclavue@10.12.35
|
|
94
94
|
```
|
|
95
95
|
|
|
96
96
|
Install globally from npm when you want the `clavue` command to stay available:
|
|
@@ -110,7 +110,7 @@ curl -fsSL https://unpkg.com/iclavue/install.sh | bash
|
|
|
110
110
|
Install a specific version globally:
|
|
111
111
|
|
|
112
112
|
```bash
|
|
113
|
-
curl -fsSL https://unpkg.com/iclavue@10.12.
|
|
113
|
+
curl -fsSL https://unpkg.com/iclavue@10.12.35/install.sh | bash -s -- 10.12.35
|
|
114
114
|
```
|
|
115
115
|
|
|
116
116
|
### Troubleshooting: `ENOTEMPTY` / `bash: clavue: No such file or directory`
|
|
@@ -259,7 +259,7 @@ Version check:
|
|
|
259
259
|
```bash
|
|
260
260
|
clavue --version
|
|
261
261
|
npx -y iclavue --version
|
|
262
|
-
npx -y iclavue@10.12.
|
|
262
|
+
npx -y iclavue@10.12.35 --version
|
|
263
263
|
# available after a global install and launcher setup
|
|
264
264
|
clavue --version
|
|
265
265
|
```
|