This commit is contained in:
Steve Ruiz 2022-06-25 20:31:27 +01:00
parent 8ef86c1924
commit 3cba9712fd
9 changed files with 32 additions and 20 deletions

View file

@ -1,9 +0,0 @@
---
'tldraw-vscode': minor
'@tldraw/tldraw': minor
---
- Updates multiplayer implementation.
- Adds translation guide.
- Fixes bug on text shape
- Updates undo redo for text shapes.

View file

@ -1,5 +1,14 @@
## 1.2.4
## 1.17.0
### Minor Changes
- 8ef86c19: - Updates multiplayer implementation.
- Adds translation guide.
- Fixes bug on text shape
- Updates undo redo for text shapes.
## 1.16.2
### Patch Changes

View file

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

View file

@ -1,5 +1,12 @@
# @tldraw/www
## 1.7.4
### Patch Changes
- Updated dependencies [8ef86c19]
- @tldraw/tldraw@1.18.0
## 1.7.3
### Patch Changes

View file

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

View file

@ -16,7 +16,6 @@ import Scroll from './scroll'
import FileSystem from './file-system'
import UIOptions from './ui-options'
import { Multiplayer } from './multiplayer'
import { Multiplayer as MultiplayerWithImages } from './multiplayer-with-images'
import './styles.css'
import Export from '~export'
@ -43,11 +42,6 @@ const pages: ({ path: string; component: any; title: string } | '---')[] = [
{ path: '/export', component: Export, title: 'Export' },
{ path: '/scroll', component: Scroll, title: 'In a scrolling container' },
{ path: '/multiplayer', component: Multiplayer, title: 'Multiplayer' },
{
path: '/multiplayer-with-images',
component: MultiplayerWithImages,
title: 'Multiplayer (with images)',
},
]
export default function App() {

View file

@ -1,5 +1,14 @@
# Changelog
## 1.18.0
### Minor Changes
- 8ef86c19: - Updates multiplayer implementation.
- Adds translation guide.
- Fixes bug on text shape
- Updates undo redo for text shapes.
## 1.17.2
### Patch Changes

View file

@ -1,6 +1,6 @@
{
"name": "@tldraw/tldraw",
"version": "1.17.2",
"version": "1.18.0",
"description": "A tiny little drawing app (editor)",
"author": "@steveruizok",
"repository": {

View file

@ -232,7 +232,8 @@ const mockDocumentWithImage: TDDocument = {
assets: {
asset1: {
type: TDAssetType.Image,
src: 'https://image.com',
src: 'https://image.com/image.png',
fileName: 'image.png',
size: [100, 100],
id: 'asset1',
},
@ -294,7 +295,8 @@ const mockDocumentWithSharedAssets: TDDocument = {
assets: {
'123': {
type: TDAssetType.Image,
src: 'https://image.com',
src: 'https://image.com/image.png',
fileName: 'image.png',
size: [100, 100],
id: '123',
},