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
This commit was created on GitHub.com and signed with GitHub’s verified signature.
Added
A Discord link in the settings footer and the README. Questions, ideas, and general discussion now have somewhere to go that is not a GitHub issue. The invite never expires. A GitHub issue is still the better home for anything that needs tracking.
Fixed
The links in the settings footer no longer run together. The separators between them depended on plain whitespace, which the layout dropped, so the row could read GitHub|Report issues. They are spaced by the layout now.
The marketplace scorecard no longer flags the plugin's use of URLSearchParams.entries() as untyped. The TypeScript lib declared DOM but not DOM.Iterable, where the iterator methods on URLSearchParams and other web types live, so the developer-dashboard scan, which type-checks without the project's development dependencies, saw the call as any and reported a no-unsafe warning in the request signer. The lib now includes DOM.Iterable. No runtime change: the method already runs on every supported Obsidian version, and the plugin now type-checks against the scan's stricter view as part of its own lint.