You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Shot detail view: tap a session → Details button opens a chronological list of individual shots, each showing shot number, time, and peak acceleration
Manual adjustments tracked: tapping +1/−1 on the counter now writes to the shots table — manual shots appear in the detail view with "—" instead of acceleration
Fixes
Shots were not saved correctly: OnConflictStrategy.REPLACE on sessions triggered ON DELETE CASCADE, wiping all shots on every session update. Replaced with @Upsert (insert-or-update in place)
Delete button hidden in session dialog: adding the Details button pushed content past screen height; dialog is now scrollable
Internal
Shot.magnitude made nullable (DB migration v1 → v2, existing data preserved)