@mmmbuto/qwen-code-termux 0.10.3-termux → 0.11.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 +13 -4
- package/package.json +5 -9
package/README.md
CHANGED
|
@@ -4,7 +4,6 @@
|
|
|
4
4
|
[](./LICENSE)
|
|
5
5
|
[](https://nodejs.org/)
|
|
6
6
|
[](https://www.npmjs.com/package/@mmmbuto/qwen-code-termux)
|
|
7
|
-
[](https://ko-fi.com/dionanos)
|
|
8
7
|
|
|
9
8
|
**An open-source AI agent that lives in your terminal — Termux Edition (Android).**
|
|
10
9
|
|
|
@@ -31,10 +30,10 @@ Upstream Qwen Code targets macOS/Linux/Windows. On Android/Termux, installs may
|
|
|
31
30
|
|
|
32
31
|
Termux Edition focuses on:
|
|
33
32
|
|
|
34
|
-
- **Android PTY support** via
|
|
33
|
+
- **Android PTY support** via `node-pty-android-arm64` (optional dependency)
|
|
35
34
|
- **Termux runtime patches** (polyfills/quirks, clipboard behavior)
|
|
36
35
|
- **Termux-safe install** (avoid node-gyp/husky pitfalls where possible)
|
|
37
|
-
- **Tested on-device** — see [test-reports/0.
|
|
36
|
+
- **Tested on-device** — see [test-reports/0.11.1-termux/](test-reports/0.11.1-termux/README.md)
|
|
38
37
|
|
|
39
38
|
## Installation (Termux / Android)
|
|
40
39
|
|
|
@@ -75,7 +74,7 @@ qwen /auth # Authentication
|
|
|
75
74
|
|
|
76
75
|
## Resources
|
|
77
76
|
|
|
78
|
-
- **Test Reports**: [test-reports/0.
|
|
77
|
+
- **Test Reports**: [test-reports/0.11.1-termux/](test-reports/0.11.1-termux/README.md)
|
|
79
78
|
- **Patches**: [patches/](patches/README.md)
|
|
80
79
|
- **Build**: [docs/developers/BUILDING.md](docs/developers/BUILDING.md)
|
|
81
80
|
- **Config**: [docs/users/configuration.md](docs/users/configuration.md)
|
|
@@ -106,3 +105,13 @@ If this Termux edition helps you, you can support the project on Ko-fi:
|
|
|
106
105
|
## Acknowledgments
|
|
107
106
|
|
|
108
107
|
This project is based on [Google Gemini CLI](https://github.com/google-gemini/gemini-cli). We acknowledge and appreciate the excellent work of the Gemini CLI team. Our main contribution focuses on parser-level adaptations to better support Qwen-Coder models.
|
|
108
|
+
|
|
109
|
+
---
|
|
110
|
+
|
|
111
|
+
## License
|
|
112
|
+
|
|
113
|
+
Original project by Qwen Team: https://github.com/QwenLM/qwen-code<br>
|
|
114
|
+
Apache License 2.0 (upstream Qwen Code)<br>
|
|
115
|
+
Termux-port maintenance by WellaNet.Dev<br>
|
|
116
|
+
See [LICENSE](./LICENSE) for details and upstream terms.<br>
|
|
117
|
+
Made in Italy 🇮🇹
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mmmbuto/qwen-code-termux",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.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.11.1-termux"
|
|
17
17
|
},
|
|
18
18
|
"scripts": {
|
|
19
19
|
"start": "cross-env node scripts/start.js",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"test:integration:all": "npm run test:integration:sandbox:none && npm run test:integration:sandbox:docker && npm run test:integration:sandbox:podman",
|
|
35
35
|
"test:integration:sandbox:none": "cross-env GEMINI_SANDBOX=false vitest run --root ./integration-tests",
|
|
36
36
|
"test:integration:sandbox:docker": "cross-env GEMINI_SANDBOX=docker npm run build:sandbox && GEMINI_SANDBOX=docker vitest run --root ./integration-tests",
|
|
37
|
-
"test:integration:sandbox:podman": "cross-env GEMINI_SANDBOX=podman vitest run --root ./integration-tests",
|
|
37
|
+
"test:integration:sandbox:podman": "cross-env GEMINI_SANDBOX=podman npm run build:sandbox && GEMINI_SANDBOX=podman vitest run --root ./integration-tests",
|
|
38
38
|
"test:integration:sdk:sandbox:none": "cross-env GEMINI_SANDBOX=false vitest run --root ./integration-tests sdk-typescript",
|
|
39
39
|
"test:integration:sdk:sandbox:docker": "cross-env GEMINI_SANDBOX=docker npm run build:sandbox && GEMINI_SANDBOX=docker vitest run --root ./integration-tests sdk-typescript",
|
|
40
40
|
"test:integration:cli:sandbox:none": "cross-env GEMINI_SANDBOX=false vitest run --root ./integration-tests --exclude '**/sdk-typescript/**'",
|
|
@@ -116,12 +116,8 @@
|
|
|
116
116
|
"simple-git": "^3.28.0"
|
|
117
117
|
},
|
|
118
118
|
"optionalDependencies": {
|
|
119
|
-
"@
|
|
120
|
-
"@lydell/node-pty-
|
|
121
|
-
"@lydell/node-pty-darwin-x64": "1.1.0",
|
|
122
|
-
"@lydell/node-pty-linux-x64": "1.1.0",
|
|
123
|
-
"@lydell/node-pty-win32-arm64": "1.1.0",
|
|
124
|
-
"@lydell/node-pty-win32-x64": "1.1.0"
|
|
119
|
+
"@mmmbuto/node-pty-android-arm64": "~1.1.0",
|
|
120
|
+
"@lydell/node-pty-linux-arm64": "~1.2.0-beta.2"
|
|
125
121
|
},
|
|
126
122
|
"lint-staged": {
|
|
127
123
|
"*.{js,jsx,ts,tsx}": [
|