siyuan 1.0.3 → 1.0.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 +6 -0
- package/package.json +1 -1
- package/siyuan.d.ts +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v1.0.5 2024-11
|
|
4
|
+
|
|
5
|
+
## v1.0.4 2024-10-15
|
|
6
|
+
|
|
7
|
+
* [Add plugin method `exitSiYuan`]https://github.com/siyuan-note/siyuan/pull/12767)
|
|
8
|
+
|
|
3
9
|
## v1.0.3 2024-09-27
|
|
4
10
|
|
|
5
11
|
* [Add plugin event bus `opened-notebook` & `closed-notebook`](https://github.com/siyuan-note/siyuan/issues/11974)
|
package/package.json
CHANGED
package/siyuan.d.ts
CHANGED
|
@@ -460,6 +460,8 @@ export function getFrontend(): "desktop" | "desktop-window" | "mobile" | "browse
|
|
|
460
460
|
|
|
461
461
|
export function lockScreen(app: App): void
|
|
462
462
|
|
|
463
|
+
export function exitSiYuan(): void
|
|
464
|
+
|
|
463
465
|
export function getBackend(): "windows" | "linux" | "darwin" | "docker" | "android" | "ios";
|
|
464
466
|
|
|
465
467
|
export function adaptHotkey(hotkey: string): string;
|