Skip to content

1.0.5

Choose a tag to compare

@github-actions github-actions released this 05 Aug 15:51
· 4 commits to main since this release

What's new

  • Leaner set rows — removed per-set PR celebration badges; personal records stay in the analytics dashboard
  • Scroll stability — logging a set no longer jumps the preview on mobile
  • Rest day cards — weekdays with no scheduled template get a rest-day workout card that still prompts for body weight
  • Templater date fixgetWorkoutForDate / getMealLogForDate accept daily-note titles/paths containing YYYY-MM-DD, so backfilled notes match the note date (prefer these over *ForToday() in templates)

Notes for Templater users

In daily-note templates, prefer:

const noteDate = tp.file.title;
tR += coach?.getWorkoutForDate(noteDate) ?? "";
tR += coach?.getMealLogForDate(noteDate) ?? "";

Rest days now emit a workout block (rest: true) instead of an empty string.

Full Changelog: 1.0.4...1.0.5