Compare commits

...

4 Commits
0.3.4 ... main

Author SHA1 Message Date
Tom
f4e827253d
merge #51: expose windowing to other plugins
Expose Windowing APIs to Other Plugins
2025-03-15 22:06:39 +11:00
Blue Falcon
62fcf88fe6
feat: expose getCurrentWindow 2024-06-23 02:13:35 -07:00
Blue Falcon
09fe3c2d03
feat: expose windowing APIs to other plugins
exposes:
- getWindows()
- showWindows()
- hideWindows()
- toggleWindows()
2024-06-23 01:57:53 -07:00
cc0baa3226
fix: #29 #30 focus maximised windows on trigger after alt-tab 2023-09-04 21:26:01 +10:00
2 changed files with 12 additions and 3 deletions

13
main.js
View File

@ -1,5 +1,5 @@
/**
* obsidian-tray v0.3.4
* obsidian-tray v0.3.5
* (c) 2023 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
* (https://github.com/dragonwocky/obsidian-tray/) under the MIT license
*/
@ -76,7 +76,10 @@ const vaultWindows = new Set(),
showWindows = () => {
log(LOG_SHOWING_WINDOWS);
getWindows().forEach((win) => {
maximizedWindows.has(win) ? win.maximize() : win.show();
if (maximizedWindows.has(win)) {
win.maximize();
win.focus();
} else win.show();
});
},
hideWindows = () => {
@ -475,6 +478,12 @@ class TrayPlugin extends obsidian.Plugin {
cleanup();
}
getCurrentWindow = getCurrentWindow
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());

View File

@ -4,7 +4,7 @@
"author": "dragonwocky",
"authorUrl": "https://dragonwocky.me/",
"description": "Run Obsidian from the system tray for customisable window management & global quick notes",
"version": "0.3.4",
"version": "0.3.5",
"isDesktopOnly": true,
"minAppVersion": "1.0.0"
}