Bump version to 2.2.0

This commit is contained in:
murashit 2026-05-27 00:01:50 +09:00
parent 62139a9e7c
commit 0d5e6dd51a
5 changed files with 12 additions and 5 deletions

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

@ -0,0 +1,6 @@
## Changes
- Added **Codex Panel: Open thread...** for searching recent non-archived threads and opening them in the current panel or a new panel.
- Improved thread list workflows with live open-thread status, consistent rename editing, auto-name actions, and two-step archive choices with optional Markdown export.
- Improved wikilink handling with Obsidian fuzzy search suggestions and Obsidian link parsing before sending file mentions to Codex.
- Polished chat panel focus, hover, tooltip, and accessibility behavior around thread and toolbar actions.

View file

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

View file

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

View file

@ -26,5 +26,6 @@
"2.0.0": "1.12.0",
"2.1.0": "1.12.0",
"2.1.1": "1.12.0",
"2.1.2": "1.12.0"
"2.1.2": "1.12.0",
"2.2.0": "1.12.0"
}