Release v0.3.0
This commit is contained in:
parent
a9c096a69d
commit
f495f4072a
|
|
@ -1,6 +1,6 @@
|
|||
# Changelog
|
||||
|
||||
## Unreleased
|
||||
## 0.3.0 (2026-03-01)
|
||||
|
||||
### Performance
|
||||
|
||||
|
|
@ -10,9 +10,11 @@
|
|||
- Only enable `preserveDrawingBuffer` in test mode
|
||||
- Hoist URL param parsing out of render loop
|
||||
|
||||
### Bug Fixes
|
||||
### Fixes
|
||||
|
||||
- Fix trackpad pinch-to-zoom on Safari macOS
|
||||
- Fix npm publish: use pnpm for workspace dependency resolution with provenance
|
||||
- CLI version now reads from package.json instead of hardcoded value
|
||||
- Update README: accurate app size (~7 MB), streamlined feature list, current project structure
|
||||
|
||||
## 0.2.1 (2026-03-01)
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"$schema": "https://schema.tauri.app/config/2",
|
||||
"productName": "OpenPencil",
|
||||
"version": "0.2.2",
|
||||
"version": "0.3.0",
|
||||
"identifier": "net.dannote.open-pencil",
|
||||
"build": {
|
||||
"beforeDevCommand": "bun run dev",
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "open-pencil-app",
|
||||
"private": true,
|
||||
"version": "0.2.2",
|
||||
"version": "0.3.0",
|
||||
"type": "module",
|
||||
"workspaces": [
|
||||
"packages/*"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@open-pencil/cli",
|
||||
"version": "0.2.2",
|
||||
"version": "0.3.0",
|
||||
"type": "module",
|
||||
"bin": {
|
||||
"open-pencil": "./src/index.ts"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@open-pencil/core",
|
||||
"version": "0.2.2",
|
||||
"version": "0.3.0",
|
||||
"type": "module",
|
||||
"exports": {
|
||||
".": {
|
||||
|
|
|
|||
Loading…
Reference in a new issue