@qwen-code/qwen-code 0.15.1 → 0.15.2
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/bundled/qc-helper/docs/configuration/settings.md +0 -8
- package/bundled/qc-helper/docs/features/sub-agents.md +0 -1
- package/cli.js +6442 -6404
- package/locales/en.js +7 -0
- package/locales/zh.js +5 -0
- package/package.json +2 -2
package/locales/en.js
CHANGED
|
@@ -575,6 +575,8 @@ export default {
|
|
|
575
575
|
'Updates all extensions or a named extension to the latest version.':
|
|
576
576
|
'Updates all extensions or a named extension to the latest version.',
|
|
577
577
|
'Update all extensions.': 'Update all extensions.',
|
|
578
|
+
'The name of the extension to update.':
|
|
579
|
+
'The name of the extension to update.',
|
|
578
580
|
'Either an extension name or --all must be provided':
|
|
579
581
|
'Either an extension name or --all must be provided',
|
|
580
582
|
'Lists installed extensions.': 'Lists installed extensions.',
|
|
@@ -726,6 +728,7 @@ export default {
|
|
|
726
728
|
'User Settings': 'User Settings',
|
|
727
729
|
'System Settings': 'System Settings',
|
|
728
730
|
Extensions: 'Extensions',
|
|
731
|
+
'Session (temporary)': 'Session (temporary)',
|
|
729
732
|
// Hooks - Status
|
|
730
733
|
'✓ Enabled': '✓ Enabled',
|
|
731
734
|
'✗ Disabled': '✗ Disabled',
|
|
@@ -1896,6 +1899,8 @@ export default {
|
|
|
1896
1899
|
// Coding Plan Authentication
|
|
1897
1900
|
// ============================================================================
|
|
1898
1901
|
'API key cannot be empty.': 'API key cannot be empty.',
|
|
1902
|
+
'Invalid API key. Coding Plan API keys start with "sk-sp-". Please check.':
|
|
1903
|
+
'Invalid API key. Coding Plan API keys start with "sk-sp-". Please check.',
|
|
1899
1904
|
'You can get your Coding Plan API key here':
|
|
1900
1905
|
'You can get your Coding Plan API key here',
|
|
1901
1906
|
'API key is stored in settings.env. You can migrate it to a .env file for better security.':
|
|
@@ -1973,6 +1978,8 @@ export default {
|
|
|
1973
1978
|
'Show context window usage breakdown.',
|
|
1974
1979
|
'Run /context detail for per-item breakdown.':
|
|
1975
1980
|
'Run /context detail for per-item breakdown.',
|
|
1981
|
+
'Show context window usage breakdown. Use "/context detail" for per-item breakdown.':
|
|
1982
|
+
'Show context window usage breakdown. Use "/context detail" for per-item breakdown.',
|
|
1976
1983
|
'body loaded': 'body loaded',
|
|
1977
1984
|
memory: 'memory',
|
|
1978
1985
|
'{{region}} configuration updated successfully.':
|
package/locales/zh.js
CHANGED
|
@@ -578,6 +578,7 @@ export default {
|
|
|
578
578
|
'(user)': '(用户)',
|
|
579
579
|
'[not set]': '[未设置]',
|
|
580
580
|
'[value stored in keychain]': '[值存储在钥匙串中]',
|
|
581
|
+
'Value:': '值:',
|
|
581
582
|
'Manage extension settings.': '管理扩展设置。',
|
|
582
583
|
'You need to specify a command (set or list).':
|
|
583
584
|
'您需要指定命令(set 或 list)。',
|
|
@@ -1037,6 +1038,8 @@ export default {
|
|
|
1037
1038
|
'Command:': '命令:',
|
|
1038
1039
|
'Working Directory:': '工作目录:',
|
|
1039
1040
|
'Capabilities:': '功能:',
|
|
1041
|
+
'No server selected': '未选择服务器',
|
|
1042
|
+
prompts: '提示',
|
|
1040
1043
|
|
|
1041
1044
|
// MCP Tool List
|
|
1042
1045
|
'No tools available for this server.': '此服务器没有可用工具。',
|
|
@@ -1049,7 +1052,9 @@ export default {
|
|
|
1049
1052
|
'{{current}}/{{total}}': '{{current}}/{{total}}',
|
|
1050
1053
|
|
|
1051
1054
|
// MCP Tool Detail
|
|
1055
|
+
required: '必需',
|
|
1052
1056
|
Type: '类型',
|
|
1057
|
+
Enum: '枚举',
|
|
1053
1058
|
Parameters: '参数',
|
|
1054
1059
|
'No tool selected': '未选择工具',
|
|
1055
1060
|
Annotations: '注解',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qwen-code/qwen-code",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.2",
|
|
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.
|
|
24
|
+
"sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.15.2"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {},
|
|
27
27
|
"optionalDependencies": {
|