mirror of
https://github.com/murashit/codex-panel.git
synced 2026-07-22 06:57:10 +00:00
chore(release): 5.1.0
This commit is contained in:
parent
d8f4f8a899
commit
6524409313
7 changed files with 14 additions and 7 deletions
6
.github/release-notes/5.1.0.md
vendored
Normal file
6
.github/release-notes/5.1.0.md
vendored
Normal 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.
|
||||
|
|
@ -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.
|
||||
|
||||
|
|
|
|||
|
|
@ -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
4
package-lock.json
generated
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"codexAppServer": {
|
||||
"testedCliVersion": "0.144.4",
|
||||
"testedCliVersion": "0.144.5",
|
||||
"typeGeneration": {
|
||||
"arguments": ["app-server", "generate-ts", "--experimental"]
|
||||
},
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue