iclavue 10.9.12 → 10.10.1
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 +5 -5
- package/dist/clavue.js +1 -1
- package/dist/cli.js +68 -71
- package/dist/mao-command.js +1 -1
- package/dist/native/clavue-pager +0 -0
- package/dist/native/clavue-pager-darwin-arm64 +0 -0
- package/dist/native/clavue-pager-darwin-x64 +0 -0
- package/dist/native/clavue-pager-linux-x64 +0 -0
- package/dist/native/clavue-pager-win32-x64.exe +0 -0
- package/dist/native/clavue-pager.exe +0 -0
- package/dist/native/manifest.json +40 -4
- package/dist/openai-responses-adapter.js +4 -4
- package/dist/provider-setup.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Clavue v10.
|
|
1
|
+
# Clavue v10.10.1
|
|
2
2
|
|
|
3
3
|

|
|
4
4
|
|
|
@@ -69,8 +69,8 @@ npx -y iclavue
|
|
|
69
69
|
Run a specific version with `npx`:
|
|
70
70
|
|
|
71
71
|
```bash
|
|
72
|
-
npx -y iclavue@10.
|
|
73
|
-
npx -y iclavue@10.
|
|
72
|
+
npx -y iclavue@10.10.1 --version
|
|
73
|
+
npx -y iclavue@10.10.1
|
|
74
74
|
```
|
|
75
75
|
|
|
76
76
|
Install globally from npm when you want the `clavue` command to stay available:
|
|
@@ -90,7 +90,7 @@ curl -fsSL https://unpkg.com/iclavue/install.sh | bash
|
|
|
90
90
|
Install a specific version globally:
|
|
91
91
|
|
|
92
92
|
```bash
|
|
93
|
-
curl -fsSL https://unpkg.com/iclavue@10.
|
|
93
|
+
curl -fsSL https://unpkg.com/iclavue@10.10.1/install.sh | bash -s -- 10.10.1
|
|
94
94
|
```
|
|
95
95
|
|
|
96
96
|
### Troubleshooting: `ENOTEMPTY` / `bash: clavue: No such file or directory`
|
|
@@ -239,7 +239,7 @@ Version check:
|
|
|
239
239
|
```bash
|
|
240
240
|
clavue --version
|
|
241
241
|
npx -y iclavue --version
|
|
242
|
-
npx -y iclavue@10.
|
|
242
|
+
npx -y iclavue@10.10.1 --version
|
|
243
243
|
# available after a global install and launcher setup
|
|
244
244
|
clavue --version
|
|
245
245
|
```
|