siyuan 1.1.8 → 1.1.9

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,10 @@
1
1
  # Changelog
2
2
 
3
- ## v1.1.9 2026
3
+ ## v1.2.0 2026
4
+
5
+ ## v1.1.9 2026-03-31
6
+
7
+ * [Add `alwaysOnTop` parameter to `openWindow` plugin](https://github.com/siyuan-note/siyuan/issues/16080)
4
8
 
5
9
  ## v1.1.8 2026-03-11
6
10
 
package/package.json CHANGED
@@ -12,7 +12,7 @@
12
12
  "README.md",
13
13
  "siyuan.d.ts"
14
14
  ],
15
- "version": "1.1.8",
15
+ "version": "1.1.9",
16
16
  "repository": {
17
17
  "type": "git",
18
18
  "url": "git+https://github.com/siyuan-note/petal.git"
package/siyuan.d.ts CHANGED
@@ -303,6 +303,7 @@ export function openWindow(options: {
303
303
  height?: number,
304
304
  width?: number,
305
305
  tab?: Tab,
306
+ alwaysOnTop?: boolean,
306
307
  doc?: {
307
308
  id: string; // 块 id
308
309
  },
@@ -16,7 +16,7 @@ export declare const getLocalStorage: (cb: () => void) => void;
16
16
  export declare const setStorageVal: (key: string, val: any, cb?: () => void) => void;
17
17
 
18
18
  /**
19
- * @param {string} [options.timeoutType="defalut"] 仅在桌面端有效,"default" 表示使用默认的超时机制,"never" 表示通知将一直显示,直到用户手动关闭它。
19
+ * @param {string} [options.timeoutType="defalut"] 仅在 Windows 和 Linux 有效,"default" 表示使用默认的超时机制,"never" 表示通知将一直显示,直到用户手动关闭它。
20
20
  * @returns 通知 id
21
21
  */
22
22
  export declare const sendNotification: (options: {