Skip to content

Commit df4122f

Browse files
committed
chore: release v0.1.2
1 parent 6ea265f commit df4122f

File tree

6 files changed

+11
-7
lines changed

6 files changed

+11
-7
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# 更改日志 | Change Log
22

3+
## v0.1.2 / 2023-07-26
4+
5+
- [v0.1.1 ... v0.1.2](https://github.com/siyuan-community/siyuan-sdk/compare/v0.1.1...v0.1.2)
36
- 更新 API `/api/file/readDir` | Update API `/api/file/readDir`
47
- 添加 API `/api/snippet/setSnippet` | Add API `/api/snippet/setSnippet`
58
- 添加 API `/api/snippet/getSnippet` | Add API `/api/snippet/getSnippet`

node/cspell.config.cjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ module.exports = {
2222
"hpath",
2323
"hpaths",
2424
"iife",
25+
"instanceof",
2526
"katex",
2627
"lcov",
2728
"nodelib",

node/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://json.schemastore.org/package.json",
33
"name": "@siyuan-community/siyuan-sdk",
4-
"version": "0.1.1",
4+
"version": "0.1.2",
55
"description": "A simple and easy to use SDK for SiYuan.",
66
"keywords": [
77
"api",

node/src/types/kernel/api/block/getBlockInfo/response.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,15 @@ export interface IData {
4848
*/
4949
rootChildID: string;
5050
/**
51-
* Documenticon icon
51+
* Document icon
5252
*/
5353
rootIcon: string;
5454
/**
5555
* Document block ID
5656
*/
5757
rootID: string;
5858
/**
59-
* Documenticon title
59+
* Document title
6060
*/
6161
rootTitle: string;
6262
}

schemas/kernel/api/block/getBlockInfo/response.schema.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
},
6969
"rootIcon": {
7070
"type": "string",
71-
"description": "Documenticon icon",
71+
"description": "Document icon",
7272
"examples": [
7373
"1f3d8",
7474
"icon.svg",
@@ -77,7 +77,7 @@
7777
},
7878
"rootTitle": {
7979
"type": "string",
80-
"description": "Documenticon title",
80+
"description": "Document title",
8181
"minLength": 1
8282
}
8383
}

schemas/kernel/api/block/getBlockInfo/response.schema.json5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,13 +68,13 @@
6868
rootIcon: {
6969
// 文档图标
7070
type: 'string',
71-
description: 'Documenticon icon',
71+
description: 'Document icon',
7272
examples: ['1f3d8', 'icon.svg', 'folder/iocn.png'],
7373
},
7474
rootTitle: {
7575
// 文档图标
7676
type: 'string',
77-
description: 'Documenticon title',
77+
description: 'Document title',
7878
minLength: 1,
7979
},
8080
},

0 commit comments

Comments
 (0)