From d5403f9d653d9192c35143f50bee4651703354e0 Mon Sep 17 00:00:00 2001 From: Abdul Wahab <32850166+abdulwahabone@users.noreply.github.com> Date: Fri, 19 Jun 2026 13:51:15 +0900 Subject: [PATCH] Bump extension to v1.2.1 and add consolidated changelog (#265) Release bump covering the recent extension fixes that ship together: toolbar badge count parity (#262), local file:// scan failure messaging (#258), and the Kinpaku popup theme (#260). Merge after #264, #261, and #263. Co-authored-by: Cursor --- extension/manifest.json | 2 +- site/pages/changelog.astro | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/extension/manifest.json b/extension/manifest.json index 3a3a4c45b..cb9c563e7 100644 --- a/extension/manifest.json +++ b/extension/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 3, "name": "Impeccable", "description": "Detect common UI anti-patterns in any web page", - "version": "1.2.0", + "version": "1.2.1", "permissions": ["activeTab", "scripting", "storage", "webNavigation"], "host_permissions": [""], "background": { diff --git a/site/pages/changelog.astro b/site/pages/changelog.astro index 015087239..c8d7c60ba 100644 --- a/site/pages/changelog.astro +++ b/site/pages/changelog.astro @@ -173,6 +173,15 @@ import '../styles/changelog-faq-kinpaku.css'; +
+
Extension v1.2.1June 18, 2026
+
    +
  • The toolbar badge count matches the popup and panel. The browser-action badge counted flagged elements while the popup and DevTools panel counted anti-pattern findings, so the same scan showed two numbers (for example 21 vs 34). One element can carry several findings; the badge now counts findings too, so every surface agrees. Reported in #262.
  • +
  • Local file scans report why they fail. Scanning a file:// page with file-URL access off used to leave the popup stuck on "Scanning…" forever. The popup now shows the real reason, with a permission hint for local files, and clears it on the next scan. Reported in #258.
  • +
  • Popup matches the Kinpaku design system. The toolbar popup picks up the canonical carved-tile mark and light/dark theming that follows your system preference. Reported in #260.
  • +
+
+
Extension v1.2.0June 14, 2026