@todesktop/shared 7.133.0 → 7.134.0
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/lib/desktopify2.d.ts +5 -0
- package/package.json +1 -1
- package/src/desktopify2.ts +5 -0
package/lib/desktopify2.d.ts
CHANGED
|
@@ -221,6 +221,11 @@ export interface DesktopifyApp2 {
|
|
|
221
221
|
* Whether the app should minimize to tray when all windows are closed. Requires at least one tray.
|
|
222
222
|
*/
|
|
223
223
|
shouldMinimizeToTray?: boolean;
|
|
224
|
+
/**
|
|
225
|
+
* This option is only available when `shouldMinimizeToTray` is `true`.
|
|
226
|
+
* Always display the dock icon while the app is open. Even if there are no windows open.
|
|
227
|
+
*/
|
|
228
|
+
shouldAlwaysDisplayDockIcon?: boolean;
|
|
224
229
|
/**
|
|
225
230
|
* Only allow a single instance of this app to run
|
|
226
231
|
*/
|
package/package.json
CHANGED
package/src/desktopify2.ts
CHANGED
|
@@ -344,6 +344,11 @@ export interface DesktopifyApp2 {
|
|
|
344
344
|
* Whether the app should minimize to tray when all windows are closed. Requires at least one tray.
|
|
345
345
|
*/
|
|
346
346
|
shouldMinimizeToTray?: boolean;
|
|
347
|
+
/**
|
|
348
|
+
* This option is only available when `shouldMinimizeToTray` is `true`.
|
|
349
|
+
* Always display the dock icon while the app is open. Even if there are no windows open.
|
|
350
|
+
*/
|
|
351
|
+
shouldAlwaysDisplayDockIcon?: boolean;
|
|
347
352
|
/**
|
|
348
353
|
* Only allow a single instance of this app to run
|
|
349
354
|
*/
|