siyuan 1.1.3 → 1.1.4

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,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## v1.1.5
4
+
5
+ ## v1.1.4 2025-09-02
6
+
7
+ * [Add plugin event bus `code-language-update` and `code-language-change`](https://github.com/siyuan-note/siyuan/pull/15610)
8
+
3
9
  ## v1.1.3 2025-08-26
4
10
 
5
11
  * [Add plugin function `getActiveEditor`](https://github.com/siyuan-note/siyuan/issues/15641)
package/package.json CHANGED
@@ -12,7 +12,7 @@
12
12
  "README.md",
13
13
  "siyuan.d.ts"
14
14
  ],
15
- "version": "1.1.3",
15
+ "version": "1.1.4",
16
16
  "repository": {
17
17
  "type": "git",
18
18
  "url": "git+https://github.com/siyuan-note/petal.git"
package/siyuan.d.ts CHANGED
@@ -204,6 +204,12 @@ export interface IEventBusMap {
204
204
  "sync-fail": IWebSocketData;
205
205
  "mobile-keyboard-show": void;
206
206
  "mobile-keyboard-hide": void;
207
+ "code-language-update": { languages: string[] };
208
+ "code-language-change": {
209
+ language: string,
210
+ languageElements: HTMLElement[],
211
+ protyle: IProtyle
212
+ };
207
213
  }
208
214
 
209
215
  export interface IPluginDockTab {