Bump version to 2.0.0

This commit is contained in:
murashit 2026-05-25 17:14:09 +09:00
parent 35113a307f
commit 11f12038b7
5 changed files with 13 additions and 5 deletions

7
.github/release-notes/2.0.0.md vendored Normal file
View file

@ -0,0 +1,7 @@
## Changes
- Added a dedicated Codex Threads sidebar view for browsing non-archived threads, live open-panel status, and quick resume.
- Restored open Codex Panel threads from Obsidian workspace state without blocking startup.
- Unified thread resume behavior so already-open threads are focused instead of duplicated, while idle empty panels can be reused.
- Renamed the new-chat command and composer action to "Start new chat" and kept empty panels unstarted until the first message is sent.
- Improved thread history, rename, archive, and slash command behavior for clearer thread lifecycle handling.

View file

@ -1,7 +1,7 @@
{
"id": "codex-panel",
"name": "Codex Panel",
"version": "1.2.4",
"version": "2.0.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": "1.2.4",
"version": "2.0.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "codex-panel",
"version": "1.2.4",
"version": "2.0.0",
"license": "Apache-2.0",
"devDependencies": {
"@eslint/js": "^9.39.4",

View file

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

View file

@ -22,5 +22,6 @@
"1.2.1": "1.12.0",
"1.2.2": "1.12.0",
"1.2.3": "1.12.0",
"1.2.4": "1.12.0"
"1.2.4": "1.12.0",
"2.0.0": "1.12.0"
}