Release v0.12.1
This commit is contained in:
parent
8fbc2939e3
commit
8fa34fb0b8
|
|
@ -2,8 +2,14 @@
|
|||
|
||||
## Unreleased
|
||||
|
||||
## 0.12.1 — 2026-05-19
|
||||
|
||||
### Fixes
|
||||
|
||||
- Fix `.fig` round-trips for OpenPencil component sets and variable bindings, and recompute imported layouts after opening documents.
|
||||
- Report desktop/MCP package version mismatches explicitly and include package-manager-aware install guidance from the MCP server.
|
||||
- Support scoped MCP `save_file({ path })` workflows while keeping file saving in the desktop app.
|
||||
- Use native Tauri path handling for save parent directories so Unicode and Windows paths are handled correctly.
|
||||
- Fix the web font picker so Google Fonts remain available in Safari, local font access is requested on first open when supported, font sources are labeled, and Google font previews load lazily for visible rows.
|
||||
- Fix background blur rendering so it blurs the backdrop behind a layer instead of applying a no-op content filter, and keep effect parameter controls visible in the properties panel.
|
||||
|
||||
|
|
|
|||
2
desktop/Cargo.lock
generated
2
desktop/Cargo.lock
generated
|
|
@ -2639,7 +2639,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "open_pencil"
|
||||
version = "0.12.0"
|
||||
version = "0.12.1"
|
||||
dependencies = [
|
||||
"fix-path-env",
|
||||
"font-kit",
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"$schema": "https://schema.tauri.app/config/2",
|
||||
"productName": "OpenPencil",
|
||||
"version": "0.12.0",
|
||||
"version": "0.12.1",
|
||||
"identifier": "net.dannote.open-pencil",
|
||||
"build": {
|
||||
"beforeDevCommand": "bun run generate:tauri-menu && bun run dev",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "open-pencil-app",
|
||||
"version": "0.12.0",
|
||||
"version": "0.12.1",
|
||||
"private": true,
|
||||
"license": "MIT",
|
||||
"workspaces": [
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@open-pencil/cli",
|
||||
"version": "0.12.0",
|
||||
"version": "0.12.1",
|
||||
"license": "MIT",
|
||||
"type": "module",
|
||||
"imports": {
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@open-pencil/core",
|
||||
"version": "0.12.0",
|
||||
"version": "0.12.1",
|
||||
"license": "MIT",
|
||||
"type": "module",
|
||||
"imports": {
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@open-pencil/mcp",
|
||||
"version": "0.12.0",
|
||||
"version": "0.12.1",
|
||||
"license": "MIT",
|
||||
"type": "module",
|
||||
"imports": {
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@open-pencil/vue",
|
||||
"version": "0.12.0",
|
||||
"version": "0.12.1",
|
||||
"license": "MIT",
|
||||
"type": "module",
|
||||
"imports": {
|
||||
|
|
|
|||
Loading…
Reference in a new issue