## Summary - Replaces 5 non-ASCII characters in existing `apps.json` descriptions with ASCII equivalents - Adobe Creative Cloud: curly apostrophe (`'`) → straight apostrophe (`'`) - Airtame (darwin + windows): em-dash (`—`) → hyphen (`-`) - Cursor (darwin + windows): em-dash (`—`) → hyphen (`-`) ## Why Go's `json.Encoder` escapes all non-ASCII code points as `\uXXXX` when re-encoding a file, regardless of `SetEscapeHTML(false)`. The `updateAppsListFile()` function re-encodes the entire `apps.json` on every new app addition. As long as these 3 entries contain non-ASCII characters, every FMA PR that adds a new app will show spurious diffs to these existing lines. ## Validation checklist - [ ] Only 5 lines changed in `apps.json` - [ ] No other files touched
Welcome to the "source available" section of the Fleet codebase. Please note files and functionality under this directory are covered by the Fleet EE License, and require a valid Fleet subscription for production use. See the full license for details.