iclavue 12.0.10 → 12.0.12
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 +42 -42
- package/dist/mao-command.js +1 -1
- package/dist/native/clavue-pager-darwin-arm64 +0 -0
- package/dist/native/manifest.json +6 -6
- 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 v12.0.
|
|
1
|
+
# Clavue v12.0.12
|
|
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 -- 12.0.
|
|
21
|
+
curl -fsSL https://www.clavue.com/cli/install.sh | bash -s -- 12.0.12
|
|
22
22
|
```
|
|
23
23
|
|
|
24
24
|
Classic npm:
|
|
25
25
|
|
|
26
26
|
```bash
|
|
27
|
-
npm install -g iclavue@12.0.
|
|
27
|
+
npm install -g iclavue@12.0.12
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
|
|
@@ -91,8 +91,8 @@ npx -y iclavue
|
|
|
91
91
|
Run a specific version with `npx`:
|
|
92
92
|
|
|
93
93
|
```bash
|
|
94
|
-
npx -y iclavue@12.0.
|
|
95
|
-
npx -y iclavue@12.0.
|
|
94
|
+
npx -y iclavue@12.0.12 --version
|
|
95
|
+
npx -y iclavue@12.0.12
|
|
96
96
|
```
|
|
97
97
|
|
|
98
98
|
Install globally from npm when you want the `clavue` command to stay available:
|
|
@@ -112,7 +112,7 @@ curl -fsSL https://unpkg.com/iclavue/install.sh | bash
|
|
|
112
112
|
Install a specific version globally:
|
|
113
113
|
|
|
114
114
|
```bash
|
|
115
|
-
curl -fsSL https://unpkg.com/iclavue@12.0.
|
|
115
|
+
curl -fsSL https://unpkg.com/iclavue@12.0.12/install.sh | bash -s -- 12.0.12
|
|
116
116
|
```
|
|
117
117
|
|
|
118
118
|
### Troubleshooting: `ENOTEMPTY` / `bash: clavue: No such file or directory`
|
|
@@ -261,7 +261,7 @@ Version check:
|
|
|
261
261
|
```bash
|
|
262
262
|
clavue --version
|
|
263
263
|
npx -y iclavue --version
|
|
264
|
-
npx -y iclavue@12.0.
|
|
264
|
+
npx -y iclavue@12.0.12 --version
|
|
265
265
|
# available after a global install and launcher setup
|
|
266
266
|
clavue --version
|
|
267
267
|
```
|
package/dist/clavue.js
CHANGED
|
@@ -16,7 +16,7 @@ const __isVersion =
|
|
|
16
16
|
__clavueArgs[0] === '-v' ||
|
|
17
17
|
__clavueArgs[0] === '-V');
|
|
18
18
|
if (__isVersion) {
|
|
19
|
-
console.log("12.0.
|
|
19
|
+
console.log("12.0.12 (Clavue)");
|
|
20
20
|
const __detail =
|
|
21
21
|
__clavueArgs.includes('--detail') ||
|
|
22
22
|
__clavueArgs.includes('--path') ||
|