type-review-app-macos 发布 v0.1.1

作者:李笑来 · 来源:GitHub · 发布于 2026-09-08 · 原文链接

一款为 type.review 打造的原生 Swift 应用——把打字引擎移植到 Swift,并用标准样本持续对照原版,确保两者一致。发布了 v0.1.1。

这个版本更新了什么#

Typing practice that adapts to the keys you actually miss — and, if you want it, a keyboard that sounds like a keyboard in every app on your Mac.

Install#

brew install --cask xiaolai/tap/type-review

Or take the zip below and drag TYPE.app to Applications. Signed and notarised, with the ticket stapled, so it opens on a Mac that has never seen it — offline included.

Requirements#

macOS 14 or later, on Apple silicon.

The keyboard sound, and what it costs#

Playing a sound for keys pressed in other applications means the app has to be told about those keys, which macOS gates behind Input Monitoring. The setting is off until you switch it on, and switching it on is what asks.

  • 它只读取哪个键发生了移动,其他什么都不读——读取的是按键代码,而不是 character. It cannot tell an a from a q, or a password from a sentence.
  • 只要任何密码管理器位于最前台,监视器就会被移除​,而不是 muted. The events are not delivered at all.
  • macOS 中的每个安全文本框都会让它静音,因为检查询问的是 system rather than a list.
  • 不会在任何地方存储、缓存或发送任何内容。

以上译自作者写在 GitHub 上的英文更新说明。查看原页面