@todesktop/shared 7.86.0 → 7.89.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.
@@ -10,6 +10,7 @@ export interface DesktopifyMenuItemConstructorOptions extends Omit<MenuItemConst
10
10
  platforms?: NodeJS.Platform[];
11
11
  submenu?: DesktopifyMenuItemConstructorOptions[];
12
12
  role?: MenuItemConstructorOptions["role"] | todesktopRoles;
13
+ useSystemLabel?: boolean;
13
14
  }
14
15
  /**
15
16
  * Toggle Window Tray Action
@@ -143,6 +143,7 @@ export interface IApp extends BaseApp {
143
143
  jsToInject?: string;
144
144
  menubarIcon?: string;
145
145
  name: string;
146
+ nsisConfig?: Partial<IAppBuilderLib["config"]["nsis"]>;
146
147
  runtimeEnvs?: string;
147
148
  secret?: string;
148
149
  shouldCreate32BitWindowsArtifacts?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.86.0",
3
+ "version": "7.89.0",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
@@ -27,6 +27,7 @@ export interface DesktopifyMenuItemConstructorOptions
27
27
  platforms?: NodeJS.Platform[];
28
28
  submenu?: DesktopifyMenuItemConstructorOptions[];
29
29
  role?: MenuItemConstructorOptions["role"] | todesktopRoles;
30
+ useSystemLabel?: boolean;
30
31
  }
31
32
 
32
33
  /**
package/src/toDesktop.ts CHANGED
@@ -163,6 +163,7 @@ export interface IApp extends BaseApp {
163
163
  jsToInject?: string;
164
164
  menubarIcon?: string;
165
165
  name: string;
166
+ nsisConfig?: Partial<IAppBuilderLib["config"]["nsis"]>;
166
167
  runtimeEnvs?: string;
167
168
  secret?: string; // support old schema versions
168
169
  shouldCreate32BitWindowsArtifacts?: boolean;