Skip to content

Commit 30b9f7a

Browse files
committed
0.0.4 fix logic err
1 parent 0e0d4ed commit 30b9f7a

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,6 @@
44
- make observer observing smaller range
55
- (performance improve)
66
# 0.0.3
7-
- support remove doc icon in doctree
7+
- support remove doc icon in doctree
8+
# 0.0.4
9+
- fix logic err

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "siyuan_doctree_compress",
3-
"version": "0.0.3",
3+
"version": "0.0.4",
44
"type": "module",
55
"description": "compress your doctree as the % you defined",
66
"repository": "",

plugin.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "siyuan_doctree_compress",
33
"author": "zxkmm",
44
"url": "https://github.com/zxkmm/siyuan_doctree_compress",
5-
"version": "0.0.3",
5+
"version": "0.0.4",
66
"minAppVersion": "2.12.1",
77
"backends": [
88
"windows",

src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ export default class siyuan_doctree_compress extends Plugin {
9696
const layoutReadyAsyncHandler = async () => {
9797

9898
const _mainSwitchStat_ = await this.settingUtils.get("mainSwitch");
99-
const _hideIcon_ = await this.settingUtils.get("mainSwitch");
99+
const _hideIcon_ = await this.settingUtils.get("hideIcon");
100100
console.log(_mainSwitchStat_);
101101
console.log(_hideIcon_);
102102

0 commit comments

Comments
 (0)