Commit 7804462 1 parent d241bed commit 7804462 Copy full SHA for 7804462
File tree 2 files changed +14
-0
lines changed
2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## 0.3.2 2024-01
4
4
5
+ * [ Add plugin event bus ` open-menu-inbox ` ] ( https://github.com/siyuan-note/siyuan/pull/9967 )
6
+
5
7
## 0.3.1 2023-12-06
6
8
7
9
* [ Support ` Dock Plugin ` and ` Command Palette ` on mobile] ( https://github.com/siyuan-note/siyuan/issues/9926 )
Original file line number Diff line number Diff line change @@ -643,6 +643,18 @@ export default class PluginSample extends Plugin {
643
643
click : ( ) => {
644
644
this . eventBus . off ( "open-menu-breadcrumbmore" , this . eventBusLog ) ;
645
645
}
646
+ } , {
647
+ icon : "iconSelect" ,
648
+ label : "On open-menu-inbox" ,
649
+ click : ( ) => {
650
+ this . eventBus . on ( "open-menu-inbox" , this . eventBusLog ) ;
651
+ }
652
+ } , {
653
+ icon : "iconClose" ,
654
+ label : "Off open-menu-inbox" ,
655
+ click : ( ) => {
656
+ this . eventBus . off ( "open-menu-inbox" , this . eventBusLog ) ;
657
+ }
646
658
} , {
647
659
icon : "iconSelect" ,
648
660
label : "On input-search" ,
You can’t perform that action at this time.
0 commit comments