@mmmbuto/qwen-code-termux 0.6.407-termux → 0.7.1-termux
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 +131 -81
- package/dist/LICENSE +203 -0
- package/dist/README.md +254 -0
- package/dist/cli.js +245435 -278930
- package/dist/locales/de.js +1126 -0
- package/dist/locales/en.js +1099 -0
- package/dist/locales/ru.js +1119 -0
- package/dist/locales/zh.js +954 -0
- package/dist/package.json +35 -0
- package/package.json +2 -2
- package/scripts/unused-keys-only-in-locales.json +7 -6
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@mmmbuto/qwen-code-termux",
|
|
3
|
+
"version": "0.7.1-termux",
|
|
4
|
+
"description": "Android/Termux optimized fork of Qwen Code CLI.",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "git+https://github.com/DioNanos/qwen-code-termux.git"
|
|
8
|
+
},
|
|
9
|
+
"type": "module",
|
|
10
|
+
"main": "cli.js",
|
|
11
|
+
"bin": {
|
|
12
|
+
"qwen": "cli.js"
|
|
13
|
+
},
|
|
14
|
+
"files": [
|
|
15
|
+
"cli.js",
|
|
16
|
+
"vendor",
|
|
17
|
+
"*.sb",
|
|
18
|
+
"tiktoken_bg.wasm",
|
|
19
|
+
"README.md",
|
|
20
|
+
"LICENSE",
|
|
21
|
+
"locales"
|
|
22
|
+
],
|
|
23
|
+
"config": {
|
|
24
|
+
"sandboxImageUri": "ghcr.io/mmmbuto/qwen-code-termux:0.7.1-termux"
|
|
25
|
+
},
|
|
26
|
+
"dependencies": {
|
|
27
|
+
"tiktoken": "^1.0.21"
|
|
28
|
+
},
|
|
29
|
+
"engines": {
|
|
30
|
+
"node": ">=20.0.0"
|
|
31
|
+
},
|
|
32
|
+
"optionalDependencies": {
|
|
33
|
+
"@mmmbuto/node-pty-android-arm64": "1.1.0"
|
|
34
|
+
}
|
|
35
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mmmbuto/qwen-code-termux",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.1-termux",
|
|
4
4
|
"engines": {
|
|
5
5
|
"node": ">=20.0.0"
|
|
6
6
|
},
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"url": "git+https://github.com/DioNanos/qwen-code-termux.git"
|
|
14
14
|
},
|
|
15
15
|
"config": {
|
|
16
|
-
"sandboxImageUri": "ghcr.io/mmmbuto/qwen-code-termux:0.
|
|
16
|
+
"sandboxImageUri": "ghcr.io/mmmbuto/qwen-code-termux:0.7.1-termux"
|
|
17
17
|
},
|
|
18
18
|
"scripts": {
|
|
19
19
|
"start": "cross-env node scripts/start.js",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"generatedAt": "
|
|
2
|
+
"generatedAt": "2026-01-07T14:56:23.662Z",
|
|
3
3
|
"keys": [
|
|
4
4
|
" - en-US: English",
|
|
5
5
|
" - zh-CN: Simplified Chinese",
|
|
@@ -9,9 +9,9 @@
|
|
|
9
9
|
"Approval mode changed to: {{mode}} (saved to {{scope}} settings{{location}})",
|
|
10
10
|
"Auto-edit mode - Automatically approve file edits",
|
|
11
11
|
"Available approval modes:",
|
|
12
|
+
"Change auth (executes the /auth command)",
|
|
12
13
|
"Chat history is already compressed.",
|
|
13
|
-
"
|
|
14
|
-
"Clearing terminal.",
|
|
14
|
+
"Continue with {{model}}",
|
|
15
15
|
"Conversation checkpoint '{{tag}}' has been deleted.",
|
|
16
16
|
"Conversation checkpoint saved with tag: {{tag}}.",
|
|
17
17
|
"Conversation shared to {{filePath}}",
|
|
@@ -24,6 +24,7 @@
|
|
|
24
24
|
"Failed to change approval mode: {{error}}",
|
|
25
25
|
"Failed to login. Message: {{message}}",
|
|
26
26
|
"Failed to save approval mode: {{error}}",
|
|
27
|
+
"Failed to switch model to '{{modelId}}'.\n\n{{error}}",
|
|
27
28
|
"Invalid file format. Only .md and .json are supported.",
|
|
28
29
|
"Invalid language. Available: en-US, zh-CN",
|
|
29
30
|
"List of saved conversations:",
|
|
@@ -43,6 +44,7 @@
|
|
|
43
44
|
"Persist for this project/workspace",
|
|
44
45
|
"Persist for this user on this machine",
|
|
45
46
|
"Plan mode - Analyze only, do not modify files or execute commands",
|
|
47
|
+
"Pro quota limit reached for {{model}}.",
|
|
46
48
|
"Qwen OAuth authentication cancelled.",
|
|
47
49
|
"Qwen OAuth authentication timed out. Please try again.",
|
|
48
50
|
"Resume a conversation from a checkpoint. Usage: /chat resume <tag>",
|
|
@@ -54,8 +56,7 @@
|
|
|
54
56
|
"Share the current conversation to a markdown or json file. Usage: /chat share <file>",
|
|
55
57
|
"Usage: /approval-mode <mode> [--session|--user|--project]",
|
|
56
58
|
"Usage: /language ui [zh-CN|en-US]",
|
|
57
|
-
"YOLO mode - Automatically approve all tools"
|
|
58
|
-
"clear the screen and conversation history"
|
|
59
|
+
"YOLO mode - Automatically approve all tools"
|
|
59
60
|
],
|
|
60
|
-
"count":
|
|
61
|
+
"count": 56
|
|
61
62
|
}
|