kandown 0.32.0 → 0.32.2
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 +12 -0
- package/bin/kandown.js +869 -3368
- package/bin/tui.js +1 -0
- package/dist/index.html +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.32.2 — 2026-07-21 — "Reliable Auto-Updater Engine"
|
|
4
|
+
|
|
5
|
+
- **Fixed**: **Auto-Updater Execution Gate** — removed command filtering logic in CLI main router that previously bypassed update checks for scripted commands like `kandown work`, `kandown list`, and `kandown doctor`.
|
|
6
|
+
- **Fixed**: **Home Directory Update Cache** — moved `.update-check.json` and `.update.lock` out of project/package directories to user homedir `~/.kandown/` so permissions and working directories never block registry checks.
|
|
7
|
+
- **Fixed**: **Compiled Version Token Precedence** — updated `getCurrentVersion()` to prioritize `KANDOWN_VERSION` over reading random `package.json` files in `CWD`, preventing false version match evaluation during auto-updates.
|
|
8
|
+
|
|
9
|
+
## 0.32.1 — 2026-07-21 — "CLI Modularization & Updater Speed"
|
|
10
|
+
|
|
11
|
+
- **Fixed**: **Auto-Updater Check Throttle** — reduced update check throttle from 24h to 10 minutes (`UPDATE_CHECK_INTERVAL_MS = 10m`) and prioritized global `npm install -g kandown --force` for npm setups so release updates trigger promptly when launching Kandown.
|
|
12
|
+
- **Added**: **`kandown upgrade` Command Alias** — added `upgrade` as an alias for `kandown update`.
|
|
13
|
+
- **Refactored**: **CLI Modular Architecture** — refactored monolithic `bin/kandown.js` (3,500+ lines) into clean, modular TypeScript files in `src/cli/` (`cli.ts`, `lib/updater.ts`, `lib/board-reader.ts`, `lib/daemon.ts`). Built automatically into `bin/kandown.js` via `tsup`.
|
|
14
|
+
|
|
3
15
|
## 0.32.0 — 2026-07-21 — "38 Modern Fable UI Themes Collection"
|
|
4
16
|
|
|
5
17
|
- **Added**: **30 New Curated Fable UI Theme Presets** — expanded Kandown's built-in theme library from 8 to **38 distinct, ultra-crafted modern themes** inspired by iconic tech products, design movements, nature, elements, and luxury aesthetics:
|