@qwen-code/qwen-code 0.15.10-preview.0 → 0.15.10-preview.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 +2 -2
- package/bundled/qc-helper/docs/configuration/auth.md +24 -69
- package/bundled/qc-helper/docs/configuration/settings.md +7 -3
- package/bundled/qc-helper/docs/extension/extension-releasing.md +1 -1
- package/bundled/qc-helper/docs/features/commands.md +16 -19
- package/bundled/qc-helper/docs/features/language.md +25 -0
- package/bundled/qc-helper/docs/overview.md +10 -2
- package/bundled/qc-helper/docs/quickstart.md +3 -5
- package/bundled/qc-helper/docs/reference/keyboard-shortcuts.md +12 -11
- package/cli.js +46095 -30431
- package/locales/ca.js +205 -508
- package/locales/de.js +265 -462
- package/locales/en.js +168 -390
- package/locales/fr.js +245 -482
- package/locales/ja.js +464 -384
- package/locales/pt.js +240 -439
- package/locales/ru.js +221 -436
- package/locales/zh-TW.js +207 -359
- package/locales/zh.js +213 -410
- package/package.json +3 -3
- package/sandbox-macos-permissive-closed.sb +2 -1
- package/sandbox-macos-permissive-open.sb +2 -1
- package/sandbox-macos-permissive-proxied.sb +2 -1
- package/sandbox-macos-restrictive-closed.sb +2 -1
- package/sandbox-macos-restrictive-open.sb +2 -1
- package/sandbox-macos-restrictive-proxied.sb +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qwen-code/qwen-code",
|
|
3
|
-
"version": "0.15.10-preview.
|
|
3
|
+
"version": "0.15.10-preview.1",
|
|
4
4
|
"description": "Qwen Code - AI-powered coding assistant",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"bundled"
|
|
22
22
|
],
|
|
23
23
|
"config": {
|
|
24
|
-
"sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.15.10-preview.
|
|
24
|
+
"sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.15.10-preview.1"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {},
|
|
27
27
|
"optionalDependencies": {
|
|
@@ -40,6 +40,6 @@
|
|
|
40
40
|
"@teddyzhu/clipboard-win32-arm64-msvc": "0.0.5"
|
|
41
41
|
},
|
|
42
42
|
"engines": {
|
|
43
|
-
"node": ">=
|
|
43
|
+
"node": ">=22.0.0"
|
|
44
44
|
}
|
|
45
45
|
}
|
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
(subpath (param "TARGET_DIR"))
|
|
10
10
|
(subpath (param "TMP_DIR"))
|
|
11
11
|
(subpath (param "CACHE_DIR"))
|
|
12
|
-
(subpath (
|
|
12
|
+
(subpath (param "QWEN_DIR"))
|
|
13
|
+
(subpath (param "RUNTIME_DIR"))
|
|
13
14
|
(subpath (string-append (param "HOME_DIR") "/.npm"))
|
|
14
15
|
(subpath (string-append (param "HOME_DIR") "/.cache"))
|
|
15
16
|
(subpath (string-append (param "HOME_DIR") "/.gitconfig"))
|
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
(subpath (param "TARGET_DIR"))
|
|
10
10
|
(subpath (param "TMP_DIR"))
|
|
11
11
|
(subpath (param "CACHE_DIR"))
|
|
12
|
-
(subpath (
|
|
12
|
+
(subpath (param "QWEN_DIR"))
|
|
13
|
+
(subpath (param "RUNTIME_DIR"))
|
|
13
14
|
(subpath (string-append (param "HOME_DIR") "/.npm"))
|
|
14
15
|
(subpath (string-append (param "HOME_DIR") "/.cache"))
|
|
15
16
|
(subpath (string-append (param "HOME_DIR") "/.gitconfig"))
|
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
(subpath (param "TARGET_DIR"))
|
|
10
10
|
(subpath (param "TMP_DIR"))
|
|
11
11
|
(subpath (param "CACHE_DIR"))
|
|
12
|
-
(subpath (
|
|
12
|
+
(subpath (param "QWEN_DIR"))
|
|
13
|
+
(subpath (param "RUNTIME_DIR"))
|
|
13
14
|
(subpath (string-append (param "HOME_DIR") "/.npm"))
|
|
14
15
|
(subpath (string-append (param "HOME_DIR") "/.cache"))
|
|
15
16
|
(subpath (string-append (param "HOME_DIR") "/.gitconfig"))
|
|
@@ -67,7 +67,8 @@
|
|
|
67
67
|
(subpath (param "TARGET_DIR"))
|
|
68
68
|
(subpath (param "TMP_DIR"))
|
|
69
69
|
(subpath (param "CACHE_DIR"))
|
|
70
|
-
(subpath (
|
|
70
|
+
(subpath (param "QWEN_DIR"))
|
|
71
|
+
(subpath (param "RUNTIME_DIR"))
|
|
71
72
|
(subpath (string-append (param "HOME_DIR") "/.npm"))
|
|
72
73
|
(subpath (string-append (param "HOME_DIR") "/.cache"))
|
|
73
74
|
(subpath (string-append (param "HOME_DIR") "/.gitconfig"))
|
|
@@ -67,7 +67,8 @@
|
|
|
67
67
|
(subpath (param "TARGET_DIR"))
|
|
68
68
|
(subpath (param "TMP_DIR"))
|
|
69
69
|
(subpath (param "CACHE_DIR"))
|
|
70
|
-
(subpath (
|
|
70
|
+
(subpath (param "QWEN_DIR"))
|
|
71
|
+
(subpath (param "RUNTIME_DIR"))
|
|
71
72
|
(subpath (string-append (param "HOME_DIR") "/.npm"))
|
|
72
73
|
(subpath (string-append (param "HOME_DIR") "/.cache"))
|
|
73
74
|
(subpath (string-append (param "HOME_DIR") "/.gitconfig"))
|
|
@@ -67,7 +67,8 @@
|
|
|
67
67
|
(subpath (param "TARGET_DIR"))
|
|
68
68
|
(subpath (param "TMP_DIR"))
|
|
69
69
|
(subpath (param "CACHE_DIR"))
|
|
70
|
-
(subpath (
|
|
70
|
+
(subpath (param "QWEN_DIR"))
|
|
71
|
+
(subpath (param "RUNTIME_DIR"))
|
|
71
72
|
(subpath (string-append (param "HOME_DIR") "/.npm"))
|
|
72
73
|
(subpath (string-append (param "HOME_DIR") "/.cache"))
|
|
73
74
|
(subpath (string-append (param "HOME_DIR") "/.gitconfig"))
|