Skip to content

Commit

Permalink
docs: v0.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
etchnight committed Mar 6, 2024
1 parent eb264eb commit bc1ce48
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 5 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
## [0.2.4](https://github.com/etchnight/siyuan-plugin-table-view/compare/v0.2.3...v0.2.4) (2024-03-06)


### Bug Fixes

* 切换步骤后input框内容消失 ([51140e8](https://github.com/etchnight/siyuan-plugin-table-view/commit/51140e82e533f0a9b15a02de67bc40db925c56ba))
* 修复block搜索类型图标匹配不正确问题 ([3a1bc9f](https://github.com/etchnight/siyuan-plugin-table-view/commit/3a1bc9fff699711e57304891c9be2a48dfc6c719))


### Features

* 去除单元格内标签或属性文本 ([843def5](https://github.com/etchnight/siyuan-plugin-table-view/commit/843def5682356f43eb78e0174c75208afba61b3e)), closes [#6](https://github.com/etchnight/siyuan-plugin-table-view/issues/6)
* 删除名称列标签 ([eb264eb](https://github.com/etchnight/siyuan-plugin-table-view/commit/eb264ebdfb96f456f443d192034fbb69fbfe8ec0))
* 指定块时,输入如‘# 一级标题’形式将仅在标题块中搜索 ([4706f14](https://github.com/etchnight/siyuan-plugin-table-view/commit/4706f1472256ec3529711f8d203b9333cc2bf3ca))
* block搜索标题按subType排序 ([135e1e5](https://github.com/etchnight/siyuan-plugin-table-view/commit/135e1e592aa78b887b34225f02356d9ae0cd7698))



## [0.2.3](https://github.com/etchnight/siyuan-plugin-table-view/compare/v0.2.2...v0.2.3) (2024-02-02)


Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

思源笔记插件,Query View 类,仿 Remnote 的 Table View 功能,在表格中展示笔记数据。

> ❗ 表格展示不是数据库,表格所展示的数据直接来源于你的笔记,并且禁止在表格中编辑内容
> ❗ 表格展示不是数据库,表格所展示的数据直接来源于你的笔记,在表格中编辑不会改变笔记内容
## 基本概念

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "siyuan-plugin-table-view",
"version": "0.2.3",
"version": "0.2.4",
"type": "module",
"description": "抽取笔记内容生成表格,汇总概念及其属性",
"repository": "",
Expand Down
2 changes: 1 addition & 1 deletion plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "siyuan-plugin-table-view",
"author": "dualwind",
"url": "https://github.com/etchnight/siyuan-plugin-table-view",
"version": "0.2.3",
"version": "0.2.4",
"minAppVersion": "2.11.4",
"backends": ["windows", "linux", "darwin", "ios", "android"],
"frontends": ["desktop", "browser-desktop", "desktop-window"],
Expand Down
4 changes: 2 additions & 2 deletions src/components/TableData.vue
Original file line number Diff line number Diff line change
Expand Up @@ -411,8 +411,8 @@ const submit = async () => {
tableHeadRef.value.children = tableHeadRef.value.children.concat(
propRoot.children
);
console.log("tableDataRef", tableDataRef);
console.log("tableHeadRef", tableHeadRef);
//console.log("tableDataRef", tableDataRef);
//console.log("tableHeadRef", tableHeadRef);
loading.value = false;
};
defineExpose({
Expand Down

0 comments on commit bc1ce48

Please sign in to comment.