diff --git a/CHANGELOG.md b/CHANGELOG.md index a92f07e..755733c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,25 @@ Format: [Keep a Changelog 1.1.0](https://keepachangelog.com/en/1.1.0/) — versi --- +## [1.1.1] — 2026-05-27 + +### Changed — Mode-aware WPM ceiling + +The WPM slider's maximum value now adapts to the active reading mode: + +- **Word** mode: 1500 WPM ceiling (human single-word recognition limit — beyond ~25 ms per word the brain stops registering individual words) +- **Sentence** and **Paragraph** modes: 3000 WPM ceiling. In chunk modes the "WPM" controls auto-advance timing across larger display units, so higher values still produce comprehensible reading speeds (a 20-word sentence at 3000 WPM still gets ~400 ms of display time, which is well within visual-recognition comfort) + +Switching from a high-WPM chunk mode back to Word mode automatically clamps the current value down to 1500, preventing accidentally-illegible word-mode playback. + +The `+` keyboard shortcut now respects the mode-specific ceiling. + +### Why this matters + +For skim-pass reading on long thesis papers, the previous 1500 WPM cap in Sentence mode was too conservative. With a 20-word sentence at 1500 WPM the display held each sentence for ~1 s — comfortable but slower than necessary for already-known territory. 3000 WPM cuts that to ~400 ms, suitable for the Preview / Postview phases of structured reading (preview chapters, scan for known concepts, identify sections that warrant a slower second-pass read). + +--- + ## [1.1.0] — 2026-05-27 ### Added — Sentence and Paragraph reading modes diff --git a/ranger-reader.html b/ranger-reader.html index 277ff87..54c0139 100644 --- a/ranger-reader.html +++ b/ranger-reader.html @@ -250,7 +250,7 @@ textarea:focus { - v1.1 + v1.1.1