From 67f181ba81ae88c4408dc17c395566a71c52fd20 Mon Sep 17 00:00:00 2001 From: tototomate123 Date: Sun, 8 Feb 2026 13:29:14 +0100 Subject: [PATCH] Document shift arrow WPM shortcuts --- CHANGELOG.md | 1 + src/components/modals/ShortcutsModal.tsx | 13 ++++++++++--- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 015e5fb..b1800bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ - Add an optional "Real WPM" indicator beneath the WPM control (computed from the last 60 seconds of reading) - Pause "Real WPM" updates while paused, add an adaptive timing toggle, and make the WPM setting reflect actual reading throughput +- Add `Shift+↑/↓` shortcuts for adjusting WPM by 100 and document them in the shortcuts modal ### 2026-02-07: 1.1.0 diff --git a/src/components/modals/ShortcutsModal.tsx b/src/components/modals/ShortcutsModal.tsx index 743345e..213114d 100644 --- a/src/components/modals/ShortcutsModal.tsx +++ b/src/components/modals/ShortcutsModal.tsx @@ -52,11 +52,19 @@ export function ShortcutsModal({ onClose }: Props) {
- Increase speed + Increase speed (25 WPM)
- Decrease speed + Decrease speed (25 WPM) +
+
+ Shift + ↑ + Increase speed (100 WPM) +
+
+ Shift + ↓ + Decrease speed (100 WPM)
R @@ -72,4 +80,3 @@ export function ShortcutsModal({ onClose }: Props) {
); } -