1.24.0
This commit is contained in:
parent
84d78e4d56
commit
0eebdddb5b
18 changed files with 131 additions and 15 deletions
|
@ -1,5 +1,18 @@
|
|||
## 1.2.4
|
||||
|
||||
## 1.24.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- - Adds `components` prop to Tldraw component (for custom Cursor, etc) @jamesbvaughan
|
||||
- Adds Thai language @watchakorn-18k
|
||||
- Fix event bug on `onRightPointCanvas`
|
||||
- Fix bug with bad data in document with up-to-date version number
|
||||
- Fix bug with arrow bindings
|
||||
- Improves freehand line performance
|
||||
- Improves performance of shape tree
|
||||
- Improved .tldr file size (strip white space)
|
||||
|
||||
## 1.23.5
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
"name": "tldraw-vscode",
|
||||
"displayName": "tldraw",
|
||||
"description": "The tldraw Extension for VS Code.",
|
||||
"version": "1.23.5",
|
||||
"version": "1.24.0",
|
||||
"license": "MIT",
|
||||
"publisher": "tldraw-org",
|
||||
"repository": {
|
||||
|
|
|
@ -1,5 +1,13 @@
|
|||
# @tldraw/www
|
||||
|
||||
## 1.7.20
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @tldraw/core@1.19.0
|
||||
- @tldraw/tldraw@1.25.0
|
||||
|
||||
## 1.7.19
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@tldraw/www",
|
||||
"version": "1.7.19",
|
||||
"version": "1.7.20",
|
||||
"private": true,
|
||||
"description": "A tiny little drawing app (site).",
|
||||
"repository": {
|
||||
|
|
|
@ -1,5 +1,14 @@
|
|||
# @tldraw/core-example-advanced
|
||||
|
||||
## 1.7.8
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @tldraw/core@1.19.0
|
||||
- @tldraw/intersect@1.8.0
|
||||
- @tldraw/vec@1.8.0
|
||||
|
||||
## 1.7.7
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"version": "1.7.7",
|
||||
"version": "1.7.8",
|
||||
"name": "@tldraw/core-example-advanced",
|
||||
"description": "An advanced example project for @tldraw/core.",
|
||||
"author": "@steveruizok",
|
||||
|
|
|
@ -1,5 +1,13 @@
|
|||
# @tldraw/core-example-simple
|
||||
|
||||
## 1.8.8
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @tldraw/core@1.19.0
|
||||
- @tldraw/vec@1.8.0
|
||||
|
||||
## 1.8.7
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"version": "1.8.7",
|
||||
"version": "1.8.8",
|
||||
"name": "@tldraw/core-example-simple",
|
||||
"description": "A simple example project for @tldraw/core.",
|
||||
"author": "@steveruizok",
|
||||
|
|
|
@ -1,5 +1,13 @@
|
|||
# @tldraw/tldraw-example
|
||||
|
||||
## 1.7.11
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @tldraw/core@1.19.0
|
||||
- @tldraw/tldraw@1.25.0
|
||||
|
||||
## 1.7.10
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"version": "1.7.10",
|
||||
"version": "1.7.11",
|
||||
"name": "@tldraw/tldraw-example",
|
||||
"description": "An advanced example project for @tldraw/core.",
|
||||
"author": "@steveruizok",
|
||||
|
|
|
@ -1,5 +1,24 @@
|
|||
# Changelog
|
||||
|
||||
## 1.19.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- - Adds `components` prop to Tldraw component (for custom Cursor, etc) @jamesbvaughan
|
||||
- Adds Thai language @watchakorn-18k
|
||||
- Fix event bug on `onRightPointCanvas`
|
||||
- Fix bug with bad data in document with up-to-date version number
|
||||
- Fix bug with arrow bindings
|
||||
- Improves freehand line performance
|
||||
- Improves performance of shape tree
|
||||
- Improved .tldr file size (strip white space)
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @tldraw/intersect@1.8.0
|
||||
- @tldraw/vec@1.8.0
|
||||
|
||||
## 1.18.4
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"version": "1.18.4",
|
||||
"version": "1.19.0",
|
||||
"name": "@tldraw/core",
|
||||
"description": "The tldraw core renderer and utilities.",
|
||||
"author": "@steveruizok",
|
||||
|
@ -32,8 +32,8 @@
|
|||
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
|
||||
},
|
||||
"dependencies": {
|
||||
"@tldraw/intersect": "^1.7.1",
|
||||
"@tldraw/vec": "^1.7.1",
|
||||
"@tldraw/intersect": "^1.8.0",
|
||||
"@tldraw/vec": "^1.8.0",
|
||||
"@use-gesture/react": "^10.2.19",
|
||||
"perfect-freehand": "^1.1.0"
|
||||
},
|
||||
|
|
|
@ -1,5 +1,23 @@
|
|||
# Changelog
|
||||
|
||||
## 1.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- - Adds `components` prop to Tldraw component (for custom Cursor, etc) @jamesbvaughan
|
||||
- Adds Thai language @watchakorn-18k
|
||||
- Fix event bug on `onRightPointCanvas`
|
||||
- Fix bug with bad data in document with up-to-date version number
|
||||
- Fix bug with arrow bindings
|
||||
- Improves freehand line performance
|
||||
- Improves performance of shape tree
|
||||
- Improved .tldr file size (strip white space)
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @tldraw/vec@1.8.0
|
||||
|
||||
## 1.7.1
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"version": "1.7.1",
|
||||
"version": "1.8.0",
|
||||
"name": "@tldraw/intersect",
|
||||
"description": "2D intersection utilities for TLDraw and maybe you, too.",
|
||||
"author": "@steveruizok",
|
||||
|
@ -29,7 +29,7 @@
|
|||
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
|
||||
},
|
||||
"dependencies": {
|
||||
"@tldraw/vec": "^1.7.1"
|
||||
"@tldraw/vec": "^1.8.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@tldraw/vec": "*",
|
||||
|
|
|
@ -1,5 +1,25 @@
|
|||
# Changelog
|
||||
|
||||
## 1.25.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- - Adds `components` prop to Tldraw component (for custom Cursor, etc) @jamesbvaughan
|
||||
- Adds Thai language @watchakorn-18k
|
||||
- Fix event bug on `onRightPointCanvas`
|
||||
- Fix bug with bad data in document with up-to-date version number
|
||||
- Fix bug with arrow bindings
|
||||
- Improves freehand line performance
|
||||
- Improves performance of shape tree
|
||||
- Improved .tldr file size (strip white space)
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @tldraw/core@1.19.0
|
||||
- @tldraw/intersect@1.8.0
|
||||
- @tldraw/vec@1.8.0
|
||||
|
||||
## 1.24.5
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@tldraw/tldraw",
|
||||
"version": "1.24.5",
|
||||
"version": "1.25.0",
|
||||
"description": "A tiny little drawing app (editor)",
|
||||
"author": "@steveruizok",
|
||||
"repository": {
|
||||
|
@ -44,9 +44,9 @@
|
|||
"@radix-ui/react-popover": "^1.0.0",
|
||||
"@radix-ui/react-tooltip": "^1.0.0",
|
||||
"@stitches/react": "^1.2.8",
|
||||
"@tldraw/core": "^1.18.4",
|
||||
"@tldraw/intersect": "^1.7.1",
|
||||
"@tldraw/vec": "^1.7.1",
|
||||
"@tldraw/core": "^1.19.0",
|
||||
"@tldraw/intersect": "^1.8.0",
|
||||
"@tldraw/vec": "^1.8.0",
|
||||
"browser-fs-access": "^0.31.0",
|
||||
"idb-keyval": "^6.2.0",
|
||||
"perfect-freehand": "^1.2.0",
|
||||
|
|
|
@ -1,5 +1,18 @@
|
|||
# Changelog
|
||||
|
||||
## 1.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- - Adds `components` prop to Tldraw component (for custom Cursor, etc) @jamesbvaughan
|
||||
- Adds Thai language @watchakorn-18k
|
||||
- Fix event bug on `onRightPointCanvas`
|
||||
- Fix bug with bad data in document with up-to-date version number
|
||||
- Fix bug with arrow bindings
|
||||
- Improves freehand line performance
|
||||
- Improves performance of shape tree
|
||||
- Improved .tldr file size (strip white space)
|
||||
|
||||
## 1.7.1
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"version": "1.7.1",
|
||||
"version": "1.8.0",
|
||||
"name": "@tldraw/vec",
|
||||
"description": "2D vector utilities for TLDraw and maybe you, too.",
|
||||
"author": "@steveruizok",
|
||||
|
|
Loading…
Reference in a new issue