@mmmbuto/qwen-code-termux 0.11.2-termux → 0.12.0-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/CHANGELOG.md +77 -0
- package/README.md +5 -5
- package/{dist/cli.js → cli.js} +53387 -33233
- package/locales/de.js +1613 -0
- package/locales/en.js +1665 -0
- package/locales/ja.js +1117 -0
- package/locales/pt.js +1608 -0
- package/locales/ru.js +1620 -0
- package/locales/zh.js +1485 -0
- package/package.json +24 -114
- package/{dist/sandbox-macos-permissive-proxied.sb → sandbox-macos-permissive-proxied.sb} +1 -1
- package/{dist/sandbox-macos-restrictive-proxied.sb → sandbox-macos-restrictive-proxied.sb} +1 -1
- /package/{dist/sandbox-macos-permissive-closed.sb → sandbox-macos-permissive-closed.sb} +0 -0
- /package/{dist/sandbox-macos-permissive-open.sb → sandbox-macos-permissive-open.sb} +0 -0
- /package/{dist/sandbox-macos-restrictive-closed.sb → sandbox-macos-restrictive-closed.sb} +0 -0
- /package/{dist/sandbox-macos-restrictive-open.sb → sandbox-macos-restrictive-open.sb} +0 -0
- /package/{dist/vendor → vendor}/ripgrep/COPYING +0 -0
- /package/{dist/vendor → vendor}/ripgrep/arm64-darwin/rg +0 -0
- /package/{dist/vendor → vendor}/ripgrep/arm64-linux/rg +0 -0
- /package/{dist/vendor → vendor}/ripgrep/x64-darwin/rg +0 -0
- /package/{dist/vendor → vendor}/ripgrep/x64-linux/rg +0 -0
- /package/{dist/vendor → vendor}/ripgrep/x64-win32/rg.exe +0 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
## [0.12.0-termux] - 2026-03-09
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
|
|
9
|
+
- **Extension Management TUI** - New UI for managing MCP extensions
|
|
10
|
+
- **Hook System** - Support for custom hooks (session start/end, stop)
|
|
11
|
+
- **Ask User Question Tool** - New tool for user interactions
|
|
12
|
+
- **ACP SDK Migration** - Migrated to `@agentclientprotocol/sdk`
|
|
13
|
+
- **Auto PTY Installation** - Postinstall script auto-installs PTY dependencies on Termux
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
|
|
17
|
+
- **Merged upstream QwenLM/qwen-code v0.12.0**
|
|
18
|
+
- **Shell PTY Default** - PTY enabled by default for shell execution
|
|
19
|
+
- **New dependency**: `iconv-lite` for character encoding
|
|
20
|
+
- Version suffix: `-termux` across all workspace packages
|
|
21
|
+
- Sandbox image: `ghcr.io/mmmbuto/qwen-code-termux:0.12.0-termux`
|
|
22
|
+
|
|
23
|
+
### Fixed
|
|
24
|
+
|
|
25
|
+
- **shellExecutionService.ts** - Adapted to use `@mmmbuto/pty-termux-utils` IPty interface
|
|
26
|
+
- **Import paths** - All `@qwen-code/qwen-code-core` → `@mmmbuto/qwen-code-termux-core`
|
|
27
|
+
- **prepare-package.js** - Termux-specific optionalDependencies
|
|
28
|
+
|
|
29
|
+
### Termux Patches Maintained (9/9)
|
|
30
|
+
|
|
31
|
+
1. `prepare-termux.cjs` - Skip husky/bundle on Termux
|
|
32
|
+
2. `termux-runtime.ts` - Android runtime polyfills
|
|
33
|
+
3. `getPty.ts` - Re-export from `@mmmbuto/pty-termux-utils`
|
|
34
|
+
4. `package.json` - Termux name/version/sandboxImageUri
|
|
35
|
+
5. `optionalDependencies` - Android ARM64 + Linux ARM64
|
|
36
|
+
6. `installationInfo.ts` - Correct update commands
|
|
37
|
+
7. `start.js` - Deprecation warning suppression
|
|
38
|
+
8. `prepare-package.js` - NPM package preparation
|
|
39
|
+
9. `postinstall.js` - Auto-install PTY on Termux
|
|
40
|
+
|
|
41
|
+
---
|
|
42
|
+
|
|
43
|
+
## [0.11.3-termux] - 2026-03-04
|
|
44
|
+
|
|
45
|
+
### Fixed
|
|
46
|
+
|
|
47
|
+
- Bundle version fix
|
|
48
|
+
|
|
49
|
+
---
|
|
50
|
+
|
|
51
|
+
## [0.11.2-termux] - 2026-03-02
|
|
52
|
+
|
|
53
|
+
### Fixed
|
|
54
|
+
|
|
55
|
+
- Auto-update command fix (correct package name `@mmmbuto/qwen-code-termux`)
|
|
56
|
+
|
|
57
|
+
---
|
|
58
|
+
|
|
59
|
+
## [0.11.1-termux] - 2026-03-01
|
|
60
|
+
|
|
61
|
+
### Changed
|
|
62
|
+
|
|
63
|
+
- PTY unified library (`@mmmbuto/pty-termux-utils`)
|
|
64
|
+
- Reduced optionalDependencies (7 → 2)
|
|
65
|
+
- Native Android ARM64 support via `@mmmbuto/node-pty-android-arm64`
|
|
66
|
+
- Linux ARM64 fallback via `@lydell/node-pty-linux-arm64`
|
|
67
|
+
|
|
68
|
+
---
|
|
69
|
+
|
|
70
|
+
## [0.11.0-termux] - 2026-02-28
|
|
71
|
+
|
|
72
|
+
### Added
|
|
73
|
+
|
|
74
|
+
- Initial Termux fork based on upstream v0.11.0
|
|
75
|
+
- Android PTY support
|
|
76
|
+
- Termux runtime patches
|
|
77
|
+
- Skip husky/bundle on Termux install
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<div align="center">
|
|
2
2
|
|
|
3
|
-
[](https://www.npmjs.com/package/@mmmbuto/qwen-code-termux)
|
|
3
|
+
[](https://www.npmjs.com/package/@mmmbuto/qwen-code-termux/v/0.12.0-termux)
|
|
4
4
|
[](./LICENSE)
|
|
5
5
|
[](https://nodejs.org/)
|
|
6
6
|
[](https://www.npmjs.com/package/@mmmbuto/qwen-code-termux)
|
|
@@ -30,10 +30,10 @@ Upstream Qwen Code targets macOS/Linux/Windows. On Android/Termux, installs may
|
|
|
30
30
|
|
|
31
31
|
Termux Edition focuses on:
|
|
32
32
|
|
|
33
|
-
- **Android PTY support** via `node-pty-android-arm64` (optional dependency)
|
|
33
|
+
- **Android PTY support** via `@mmmbuto/pty-termux-utils` + `@mmmbuto/node-pty-android-arm64` (optional dependency)
|
|
34
34
|
- **Termux runtime patches** (polyfills/quirks, clipboard behavior)
|
|
35
35
|
- **Termux-safe install** (avoid node-gyp/husky pitfalls where possible)
|
|
36
|
-
- **Tested on-device** — see [test-reports/
|
|
36
|
+
- **Tested on-device** — see [test-reports/](test-reports/README.md)
|
|
37
37
|
|
|
38
38
|
## Installation (Termux / Android)
|
|
39
39
|
|
|
@@ -74,7 +74,7 @@ qwen /auth # Authentication
|
|
|
74
74
|
|
|
75
75
|
## Resources
|
|
76
76
|
|
|
77
|
-
- **Test Reports**: [test-reports/
|
|
77
|
+
- **Test Reports**: [test-reports/](test-reports/README.md)
|
|
78
78
|
- **Patches**: [patches/](patches/README.md)
|
|
79
79
|
- **Build**: [docs/developers/BUILDING.md](docs/developers/BUILDING.md)
|
|
80
80
|
- **Config**: [docs/users/configuration.md](docs/users/configuration.md)
|
|
@@ -112,6 +112,6 @@ This project is based on [Google Gemini CLI](https://github.com/google-gemini/ge
|
|
|
112
112
|
|
|
113
113
|
Original project by Qwen Team: https://github.com/QwenLM/qwen-code<br>
|
|
114
114
|
Apache License 2.0 (upstream Qwen Code)<br>
|
|
115
|
-
Termux-port maintenance by
|
|
115
|
+
Termux-port maintenance by Davide A. Guglielmi<br>
|
|
116
116
|
See [LICENSE](./LICENSE) for details and upstream terms.<br>
|
|
117
117
|
Made in Italy 🇮🇹
|