Skip to content

Commit

Permalink
Release v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
OpaqueGlass committed Nov 1, 2024
1 parent 02bd89e commit a8ef47e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## 更新日志

### v1.0.1 (2024年11月1日)
- 修复:编辑器内存在选区时,无法打开文档的问题;

### v1.0.0 (2024年11月1日)
- 改进:在重命名、移动文档后,及时更新面包屑(默认禁用,需要在设置中打开);
- 改进:兼容思源v3.1.11的自定义文档图标;
Expand Down
2 changes: 1 addition & 1 deletion README_zh_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

> 在编辑器上方显示当前文档路径信息的[思源笔记](https://github.com/siyuan-note/siyuan)插件。
> 当前版本:v1.0.0 **改进**:(设置项、默认关闭)在文档重命名、移动后及时更新面包屑;**改进**:兼容[自定义默认图标](https://github.com/siyuan-note/siyuan/issues/12721)
> 当前版本:v1.0.1 **改进**:(设置项、默认关闭)在文档重命名、移动后及时更新面包屑;**改进**:兼容[自定义默认图标](https://github.com/siyuan-note/siyuan/issues/12721)**修复**: 存在选区时无法打开文档的问题
>
> 详见[更新日志](CHANGELOG.md)
Expand Down
1 change: 1 addition & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1121,6 +1121,7 @@ function openRefLink(event, paramId = "", keyParam = undefined, protyleElem = un
altKey: event?.altKey ?? keyParam?.altKey,
bubbles: true
});
window.getSelection()?.removeAllRanges();
虚拟链接.dispatchEvent(clickEvent);
虚拟链接.remove();
}
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": "syplugin-fakeDocBreadcrumb",
"author": "OpaqueGlass",
"url": "https://github.com/OpaqueGlass/syplugin-fakeDocBreadcrumb",
"version": "1.0.0",
"version": "1.0.1",
"displayName": {
"default": "fakeDocBreadcrumb",
"zh_CN": "(伪)文档面包屑",
Expand Down

0 comments on commit a8ef47e

Please sign in to comment.