@todesktop/shared 7.33.0 → 7.36.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/toDesktop.d.ts +5 -0
- package/package.json +1 -1
- package/src/toDesktop.ts +5 -0
package/lib/toDesktop.d.ts
CHANGED
|
@@ -111,6 +111,9 @@ export interface IAppMeta {
|
|
|
111
111
|
appPath?: FilePath;
|
|
112
112
|
appProtocolScheme?: string;
|
|
113
113
|
copyright?: string;
|
|
114
|
+
dmg?: {
|
|
115
|
+
background?: FilePath;
|
|
116
|
+
};
|
|
114
117
|
extraContentFiles?: ExtraFileReference[];
|
|
115
118
|
electronMirror?: string;
|
|
116
119
|
extraResources?: ExtraFileReference[];
|
|
@@ -123,6 +126,7 @@ export interface IAppMeta {
|
|
|
123
126
|
mac?: {
|
|
124
127
|
additionalBinariesToSign?: FilePath[];
|
|
125
128
|
category?: string;
|
|
129
|
+
dmgBackground?: FilePath;
|
|
126
130
|
entitlements?: FilePath;
|
|
127
131
|
extendInfo?: IAppBuilderLib["config"]["mac"]["extendInfo"];
|
|
128
132
|
icon?: FilePath;
|
|
@@ -239,6 +243,7 @@ export interface IApp {
|
|
|
239
243
|
internalUrls?: ISwitchableValue<string>;
|
|
240
244
|
isContextMenuDisabled: boolean;
|
|
241
245
|
isDevToolsDisabled: boolean;
|
|
246
|
+
isFindInPageEnabled?: boolean;
|
|
242
247
|
isNativeWindowOpenDisabled?: boolean;
|
|
243
248
|
isSingleInstance?: boolean;
|
|
244
249
|
isWebSecurityDisabled?: boolean;
|
package/package.json
CHANGED
package/src/toDesktop.ts
CHANGED
|
@@ -134,6 +134,9 @@ export interface IAppMeta {
|
|
|
134
134
|
appPath?: FilePath;
|
|
135
135
|
appProtocolScheme?: string;
|
|
136
136
|
copyright?: string;
|
|
137
|
+
dmg?: {
|
|
138
|
+
background?: FilePath;
|
|
139
|
+
};
|
|
137
140
|
extraContentFiles?: ExtraFileReference[];
|
|
138
141
|
electronMirror?: string;
|
|
139
142
|
extraResources?: ExtraFileReference[];
|
|
@@ -146,6 +149,7 @@ export interface IAppMeta {
|
|
|
146
149
|
mac?: {
|
|
147
150
|
additionalBinariesToSign?: FilePath[];
|
|
148
151
|
category?: string;
|
|
152
|
+
dmgBackground?: FilePath;
|
|
149
153
|
entitlements?: FilePath;
|
|
150
154
|
extendInfo?: IAppBuilderLib["config"]["mac"]["extendInfo"];
|
|
151
155
|
icon?: FilePath;
|
|
@@ -271,6 +275,7 @@ export interface IApp {
|
|
|
271
275
|
internalUrls?: ISwitchableValue<string>;
|
|
272
276
|
isContextMenuDisabled: boolean;
|
|
273
277
|
isDevToolsDisabled: boolean;
|
|
278
|
+
isFindInPageEnabled?: boolean;
|
|
274
279
|
isNativeWindowOpenDisabled?: boolean;
|
|
275
280
|
isSingleInstance?: boolean;
|
|
276
281
|
isWebSecurityDisabled?: boolean;
|