chore: bump version (#1313)

This commit is contained in:
Himself65
2023-03-04 13:46:50 -06:00
committed by GitHub
parent 28f0027de6
commit dd6bee68cb
15 changed files with 143 additions and 104 deletions
+5 -5
View File
@@ -10,12 +10,12 @@
"dependencies": {
"@affine/debug": "workspace:*",
"@affine/i18n": "workspace:*",
"@blocksuite/blocks": "0.5.0-20230303192351-13b0dd7",
"@blocksuite/editor": "0.5.0-20230303192351-13b0dd7",
"@blocksuite/global": "0.5.0-20230303192351-13b0dd7",
"@blocksuite/blocks": "0.5.0-20230304192152-02cfe2b",
"@blocksuite/editor": "0.5.0-20230304192152-02cfe2b",
"@blocksuite/global": "0.5.0-20230304192152-02cfe2b",
"@blocksuite/icons": "2.0.17",
"@blocksuite/react": "0.5.0-20230303192351-13b0dd7",
"@blocksuite/store": "0.5.0-20230303192351-13b0dd7",
"@blocksuite/react": "0.5.0-20230304192152-02cfe2b",
"@blocksuite/store": "0.5.0-20230304192152-02cfe2b",
"@emotion/cache": "^11.10.5",
"@emotion/react": "^11.10.6",
"@emotion/server": "^11.10.0",
+2 -2
View File
@@ -14,8 +14,8 @@
},
"dependencies": {
"@affine/debug": "workspace:*",
"@blocksuite/blocks": "0.5.0-20230303192351-13b0dd7",
"@blocksuite/store": "0.5.0-20230303192351-13b0dd7",
"@blocksuite/blocks": "0.5.0-20230304192152-02cfe2b",
"@blocksuite/store": "0.5.0-20230304192152-02cfe2b",
"@tauri-apps/api": "^1.2.0",
"encoding": "^0.1.13",
"firebase": "^9.17.1",
+2 -2
View File
@@ -201,8 +201,8 @@ export class DataCenter {
const workspaceUnitForPublic = new WorkspaceUnit({
id: workspaceId,
name: blocksuiteWorkspace.meta.name,
avatar: blocksuiteWorkspace.meta.avatar,
name: blocksuiteWorkspace.meta.name ?? '',
avatar: blocksuiteWorkspace.meta.avatar ?? '',
owner: undefined,
published: true,
provider: 'affine',
+1 -1
View File
@@ -9,7 +9,7 @@ export const setDefaultAvatar = async (
if (typeof document === 'undefined') {
return;
}
const blob = await getDefaultHeadImgBlob(blocksuiteWorkspace.meta.name);
const blob = await getDefaultHeadImgBlob(blocksuiteWorkspace.meta.name ?? '');
if (!blob) {
return;
}
+1 -1
View File
@@ -9,6 +9,6 @@
"zod": "^3.20.6"
},
"dependencies": {
"@blocksuite/global": "0.5.0-20230303192351-13b0dd7"
"@blocksuite/global": "0.5.0-20230304192152-02cfe2b"
}
}
+1
View File
@@ -1 +1,2 @@
export const DEFAULT_WORKSPACE_NAME = 'Untitled Workspace';
export const UNTITLED_WORKSPACE_NAME = 'Untitled';