Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,26 @@ and this project uses [Semantic Versioning](https://semver.org/spec/v2.0.0.html)

## [Unreleased]

## [3.9.1] - 2026-06-11

### Fixed
- **Erratic capitalization in two-thumb grace mode.** After the grace timer auto-committed a
word, the shift/auto-caps state wasn't refreshed, so the next word's capitalization came out
wrong (dropped sentence caps, or mid-word capitals). (#14)

### Changed
- **Tapped words no longer auto-finish by default** in two-thumb grace mode — the new
"Only auto-finish swiped words" option defaults on, so a word you tap out stays open until you
press space or pick a suggestion (fixes tapped shortcuts/corrections firing early). Only swiped
words auto-commit on a pause. (#14)
- Reworded the two easily-confused spacing toggles: **"Only auto-space after swipes"** (the
trailing space) vs **"Only auto-finish swiped words"** (whether the word commits at all). (#14)

### Added
- **Experimental: defer grace-mode space** (`PREF_SPACING_DEFER_GRACE_SPACE`, default off) — routes
the two-thumb grace auto-commit space through the same deferred mechanism as the default swipe
path. (#23)

## [3.9.0] - 2026-06-10

### Added
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ android {
applicationId = "com.asafmah.leantypedual"
minSdk = 21
targetSdk = 35
versionCode = 3900
versionName = "3.9.0"
versionCode = 3910
versionName = "3.9.1"

proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")

Expand Down
4 changes: 4 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/3910.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
- Two-thumb: fixed capitalization going wrong after the grace timer auto-finishes a word (dropped sentence capitals / stray mid-word capitals)
- Two-thumb: words you tap out no longer auto-finish on a pause by default — they stay open until you press space or pick a suggestion, so tapped shortcuts and corrections don't fire early (only swiped words auto-finish). Toggle under Two-thumb settings.
- Clearer labels for the two spacing options ("Only auto-space after swipes" vs "Only auto-finish swiped words")
- Experimental (off by default): defer the two-thumb grace space like the default swipe path
Loading