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.
Fixed
π Editor not updated after HACS update β The browser was caching the old person-tracker-card-editor.js because the dynamic import() didn't include the ?v= parameter. It now uses import('./person-tracker-card-editor.js?v=1.3.6'), which changes with each version and forces a reload of the correct file.
π§ CARD_VERSION promoted to top-level constant β Previously, it was only declared in the cache-busting IIFE. Now it's available globally and reused in the dynamic import, eliminating the double declaration.
π·οΈ Version badge in the editor β Person Tracker Card v1.3.6 appears at the top of the visual editor, making it easy to check if the editor is up to date.