pull/961/head
Steve Ruiz 2022-09-07 15:25:47 +01:00
rodzic ef613af788
commit 34ce1ed68c
16 zmienionych plików z 96 dodań i 9 usunięć

Wyświetl plik

@ -1,5 +1,18 @@
# @tldraw/vscode-editor
## 1.12.0
### Minor Changes
- - Improve middle mouse panning
- Fix bug with assets in VS Code plugin
- Improve performance of draw-style shapes
- Fix bug with creating assets
- Fix bug with text align in labels when outputting images
- Fix bug with middle mouse panning on Linux
- Fix bug with zoom shortcuts on number pad
- Fix bug with draw and erase direction when holding shift
## 1.11.0
### Minor Changes

Wyświetl plik

@ -1,6 +1,6 @@
{
"name": "@tldraw/vscode-editor",
"version": "1.11.0",
"version": "1.12.0",
"private": true,
"description": "An an editor for the tldraw vscode extension.",
"author": "@steveruizok",

Wyświetl plik

@ -1,5 +1,18 @@
## 1.2.4
## 1.22.0
### Minor Changes
- - Improve middle mouse panning
- Fix bug with assets in VS Code plugin
- Improve performance of draw-style shapes
- Fix bug with creating assets
- Fix bug with text align in labels when outputting images
- Fix bug with middle mouse panning on Linux
- Fix bug with zoom shortcuts on number pad
- Fix bug with draw and erase direction when holding shift
## 1.21.1
### Patch Changes

Wyświetl plik

@ -2,7 +2,7 @@
"name": "tldraw-vscode",
"displayName": "tldraw",
"description": "The tldraw Extension for VS Code.",
"version": "1.21.1",
"version": "1.22.0",
"license": "MIT",
"publisher": "tldraw-org",
"repository": {

Wyświetl plik

@ -1,5 +1,13 @@
# @tldraw/www
## 1.7.13
### Patch Changes
- Updated dependencies
- @tldraw/core@1.17.0
- @tldraw/tldraw@1.23.0
## 1.7.12
### Patch Changes

Wyświetl plik

@ -1,6 +1,6 @@
{
"name": "@tldraw/www",
"version": "1.7.12",
"version": "1.7.13",
"private": true,
"description": "A tiny little drawing app (site).",
"repository": {

Wyświetl plik

@ -1,5 +1,12 @@
# @tldraw/core-example-advanced
## 1.7.2
### Patch Changes
- Updated dependencies
- @tldraw/core@1.17.0
## 1.7.1
### Patch Changes

Wyświetl plik

@ -1,5 +1,5 @@
{
"version": "1.7.1",
"version": "1.7.2",
"name": "@tldraw/core-example-advanced",
"description": "An advanced example project for @tldraw/core.",
"author": "@steveruizok",

Wyświetl plik

@ -1,5 +1,12 @@
# @tldraw/core-example-simple
## 1.8.2
### Patch Changes
- Updated dependencies
- @tldraw/core@1.17.0
## 1.8.1
### Patch Changes

Wyświetl plik

@ -1,5 +1,5 @@
{
"version": "1.8.1",
"version": "1.8.2",
"name": "@tldraw/core-example-simple",
"description": "A simple example project for @tldraw/core.",
"author": "@steveruizok",

Wyświetl plik

@ -1,5 +1,13 @@
# @tldraw/tldraw-example
## 1.7.4
### Patch Changes
- Updated dependencies
- @tldraw/core@1.17.0
- @tldraw/tldraw@1.23.0
## 1.7.3
### Patch Changes

Wyświetl plik

@ -1,5 +1,5 @@
{
"version": "1.7.3",
"version": "1.7.4",
"name": "@tldraw/tldraw-example",
"description": "An advanced example project for @tldraw/core.",
"author": "@steveruizok",

Wyświetl plik

@ -1,5 +1,18 @@
# Changelog
## 1.17.0
### Minor Changes
- - Improve middle mouse panning
- Fix bug with assets in VS Code plugin
- Improve performance of draw-style shapes
- Fix bug with creating assets
- Fix bug with text align in labels when outputting images
- Fix bug with middle mouse panning on Linux
- Fix bug with zoom shortcuts on number pad
- Fix bug with draw and erase direction when holding shift
## 1.16.0
### Minor Changes

Wyświetl plik

@ -1,5 +1,5 @@
{
"version": "1.16.0",
"version": "1.17.0",
"name": "@tldraw/core",
"description": "The tldraw core renderer and utilities.",
"author": "@steveruizok",

Wyświetl plik

@ -1,5 +1,23 @@
# Changelog
## 1.23.0
### Minor Changes
- - Improve middle mouse panning
- Fix bug with assets in VS Code plugin
- Improve performance of draw-style shapes
- Fix bug with creating assets
- Fix bug with text align in labels when outputting images
- Fix bug with middle mouse panning on Linux
- Fix bug with zoom shortcuts on number pad
- Fix bug with draw and erase direction when holding shift
### Patch Changes
- Updated dependencies
- @tldraw/core@1.17.0
## 1.22.1
### Patch Changes

Wyświetl plik

@ -1,6 +1,6 @@
{
"name": "@tldraw/tldraw",
"version": "1.22.1",
"version": "1.23.0",
"description": "A tiny little drawing app (editor)",
"author": "@steveruizok",
"repository": {
@ -44,7 +44,7 @@
"@radix-ui/react-popover": "^1.0.0",
"@radix-ui/react-tooltip": "^1.0.0",
"@stitches/react": "^1.2.8",
"@tldraw/core": "^1.16.0",
"@tldraw/core": "^1.17.0",
"@tldraw/intersect": "^1.7.1",
"@tldraw/vec": "^1.7.1",
"browser-fs-access": "^0.31.0",