From 74c5cb3b4103628b525a928cc5006ff6844dbe22 Mon Sep 17 00:00:00 2001 From: Paul Bakaus Date: Wed, 4 Mar 2026 09:23:36 -0800 Subject: [PATCH] Add changelog section and bump version to 1.1.0 Co-Authored-By: Claude Opus 4.6 --- package.json | 8 ++-- public/css/styles.css | 67 +++++++++++++++++++++++++++++++- public/css/workflow.css | 86 +++++++++++++++++++++++++++++++++++++++++ public/index.html | 37 +++++++++++++++++- 4 files changed, 193 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 4f57f1811..f000ad5e5 100644 --- a/package.json +++ b/package.json @@ -1,9 +1,10 @@ { "name": "impeccable", - "version": "1.0.0", + "version": "1.1.0", "author": "Paul Bakaus", "dependencies": { - "motion": "^12.23.26" + "motion": "^12.23.26", + "playwright": "^1.57.0" }, "description": "Cross-provider design skills and commands for LLM-powered development tools", "keywords": [ @@ -22,7 +23,8 @@ "rebuild": "bun run clean && bun run build", "dev": "bun run server/index.js", "start": "bun --production run server/index.js", - "test": "bun test" + "test": "bun test", + "screenshot": "bun run scripts/screenshot-antipatterns.js" }, "type": "module" } diff --git a/public/css/styles.css b/public/css/styles.css index 3dda002ab..42da6bef2 100644 --- a/public/css/styles.css +++ b/public/css/styles.css @@ -1,4 +1,4 @@ -/*! tailwindcss v4.1.18 | MIT License | https://tailwindcss.com */ +/*! tailwindcss v4.2.1 | MIT License | https://tailwindcss.com */ .split-container::before { content: ''; position: absolute; @@ -650,6 +650,71 @@ width: 100%; } } +.hero-version-link { + font-size: 0.8125rem; + color: var(--color-ash); + margin-top: var(--spacing-sm); +} +.hero-version-link a { + color: var(--color-ash); + text-decoration: none; + border-bottom: 1px solid transparent; + transition: color 0.2s ease, border-color 0.2s ease; +} +.hero-version-link a:hover { + color: var(--color-accent); + border-bottom-color: var(--color-accent); +} +.changelog-section { + position: relative; + padding: var(--spacing-xl) 0; + border-top: 1px solid var(--color-mist); +} +.changelog-list { + display: flex; + flex-direction: column; + gap: 0; +} +.changelog-entry { + padding: var(--spacing-md) 0; + border-bottom: 1px solid var(--color-mist); +} +.changelog-entry:first-child { + border-top: 1px solid var(--color-mist); +} +.changelog-version-header { + display: flex; + align-items: baseline; + gap: var(--spacing-sm); + margin-bottom: var(--spacing-sm); +} +.changelog-version { + font-family: var(--font-mono); + font-size: 1.125rem; + font-weight: 600; + color: var(--color-ink); +} +.changelog-date { + font-size: 0.8125rem; + color: var(--color-ash); +} +.changelog-items { + margin: 0; + padding-left: var(--spacing-md); + color: var(--color-charcoal); + line-height: 1.7; +} +.changelog-items li { + margin-bottom: var(--spacing-xs); +} +.changelog-items code { + font-family: var(--font-mono); + font-size: 0.875em; + background: var(--color-mist); + padding: 2px 6px; + border-radius: 3px; + color: var(--color-ink); +} .faq-section { position: relative; padding: var(--spacing-xl) 0; diff --git a/public/css/workflow.css b/public/css/workflow.css index 10e0f01dc..ae27d1891 100644 --- a/public/css/workflow.css +++ b/public/css/workflow.css @@ -688,6 +688,92 @@ } } +/* ============================================ + HERO VERSION LINK + ============================================ */ + +.hero-version-link { + font-size: 0.8125rem; + color: var(--color-ash); + margin-top: var(--spacing-sm); +} + +.hero-version-link a { + color: var(--color-ash); + text-decoration: none; + border-bottom: 1px solid transparent; + transition: color 0.2s ease, border-color 0.2s ease; +} + +.hero-version-link a:hover { + color: var(--color-accent); + border-bottom-color: var(--color-accent); +} + +/* ============================================ + CHANGELOG SECTION + ============================================ */ + +.changelog-section { + position: relative; + padding: var(--spacing-xl) 0; + border-top: 1px solid var(--color-mist); +} + +.changelog-list { + display: flex; + flex-direction: column; + gap: 0; +} + +.changelog-entry { + padding: var(--spacing-md) 0; + border-bottom: 1px solid var(--color-mist); +} + +.changelog-entry:first-child { + border-top: 1px solid var(--color-mist); +} + +.changelog-version-header { + display: flex; + align-items: baseline; + gap: var(--spacing-sm); + margin-bottom: var(--spacing-sm); +} + +.changelog-version { + font-family: var(--font-mono); + font-size: 1.125rem; + font-weight: 600; + color: var(--color-ink); +} + +.changelog-date { + font-size: 0.8125rem; + color: var(--color-ash); +} + +.changelog-items { + margin: 0; + padding-left: var(--spacing-md); + color: var(--color-charcoal); + line-height: 1.7; +} + +.changelog-items li { + margin-bottom: var(--spacing-xs); +} + +.changelog-items code { + font-family: var(--font-mono); + font-size: 0.875em; + background: var(--color-mist); + padding: 2px 6px; + border-radius: 3px; + color: var(--color-ink); +} + /* ============================================ FAQ SECTION ============================================ */ diff --git a/public/index.html b/public/index.html index 42812c5a2..8d8ce88fe 100644 --- a/public/index.html +++ b/public/index.html @@ -70,6 +70,7 @@ + @@ -280,10 +281,43 @@ + +
+
+ 05 +

What's New

+
+ +
+
+
+ v1.1.0 + March 4, 2026 +
+
    +
  • Renamed /simplify to /distill to avoid Claude Code conflict
  • +
+
+ +
+
+ v1.0.0 + February 28, 2026 +
+
    +
  • Initial release with enhanced frontend-design skill
  • +
  • 17 design commands: /polish, /audit, /distill, /bolder, and more
  • +
  • Support for Cursor, Claude Code, Gemini CLI, and Codex CLI
  • +
  • Interactive command cheatsheet
  • +
+
+
+
+
- 05 + 06

Frequently Asked Questions

@@ -368,6 +402,7 @@ Commands Cheatsheet Downloads + Changelog GitHub