Release v0.3.0
This commit is contained in:
parent
a9c096a69d
commit
f495f4072a
|
|
@ -1,6 +1,6 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## Unreleased
|
## 0.3.0 (2026-03-01)
|
||||||
|
|
||||||
### Performance
|
### Performance
|
||||||
|
|
||||||
|
|
@ -10,9 +10,11 @@
|
||||||
- Only enable `preserveDrawingBuffer` in test mode
|
- Only enable `preserveDrawingBuffer` in test mode
|
||||||
- Hoist URL param parsing out of render loop
|
- 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)
|
## 0.2.1 (2026-03-01)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"$schema": "https://schema.tauri.app/config/2",
|
"$schema": "https://schema.tauri.app/config/2",
|
||||||
"productName": "OpenPencil",
|
"productName": "OpenPencil",
|
||||||
"version": "0.2.2",
|
"version": "0.3.0",
|
||||||
"identifier": "net.dannote.open-pencil",
|
"identifier": "net.dannote.open-pencil",
|
||||||
"build": {
|
"build": {
|
||||||
"beforeDevCommand": "bun run dev",
|
"beforeDevCommand": "bun run dev",
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "open-pencil-app",
|
"name": "open-pencil-app",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "0.2.2",
|
"version": "0.3.0",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"workspaces": [
|
"workspaces": [
|
||||||
"packages/*"
|
"packages/*"
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@open-pencil/cli",
|
"name": "@open-pencil/cli",
|
||||||
"version": "0.2.2",
|
"version": "0.3.0",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"bin": {
|
"bin": {
|
||||||
"open-pencil": "./src/index.ts"
|
"open-pencil": "./src/index.ts"
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@open-pencil/core",
|
"name": "@open-pencil/core",
|
||||||
"version": "0.2.2",
|
"version": "0.3.0",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": {
|
".": {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue