chore(release): 5.1.0

This commit is contained in:
murashit 2026-07-18 11:56:40 +09:00
parent d8f4f8a899
commit 6524409313
7 changed files with 14 additions and 7 deletions

6
.github/release-notes/5.1.0.md vendored Normal file
View file

@ -0,0 +1,6 @@
## Changes
- Added search to Codex Panel settings.
- Large web, thread, selection, and vault references are now bounded predictably, report truncation when needed, and keep their context details after reopening a thread.
- Paste and drop attachments now preserve their intended insertion point while files are being saved, with clearer composer editing state.
- Improved reliability when switching threads, leaving running subagents, or changing runtime and app-server settings, preventing stale results and lost updates.

View file

@ -77,7 +77,7 @@ Use `/help` for the current slash command list.
| -------------------------------------- | --------- | --------------------------------------------------------------------------------------------------- |
| `manifest.minAppVersion` | `1.12.0` | Minimum Obsidian desktop version declared for plugin loading. |
| `obsidian` API types | `1.12.3` | TypeScript API package used for compile-time checks; kept in the same minor as `manifest` baseline. |
| `codexAppServer.testedCliVersion` | `0.144.4` | Exact CLI patch used to generate and verify bindings; compatibility is tracked by minor version. |
| `codexAppServer.testedCliVersion` | `0.144.5` | Exact CLI patch used to generate and verify bindings; compatibility is tracked by minor version. |
Codex Panel depends on the experimental `codex app-server` API.

View file

@ -1,7 +1,7 @@
{
"id": "codex-panel",
"name": "Codex Panel",
"version": "5.0.4",
"version": "5.1.0",
"minAppVersion": "1.12.0",
"description": "Codex in your sidebar.",
"author": "murashit",

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "codex-panel",
"version": "5.0.4",
"version": "5.1.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "codex-panel",
"version": "5.0.4",
"version": "5.1.0",
"license": "Apache-2.0",
"dependencies": {
"@tanstack/query-core": "^5.101.2",

View file

@ -1,6 +1,6 @@
{
"name": "codex-panel",
"version": "5.0.4",
"version": "5.1.0",
"description": "Codex in your Obsidian sidebar.",
"main": "main.js",
"author": "murashit",

View file

@ -1,6 +1,6 @@
{
"codexAppServer": {
"testedCliVersion": "0.144.4",
"testedCliVersion": "0.144.5",
"typeGeneration": {
"arguments": ["app-server", "generate-ts", "--experimental"]
},

View file

@ -83,5 +83,6 @@
"5.0.1": "1.12.0",
"5.0.2": "1.12.0",
"5.0.3": "1.12.0",
"5.0.4": "1.12.0"
"5.0.4": "1.12.0",
"5.1.0": "1.12.0"
}