Release v0.11.8

This commit is contained in:
Danila Poyarkov 2026-04-23 16:15:37 +03:00
parent 8b5e372953
commit ba414e1af7
7 changed files with 14 additions and 6 deletions

View file

@ -6,6 +6,14 @@
- Fix `@open-pencil/vue` failing to import from npm — `getAbsolutePositionFull` was imported from `@open-pencil/core/canvas/coordinate`, an unexported subpath. Re-exported the function from `@open-pencil/core/canvas` and updated the vue import. - Fix `@open-pencil/vue` failing to import from npm — `getAbsolutePositionFull` was imported from `@open-pencil/core/canvas/coordinate`, an unexported subpath. Re-exported the function from `@open-pencil/core/canvas` and updated the vue import.
## 0.11.8 — 2026-04-23
### Fixes
- Fix MCP server not spawning on Windows — use `cmd /c` to resolve `.cmd` wrappers from npm global installs
- Fix MCP server and automation WebSocket not connecting on Windows/Linux — inline `__TAURI_INTERNALS__` check at call time instead of using stale module-level `IS_TAURI` constant
- Fix shell PATH not inherited by GUI app on macOS/Linux — add `fix-path-env-rs` to read shell config
## 0.11.7 — 2026-04-22 ## 0.11.7 — 2026-04-22
### Features ### Features

View file

@ -1,7 +1,7 @@
{ {
"$schema": "https://schema.tauri.app/config/2", "$schema": "https://schema.tauri.app/config/2",
"productName": "OpenPencil", "productName": "OpenPencil",
"version": "0.11.7", "version": "0.11.8",
"identifier": "net.dannote.open-pencil", "identifier": "net.dannote.open-pencil",
"build": { "build": {
"beforeDevCommand": "bun run dev", "beforeDevCommand": "bun run dev",

View file

@ -1,7 +1,7 @@
{ {
"name": "open-pencil-app", "name": "open-pencil-app",
"private": true, "private": true,
"version": "0.11.7", "version": "0.11.8",
"license": "MIT", "license": "MIT",
"type": "module", "type": "module",
"workspaces": [ "workspaces": [

View file

@ -1,6 +1,6 @@
{ {
"name": "@open-pencil/cli", "name": "@open-pencil/cli",
"version": "0.11.7", "version": "0.11.8",
"license": "MIT", "license": "MIT",
"type": "module", "type": "module",
"bin": { "bin": {

View file

@ -1,6 +1,6 @@
{ {
"name": "@open-pencil/core", "name": "@open-pencil/core",
"version": "0.11.7", "version": "0.11.8",
"license": "MIT", "license": "MIT",
"type": "module", "type": "module",
"sideEffects": false, "sideEffects": false,

View file

@ -1,6 +1,6 @@
{ {
"name": "@open-pencil/mcp", "name": "@open-pencil/mcp",
"version": "0.11.7", "version": "0.11.8",
"license": "MIT", "license": "MIT",
"type": "module", "type": "module",
"main": "./dist/server.js", "main": "./dist/server.js",

View file

@ -1,6 +1,6 @@
{ {
"name": "@open-pencil/vue", "name": "@open-pencil/vue",
"version": "0.11.7", "version": "0.11.8",
"license": "MIT", "license": "MIT",
"type": "module", "type": "module",
"exports": { "exports": {