diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a9949e..a266407 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.1.7 - 2026-07-24 + +- Render unresolved Agent preparation on one active surface: keep a single compact activity bubble while substantive execution and approvals remain in the timeline. + ## 0.1.6 - 2026-07-23 - Keep regenerate preparation activity transient: show only the current unresolved activity while work is active, replace it with the first streamed reply, and retain terminal evidence in the execution timeline. diff --git a/README.md b/README.md index 4e868cd..45f9d17 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ They consume the same `.cutout` state. They do not control each other through GU ## Install the macOS app -Download the Apple Silicon DMG from [Cutout v0.1.6](https://github.com/Nebutra/cutout/releases/tag/v0.1.6), then drag Cutout into Applications. +Download the Apple Silicon DMG from [Cutout v0.1.7](https://github.com/Nebutra/cutout/releases/tag/v0.1.7), then drag Cutout into Applications. The public macOS build is Developer ID signed, Apple notarized, and stapled before publication. @@ -32,7 +32,7 @@ Windows, updater-signature, reviewer, and privacy release gates. Use Codex CLI `0.144.5` or a compatible plugin-enabled version. ```bash -codex plugin marketplace add Nebutra/cutout --ref v0.1.6 +codex plugin marketplace add Nebutra/cutout --ref v0.1.7 codex plugin add cutout@cutout-local codex plugin list ``` @@ -40,7 +40,7 @@ codex plugin list `codex plugin list` should show: ```text -cutout@cutout-local installed, enabled 0.1.6 +cutout@cutout-local installed, enabled 0.1.7 ``` Codex captures plugin Skills and MCP tools when a conversation starts. Open a new conversation after installing or updating the plugin. diff --git a/README.zh-CN.md b/README.zh-CN.md index 649e66d..8002c7d 100644 --- a/README.zh-CN.md +++ b/README.zh-CN.md @@ -20,7 +20,7 @@ Cutout 的权威数据不是聊天记录或截图,而是项目中的 `.cutout` ## 安装 macOS App -从 [Cutout v0.1.6 Release](https://github.com/Nebutra/cutout/releases/tag/v0.1.6) 下载 Apple Silicon DMG,然后将 Cutout 拖入 Applications。 +从 [Cutout v0.1.7 Release](https://github.com/Nebutra/cutout/releases/tag/v0.1.7) 下载 Apple Silicon DMG,然后将 Cutout 拖入 Applications。 公开的 macOS 构建会在发布前完成 Developer ID 签名、Apple 公证和票据装订。 @@ -32,7 +32,7 @@ macOS、Windows、更新器签名、审查人与隐私发布门槛见 需要 Codex CLI `0.144.5` 或兼容的插件版本。 ```bash -codex plugin marketplace add Nebutra/cutout --ref v0.1.6 +codex plugin marketplace add Nebutra/cutout --ref v0.1.7 codex plugin add cutout@cutout-local codex plugin list ``` @@ -40,7 +40,7 @@ codex plugin list `codex plugin list` 应显示: ```text -cutout@cutout-local installed, enabled 0.1.6 +cutout@cutout-local installed, enabled 0.1.7 ``` Codex 在会话开始时捕获插件的 Skill 和 MCP 工具。安装或更新插件后,请新建会话。 diff --git a/cutout.agent-capabilities.json b/cutout.agent-capabilities.json index 61785cb..e51e7b1 100644 --- a/cutout.agent-capabilities.json +++ b/cutout.agent-capabilities.json @@ -4,7 +4,7 @@ "product": { "name": "Cutout", "positioning": "Agent-native Design OS with a visual workbench and repo-native control plane", - "packageVersion": "0.1.6" + "packageVersion": "0.1.7" }, "protocol": { "control": "cutout.control.v1", diff --git a/package.json b/package.json index 77e9970..38b8920 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "cutout", "private": true, "license": "Apache-2.0", - "version": "0.1.6", + "version": "0.1.7", "type": "module", "scripts": { "dev": "vite", diff --git a/plugins/cutout/.codex-plugin/plugin.json b/plugins/cutout/.codex-plugin/plugin.json index 89fad12..c7a23e4 100644 --- a/plugins/cutout/.codex-plugin/plugin.json +++ b/plugins/cutout/.codex-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "cutout", - "version": "0.1.6", + "version": "0.1.7", "description": "Repo-native Cutout design control for Codex", "author": { "name": "Cutout" diff --git a/plugins/cutout/runtime-data/cutout.agent-capabilities.json b/plugins/cutout/runtime-data/cutout.agent-capabilities.json index 61785cb..e51e7b1 100644 --- a/plugins/cutout/runtime-data/cutout.agent-capabilities.json +++ b/plugins/cutout/runtime-data/cutout.agent-capabilities.json @@ -4,7 +4,7 @@ "product": { "name": "Cutout", "positioning": "Agent-native Design OS with a visual workbench and repo-native control plane", - "packageVersion": "0.1.6" + "packageVersion": "0.1.7" }, "protocol": { "control": "cutout.control.v1", diff --git a/plugins/cutout/runtime/runtime-build.json b/plugins/cutout/runtime/runtime-build.json index bb9db11..e963472 100644 --- a/plugins/cutout/runtime/runtime-build.json +++ b/plugins/cutout/runtime/runtime-build.json @@ -1,6 +1,6 @@ { "protocol": "cutout.codex-plugin-runtime.v1", - "packageVersion": "0.1.6", + "packageVersion": "0.1.7", "sourceHashes": { "node_modules/.pnpm/js-sha256@0.10.1/node_modules/js-sha256/src/sha256.js": "10dbc92fbdb2ed3939c16ea9c726c7653f5ec7dfdb010c9904404268cb424a08", "node_modules/.pnpm/yaml@2.9.0/node_modules/yaml/dist/compose/compose-collection.js": "a7db11a1a7987d6412df8adbbb85ccd4370171f82265703b2b6af2d13c45d646", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index f8189ec..e963ebd 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -100,7 +100,7 @@ checksum = "2a4385e2e34eb35d6b3efe798b9eb88096925d87726c0798709bf56d9ed84af3" [[package]] name = "app" -version = "0.1.6" +version = "0.1.7" dependencies = [ "base64 0.22.1", "futures-util", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 3dc907e..c29bdd9 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "app" -version = "0.1.6" +version = "0.1.7" default-run = "app" description = "Local-first AI design production workspace" authors = ["Nebutra Team"] diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 1cccd1f..dcd4c8f 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "../node_modules/@tauri-apps/cli/config.schema.json", "productName": "Cutout", - "version": "0.1.6", + "version": "0.1.7", "identifier": "com.nebutra.cutout", "build": { "frontendDist": "../dist",