From 202328ffacf8f68fd9f690dff772d86a7da5498d Mon Sep 17 00:00:00 2001 From: murashit Date: Sun, 28 Jun 2026 21:13:54 +0900 Subject: [PATCH] Bump version to 4.0.0 --- .github/release-notes/4.0.0.md | 6 ++++++ manifest.json | 2 +- package-lock.json | 4 ++-- package.json | 2 +- versions.json | 3 ++- 5 files changed, 12 insertions(+), 5 deletions(-) create mode 100644 .github/release-notes/4.0.0.md diff --git a/.github/release-notes/4.0.0.md b/.github/release-notes/4.0.0.md new file mode 100644 index 00000000..c01c614f --- /dev/null +++ b/.github/release-notes/4.0.0.md @@ -0,0 +1,6 @@ +## Changes + +- Added `@active-note` and `@selection` composer completions for bringing the current Obsidian editor context into a Codex turn, including selected Markdown text as additional turn context. +- Added paste and drag-and-drop attachment support in the composer. Images are saved to the configured attachment folder as Obsidian embeds, while other files are inserted as wikilinks and sent to Codex as file mentions. +- Improved selection rewrite diffs and fixed settings dynamic-section display issues. +- Improved app-server diagnostics and cached metadata handling so transient probe failures and context changes do not wipe useful connection, tool, or thread information. diff --git a/manifest.json b/manifest.json index 8d30d84c..607b5a7a 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "codex-panel", "name": "Codex Panel", - "version": "3.4.6", + "version": "4.0.0", "minAppVersion": "1.12.0", "description": "Codex in your sidebar.", "author": "murashit", diff --git a/package-lock.json b/package-lock.json index d135736e..cd6be97e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "codex-panel", - "version": "3.4.6", + "version": "4.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "codex-panel", - "version": "3.4.6", + "version": "4.0.0", "license": "Apache-2.0", "dependencies": { "@preact/signals": "^2.9.2", diff --git a/package.json b/package.json index 1c34014b..acaca586 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "codex-panel", - "version": "3.4.6", + "version": "4.0.0", "description": "Codex in your Obsidian sidebar.", "main": "main.js", "author": "murashit", diff --git a/versions.json b/versions.json index a88ee13b..c6d34c37 100644 --- a/versions.json +++ b/versions.json @@ -60,5 +60,6 @@ "3.4.3": "1.12.0", "3.4.4": "1.12.0", "3.4.5": "1.12.0", - "3.4.6": "1.12.0" + "3.4.6": "1.12.0", + "4.0.0": "1.12.0" }