kandown 0.35.0 → 0.36.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,41 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.36.0 — 2026-07-26 — "Local Web App"
4
+
5
+ ### Added
6
+
7
+ - **The website demo became a real web app, and it can open your actual project.** `/demo` is gone (permanently redirected to `/app`) and the separate demo concept with it. The app opens on a disposable sample board that says so, and on browsers that support the File System Access API a prominent **Open project** action hands the session over to a real Kandown project on disk — no account, no server, no upload. The sample-to-local switch only activates once a folder has actually been selected, so cancelling the picker never destroys the sample session, and the iframe reports the selected project back to the website shell so the status bar can never claim that local changes are disposable when they are not. The sample board itself was rewritten as a categorized interactive guide to Markdown tasks, agents, handoffs, dependencies, search and the three interfaces.
8
+ - **"Choose your workflow" on the landing page** — a new section stating the direction the agent protocol is taking: today's rules become one selectable workflow among several rather than the only one, with the non-negotiable parts (dependency gating, the Markdown round-trip, archiving) inherited by every workflow. **Marked `Planned` on the page**, because it is designed and not yet shipped — see tasks t258, t259 and t260.
9
+
10
+ ### Changed
11
+
12
+ - **The hero is one product lockup.** The install command moved inside the dark frame, under the mark, so identity, promise and the command that gets it read as a single object instead of three neighbours. "Kanban + Markdown" now animates into the Kandown wordmark on a layout-stable CSS loop, and devices asking for reduced motion get the wordmark with no animation at all. The header's npm link uses the real npm asset instead of a second hand-drawn approximation of it.
13
+
14
+ ### Fixed
15
+
16
+ - **Documentation copy buttons failed wherever the Clipboard API is unavailable or denied.** The command-copy buttons already had a legacy fallback; the docs button called `navigator.clipboard` directly, so every docs copy silently failed in affected browsers and embedded webviews — including a path where the promise never settles and the button sits on "Copying" forever. Both button types now share one bounded clipboard helper with a textarea fallback. Cached Markdown is also keyed by its raw page URL, so a docs button that stays mounted across client-side navigation refetches the right content instead of copying the previous page.
17
+
18
+ ### Cleaned
19
+
20
+ - `.kandown/.undo/` — the mutation journal's runtime directory — is now ignored rather than tracked. Runtime state does not belong in a commit.
21
+
22
+ ## 0.35.1 — 2026-07-26 — "Light Identity"
23
+
24
+ ### Added
25
+
26
+ - **Homepage video storyboard**: Replaced the hand-built board and terminal mocks with black recording frames that specify the exact scenario, duration, aspect ratio, and filename for six real product clips: the hero workflow, a two-agent handoff, Markdown-to-board synchronization, and dedicated Web, TUI, and CLI demonstrations. The three interface briefs share one interactive tabbed stage so the final page will never autoplay three videos at once.
27
+
28
+ ### Changed
29
+
30
+ - **Agent-first homepage narrative**: Reordered and rewrote the landing page around long-running work that survives agent sessions, durable Markdown ownership, completion reports, handoffs, and one shared board across the Web UI, TUI, and CLI. The feature grid, final call to action, shared metadata, footer, and recording documentation now follow the same product promise.
31
+ - **One permanent light website identity**: The marketing and documentation website now uses a single warm light palette regardless of the device preference. Native controls declare `color-scheme: light`, browser chrome uses a fixed white theme color, syntax highlighting emits only the GitHub Light palette, and the animated hero shader uses one documented color path.
32
+ - **Light embedded demo**: The in-browser demo project now starts explicitly in light mode rather than inheriting `prefers-color-scheme`, keeping the transition from the website into the real Kandown application visually consistent while installed projects retain the full product theme system.
33
+ - **Video production guide**: Expanded the website README with the six expected WebM filenames, target durations, 16:10 recording dimensions, loop guidance, and the exact actions to capture in every clip.
34
+
35
+ ### Removed
36
+
37
+ - **Website dark-mode runtime**: Removed the header theme toggle, localStorage preference, pre-paint theme script, OS dark-mode listeners, `data-theme` selectors, dark CSS tokens, dual Shiki palette, shader theme observer, and View Transition wipe. A device can no longer select a different visual identity for the site.
38
+
3
39
  ## 0.35.0 — 2026-07-25 — "House Green"
4
40
 
5
41
  - **Added**: **Kandown finally has its own theme, and it is the default** — a `kandown` preset built from the brand palette registered on the website: `#88E138` brand lime (the logo arrow) as the dark-mode primary, `#7AD12A` as its light-background variant, `#0CE931` (the hero shader green) reused as the `success` token, `#F1FFB8` for accent surfaces and `#EBEBEB` for neutral borders, on 4px radius to match the website. Because lime cannot carry white text at any usable contrast, `primary-foreground` is a near-black green in both modes (7.9:1 light, 11.2:1 dark) rather than the usual white. Every other foreground/background pair passes WCAG AA in both modes.
package/bin/kandown.js CHANGED
@@ -15,7 +15,7 @@ import { spawn, execSync } from "child_process";
15
15
  import { homedir } from "os";
16
16
 
17
17
  // src/lib/version.ts
18
- var KANDOWN_VERSION = "0.35.0";
18
+ var KANDOWN_VERSION = "0.36.0";
19
19
 
20
20
  // src/cli/lib/updater.ts
21
21
  import { fileURLToPath } from "url";
package/bin/tui.js CHANGED
@@ -54963,7 +54963,7 @@ import { spawn, execSync } from "child_process";
54963
54963
  import { homedir as homedir2 } from "os";
54964
54964
 
54965
54965
  // src/lib/version.ts
54966
- var KANDOWN_VERSION = "0.35.0";
54966
+ var KANDOWN_VERSION = "0.36.0";
54967
54967
 
54968
54968
  // src/cli/lib/updater.ts
54969
54969
  import { fileURLToPath as fileURLToPath2 } from "url";