siyuan 0.9.9 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,6 +1,12 @@
1
1
  # Changelog
2
2
 
3
- ## v1.0.0 2024-05
3
+ ## v1.0.3 2024-09-27
4
+
5
+ * [Add plugin event bus `opened-notebook` & `closed-notebook`](https://github.com/siyuan-note/siyuan/issues/11974)
6
+
7
+ ## v1.0.2 2024-06-04
8
+
9
+ * [Add `dialog` object to `Setting` property](https://github.com/siyuan-note/petal/issues/28)
4
10
 
5
11
  ## v0.9.9 2024-05-14
6
12
 
package/package.json CHANGED
@@ -12,6 +12,9 @@
12
12
  "README.md",
13
13
  "siyuan.d.ts"
14
14
  ],
15
- "version": "0.9.9",
16
- "repository": "https://github.com/siyuan-note/petal"
15
+ "version": "1.0.3",
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "git+https://github.com/siyuan-note/petal.git"
19
+ }
17
20
  }
package/siyuan.d.ts CHANGED
@@ -182,6 +182,8 @@ export interface IEventBusMap {
182
182
  "open-siyuan-url-plugin": {
183
183
  url: string,
184
184
  };
185
+ "opened-notebook": IWebSocketData;
186
+ "closed-notebook":IWebSocketData;
185
187
  "paste": {
186
188
  protyle: IProtyle,
187
189
  resolve: new <T>(value: T | PromiseLike<T>) => void,