@mmmbuto/codex-cli-termux 0.58.3-termux → 0.58.4-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 +29 -0
- package/bin/codex +0 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -38,6 +38,10 @@ We only apply patches for issues that:
|
|
|
38
38
|
|
|
39
39
|
**Current patches**: See [patches/](./patches/) directory for full documentation.
|
|
40
40
|
|
|
41
|
+
Serve aiuto per debuggare gli avvisi di upgrade? Consulta
|
|
42
|
+
[docs/termux-upgrade-checks.md](./docs/termux-upgrade-checks.md) per cause note e
|
|
43
|
+
strategie di fix.
|
|
44
|
+
|
|
41
45
|
**Found an issue?** Well-documented bug reports with reproduction steps are welcome! Open an [issue](https://github.com/DioNanos/codex-termux/issues).
|
|
42
46
|
|
|
43
47
|
---
|
|
@@ -161,6 +165,31 @@ See [LICENSE](./LICENSE) file for details.
|
|
|
161
165
|
|
|
162
166
|
## 📜 Changelog
|
|
163
167
|
|
|
168
|
+
### v0.58.4-termux (2025-11-14)
|
|
169
|
+
|
|
170
|
+
**Critical bugfix**: Auto-update detection now working
|
|
171
|
+
|
|
172
|
+
**Fixes:**
|
|
173
|
+
- 🐛 **Auto-update detection restored** - Fixed version parser losing `-termux` suffix support after upstream merge
|
|
174
|
+
- 🐛 **Tag parsing fixed** - `extract_version_from_latest_tag` now supports both `rust-v*` (upstream) and `v*-termux` (fork) formats
|
|
175
|
+
- 🔧 **Test coverage added** - New test for Termux tag format validation
|
|
176
|
+
|
|
177
|
+
**Technical details:**
|
|
178
|
+
- **Root cause**: v0.58.0 upstream merge overwrote previous `-termux` suffix fix in `parse_version()`
|
|
179
|
+
- **Additional issue**: New upstream code only accepted `rust-v` prefix, rejecting our `v0.58.0-termux` tags
|
|
180
|
+
- **Impact**: `~/.config/codex/version.json` was never created, preventing "Update available" banner
|
|
181
|
+
- **Solution**: Re-applied `-termux` suffix support + added `v*` prefix support in tag parser
|
|
182
|
+
|
|
183
|
+
**Affected versions**: v0.58.0 through v0.58.3 had broken auto-update detection.
|
|
184
|
+
|
|
185
|
+
**Termux patches (4 total):**
|
|
186
|
+
- ✅ **Patch #1**: Browser login fix (`termux-open-url`)
|
|
187
|
+
- ✅ **Patch #2**: RAM optimizations (`lto=false`, `codegen-units=16`)
|
|
188
|
+
- ✅ **Patch #3**: Auto-update URL (`@mmmbuto/codex-cli-termux`)
|
|
189
|
+
- ✅ **Patch #4**: Auto-update detection (this release)
|
|
190
|
+
|
|
191
|
+
---
|
|
192
|
+
|
|
164
193
|
### v0.58.0-termux (2025-11-13)
|
|
165
194
|
|
|
166
195
|
Synced with upstream OpenAI Codex rust-v0.58.0 (62 commits)
|
package/bin/codex
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mmmbuto/codex-cli-termux",
|
|
3
|
-
"version": "0.58.
|
|
4
|
-
"description": "OpenAI Codex CLI v0.58.
|
|
3
|
+
"version": "0.58.4-termux",
|
|
4
|
+
"description": "OpenAI Codex CLI v0.58.4 with GPT-5.1 support, pre-compiled for Android Termux (ARM64)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "bin/codex.js",
|
|
7
7
|
"bin": {
|