fix(coding-agent): handle macOS filenames with curly quotes and NFD Unicode

Fixes #1078

- Add tryNFDVariant() to normalize paths to NFD form
- Add tryCurlyQuoteVariant() to convert straight quotes to curly quotes
- Try combined NFD + curly quote variant for French macOS screenshots
- Add comprehensive tests for path-utils
This commit is contained in:
Mario Zechner 2026-01-29 22:58:06 +01:00
parent 93c39faa93
commit 4edb506df8
3 changed files with 186 additions and 3 deletions

View file

@ -1,5 +1,11 @@
# Changelog
## [Unreleased]
### Fixed
- Read tool now handles macOS filenames with curly quotes (U+2019) and NFD Unicode normalization ([#1078](https://github.com/badlogic/pi-mono/issues/1078))
## [0.50.3] - 2026-01-29
### New Features