@todesktop/shared 7.121.0 → 7.124.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/base.d.ts CHANGED
@@ -76,6 +76,7 @@ export interface IAppMeta {
76
76
  linux?: {
77
77
  category?: string;
78
78
  icon?: FilePath;
79
+ noSandbox?: boolean;
79
80
  };
80
81
  mac?: {
81
82
  additionalBinariesToSign?: FilePath[];
@@ -15,6 +15,9 @@ export interface DesktopifyMenuItemConstructorOptions extends Omit<MenuItemConst
15
15
  event?: string;
16
16
  targetWindowId?: string;
17
17
  actionType?: "jsEvent" | "role";
18
+ iconUrl?: string;
19
+ bundledIcon?: string;
20
+ useTemplateImage?: boolean;
18
21
  }
19
22
  /**
20
23
  * Toggle Window Tray Action
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.121.0",
3
+ "version": "7.124.0",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/base.ts CHANGED
@@ -83,6 +83,7 @@ export interface IAppMeta {
83
83
  linux?: {
84
84
  category?: string;
85
85
  icon?: FilePath;
86
+ noSandbox?: boolean;
86
87
  };
87
88
  mac?: {
88
89
  additionalBinariesToSign?: FilePath[];
@@ -38,6 +38,9 @@ export interface DesktopifyMenuItemConstructorOptions
38
38
  event?: string;
39
39
  targetWindowId?: string;
40
40
  actionType?: "jsEvent" | "role";
41
+ iconUrl?: string;
42
+ bundledIcon?: string;
43
+ useTemplateImage?: boolean;
41
44
  }
42
45
 
43
46
  /**