@mmmbuto/codex-cli-termux 0.75.0-termux → 0.76.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/README.md CHANGED
@@ -75,7 +75,7 @@ npm install -g @mmmbuto/codex-cli-termux
75
75
 
76
76
  ```bash
77
77
  codex --version
78
- # Output: codex-cli 0.74.0-termux
78
+ # Output: codex-cli 0.76.0-termux
79
79
 
80
80
  codex login
81
81
  # Opens browser for authentication
@@ -203,12 +203,12 @@ Codex will automatically:
203
203
  - At least 80% overall pass rate
204
204
  - No critical crashes
205
205
 
206
- **Example Report** (v0.74.0-termux, 2025-12-18):
206
+ **Example Report** (v0.76.0-termux, 2025-12-20):
207
207
  ```
208
208
  CODEX CLI TEST SUITE - FINAL REPORT
209
209
  ====================================
210
210
  Platform: Android Termux ARM64 (reference device)
211
- Codex Version: 0.74.0-termux
211
+ Codex Version: 0.76.0-termux
212
212
  Total Tests: 50
213
213
  ✅ Passed: 48
214
214
  ❌ Failed: 0
@@ -293,7 +293,7 @@ See [LICENSE](./LICENSE) file for details.
293
293
 
294
294
  ---
295
295
 
296
- **Version**: Based on OpenAI Codex 0.74.0 (Termux build refresh, package/bin verification updated)
296
+ **Version**: Based on OpenAI Codex 0.75.0 (Termux build refresh, package/bin verification updated)
297
297
  **Platform**: Android Termux ARM64
298
298
  **Maintained**: Community-driven, not affiliated with OpenAI
299
299
 
@@ -301,14 +301,21 @@ See [LICENSE](./LICENSE) file for details.
301
301
 
302
302
  ## 📜 Changelog
303
303
 
304
- ### v0.74.0-termux (2025-12-18) – latest
304
+ ### v0.76.0-termux (2025-12-20) – latest
305
305
  **Dist-tag**: `latest`
306
306
 
307
- - ⬆️ Upstream bump to OpenAI Codex rust-v0.74.0.
307
+ - ⬆️ Upstream bump to OpenAI Codex rust-v0.75.0.
308
308
  - 🧭 Single entrypoint confirmed: `codex` with no args opens TUI; `codex <prompt>` routes to exec; `codex-exec` kept as JS wrapper/symlink.
309
309
  - 🔧 Termux patches #1–6, #8, #9 revalidated after merge (`verify-patches.sh`).
310
- - 📦 npm package bumped to 0.74.0-termux; packaged binary includes `codex` plus `codex-exec` symlink/wrapper.
310
+ - 📦 npm package bumped to 0.76.0-termux; packaged binary includes `codex` plus `codex-exec` wrapper (no symlink).
311
311
  - ✅ Tests: CODEX_TEST_SUITE v1.2 on Termux (2025-12-18) → 48 passed / 0 failed / 2 skipped (WebSearch disabled, git info skipped in non-repo workspace); Package & Binary 8/8 passed; Termux-Specific 10/10 passed.
312
+ - 🌟 **Official Upstream Highlights**:
313
+ - Introducing gpt-5.2-codex our latest frontier model
314
+ - Projects are now collapsed to a single folder in the file explorer
315
+ - Hide collapsed folders from the file explorer
316
+ - Initial support for desktop notifications on macOS and Linux
317
+ - MCP improvements: Better error handling and resource management
318
+ - TUI improvements: Better visual feedback and performance
312
319
 
313
320
  ### v0.73.0-termux (2025-12-16)
314
321
  **Dist-tag**: `latest`
package/bin/codex CHANGED
Binary file
package/bin/codex-exec ADDED
@@ -0,0 +1,6 @@
1
+ #!/data/data/com.termux/files/usr/bin/bash
2
+
3
+ set -euo pipefail
4
+
5
+ SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
6
+ exec "$SCRIPT_DIR/codex" exec "$@"
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mmmbuto/codex-cli-termux",
3
- "version": "0.75.0-termux",
4
- "description": "OpenAI Codex CLI (upstream rust-v0.75.0) packaged as 0.75.0-termux – TUI + automation for Android Termux (ARM64). Use 'codex' for TUI, 'codex exec --json' for automation.",
3
+ "version": "0.76.0-termux",
4
+ "description": "OpenAI Codex CLI (upstream rust-v0.75.0) packaged as 0.76.0-termux – TUI + automation for Android Termux (ARM64). Use 'codex' for TUI, 'codex exec --json' for automation.",
5
5
  "type": "module",
6
6
  "main": "bin/codex.js",
7
7
  "bin": {