-
v1.7.1 Stable
released this
2026-09-08 16:49:01 +02:00 | 0 commits to master since this releaseFixes two real bugs reported after v1.7.0.
Native template autocomplete
Template file fields (Periodic Notes and Date systems) rendered an unstyled browser
<datalist>dropdown instead of Obsidian's native fuzzy-suggest popup.Replaced with an
AbstractInputSuggest<TFile>— the same base class Templater's own template pickers use — searching every Markdown path in the vault. This requires Obsidian ≥1.4.10;minAppVersionis corrected accordingly.Coloured calendar indicators actually apply now
Existing installs never saw coloured indicators, even after the v1.7.0 default changed. The prior default (
indicatorMode: "any") had already been silently persisted todata.jsonon first load, before "colour by note system" existed as an option — so changing the code's default alone could never reach an install that already had an explicit value on disk.Added a one-time, code-level migration: on load, a persisted
anywith no migration flag is promoted tosystemsand the flag is persisted immediately. Any indicator style chosen after that point —anyincluded — is a deliberate choice and is never touched again.Downloads