@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.
- package/lib/desktopify2.d.ts +1 -0
- package/lib/toDesktop.d.ts +1 -0
- package/package.json +1 -1
- package/src/desktopify2.ts +1 -0
- package/src/toDesktop.ts +1 -0
package/lib/desktopify2.d.ts
CHANGED
|
@@ -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
|
package/lib/toDesktop.d.ts
CHANGED
|
@@ -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
package/src/desktopify2.ts
CHANGED
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;
|