v0.7.13: Unicode input support for TUI editor

This commit is contained in:
Mario Zechner 2025-11-16 23:08:10 +01:00
parent 21f24061bb
commit a5ed6ab641
9 changed files with 34 additions and 28 deletions

View file

@ -2,6 +2,12 @@
## [Unreleased]
## [0.7.13] - 2025-11-16
### Fixed
- **TUI Editor**: Fixed unicode input support for umlauts (äöü), emojis (😀), and other extended characters. Previously the editor only accepted ASCII characters (32-126). Now properly handles all printable unicode while still filtering out control characters. ([#20](https://github.com/badlogic/pi-mono/pull/20))
## [0.7.12] - 2025-11-16
### Added

View file

@ -1,6 +1,6 @@
{
"name": "@mariozechner/pi-coding-agent",
"version": "0.7.12",
"version": "0.7.13",
"description": "Coding agent CLI with read, bash, edit, write tools and session management",
"type": "module",
"bin": {
@ -21,8 +21,8 @@
"prepublishOnly": "npm run clean && npm run build"
},
"dependencies": {
"@mariozechner/pi-agent": "^0.7.12",
"@mariozechner/pi-ai": "^0.7.12",
"@mariozechner/pi-agent": "^0.7.13",
"@mariozechner/pi-ai": "^0.7.13",
"chalk": "^5.5.0",
"diff": "^8.0.2",
"glob": "^11.0.3"