Document shift arrow WPM shortcuts

This commit is contained in:
2026-02-08 13:29:14 +01:00
parent 0b992f0a49
commit 67f181ba81
2 changed files with 11 additions and 3 deletions
+1
View File
@@ -2,6 +2,7 @@
- Add an optional "Real WPM" indicator beneath the WPM control (computed from the last 60 seconds of reading) - 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 - 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 ### 2026-02-07: 1.1.0
+10 -3
View File
@@ -52,11 +52,19 @@ export function ShortcutsModal({ onClose }: Props) {
</div> </div>
<div style={styles.shortcutRow}> <div style={styles.shortcutRow}>
<kbd style={styles.kbdLarge}></kbd> <kbd style={styles.kbdLarge}></kbd>
<span>Increase speed</span> <span>Increase speed (25 WPM)</span>
</div> </div>
<div style={styles.shortcutRow}> <div style={styles.shortcutRow}>
<kbd style={styles.kbdLarge}></kbd> <kbd style={styles.kbdLarge}></kbd>
<span>Decrease speed</span> <span>Decrease speed (25 WPM)</span>
</div>
<div style={styles.shortcutRow}>
<kbd style={styles.kbdLarge}>Shift + </kbd>
<span>Increase speed (100 WPM)</span>
</div>
<div style={styles.shortcutRow}>
<kbd style={styles.kbdLarge}>Shift + </kbd>
<span>Decrease speed (100 WPM)</span>
</div> </div>
<div style={styles.shortcutRow}> <div style={styles.shortcutRow}>
<kbd style={styles.kbdLarge}>R</kbd> <kbd style={styles.kbdLarge}>R</kbd>
@@ -72,4 +80,3 @@ export function ShortcutsModal({ onClose }: Props) {
</div> </div>
); );
} }