diff --git a/.github/release-notes/2.1.0.md b/.github/release-notes/2.1.0.md new file mode 100644 index 00000000..a7b47259 --- /dev/null +++ b/.github/release-notes/2.1.0.md @@ -0,0 +1,8 @@ +## Changes + +- Added Threads view toolbar actions for opening a new empty Codex Panel and refreshing the thread list. +- Added Auto-name support when renaming threads from the Threads view. +- Improved inline thread rename editing to better match Obsidian sidebar behavior. +- Improved chat panel restoration so empty restored panels load config, model options, and the thread list after the shell opens. +- Updated thread resume behavior so selecting a thread from chat focuses an already open panel or reuses the current panel. +- Refined chat and Threads controls, including distinct new-chat/new-panel icons, clearer empty-chat copy, and runtime picker selection styling. diff --git a/manifest.json b/manifest.json index f3c3837c..6bb43c1d 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "codex-panel", "name": "Codex Panel", - "version": "2.0.0", + "version": "2.1.0", "minAppVersion": "1.12.0", "description": "Codex in your sidebar.", "author": "murashit", diff --git a/package-lock.json b/package-lock.json index 5f440c08..18a4aab0 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "codex-panel", - "version": "2.0.0", + "version": "2.1.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "codex-panel", - "version": "2.0.0", + "version": "2.1.0", "license": "Apache-2.0", "devDependencies": { "@eslint/js": "^9.39.4", diff --git a/package.json b/package.json index 6ba96218..444eb05a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "codex-panel", - "version": "2.0.0", + "version": "2.1.0", "description": "Codex in your Obsidian sidebar.", "main": "main.js", "author": "murashit", diff --git a/versions.json b/versions.json index 13c176da..b71050b4 100644 --- a/versions.json +++ b/versions.json @@ -23,5 +23,6 @@ "1.2.2": "1.12.0", "1.2.3": "1.12.0", "1.2.4": "1.12.0", - "2.0.0": "1.12.0" + "2.0.0": "1.12.0", + "2.1.0": "1.12.0" }