Bump version to 2.2.1

This commit is contained in:
murashit 2026-05-27 12:25:53 +09:00
parent fd9078c3cd
commit b39ff24bbd
5 changed files with 15 additions and 5 deletions

9
.github/release-notes/2.2.1.md vendored Normal file
View file

@ -0,0 +1,9 @@
## Changes
- Fixed file link handling in chat responses (thanks @nursandiid, #2):
- Vault-internal absolute paths now open correctly.
- Vault-external absolute paths no longer create `/Users/...` notes.
- Vault config paths are not opened from rendered chat links.
- Normalized archive export links to avoid unsafe absolute file links in exported Markdown.
- Added regression coverage for wikilink path handling with nested or duplicate note names (thanks @nursandiid, #3).
- Polished runtime model control sizing and toolbar labels.

View file

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

View file

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

View file

@ -27,5 +27,6 @@
"2.1.0": "1.12.0",
"2.1.1": "1.12.0",
"2.1.2": "1.12.0",
"2.2.0": "1.12.0"
"2.2.0": "1.12.0",
"2.2.1": "1.12.0"
}