From 09fe3c2d03f3409572888ed1ae8063279b85352b Mon Sep 17 00:00:00 2001 From: Blue Falcon <130698314+anonhostpi@users.noreply.github.com> Date: Sun, 23 Jun 2024 01:57:53 -0700 Subject: [PATCH 1/2] feat: expose windowing APIs to other plugins exposes: - getWindows() - showWindows() - hideWindows() - toggleWindows() --- main.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/main.js b/main.js index 7f7c461..d49d9bd 100644 --- a/main.js +++ b/main.js @@ -478,6 +478,11 @@ class TrayPlugin extends obsidian.Plugin { cleanup(); } + getWindows = getWindows; + showWindows = showWindows; + hideWindows = hideWindows; + toggleWindows = toggleWindows; + async loadSettings() { const DEFAULT_SETTINGS = OPTIONS.map((opt) => ({ [opt.key]: opt.default })); this.settings = Object.assign(...DEFAULT_SETTINGS, await this.loadData()); From 62fcf88fe6cef5cb968debba677f0b0a2d6b26d5 Mon Sep 17 00:00:00 2001 From: Blue Falcon <130698314+anonhostpi@users.noreply.github.com> Date: Sun, 23 Jun 2024 02:13:35 -0700 Subject: [PATCH 2/2] feat: expose getCurrentWindow --- main.js | 1 + 1 file changed, 1 insertion(+) diff --git a/main.js b/main.js index d49d9bd..465538c 100644 --- a/main.js +++ b/main.js @@ -478,6 +478,7 @@ class TrayPlugin extends obsidian.Plugin { cleanup(); } + getCurrentWindow = getCurrentWindow getWindows = getWindows; showWindows = showWindows; hideWindows = hideWindows;