@todesktop/shared 7.196.0 → 7.197.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/CHANGELOG.md +14 -0
- package/lib/cjs/base.d.ts +9 -0
- package/lib/esm/base.d.ts +9 -0
- package/package.json +1 -1
- package/src/base.ts +9 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @todesktop/shared
|
|
2
2
|
|
|
3
|
+
## 7.197.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- c0222ed: Added support for custom deb package dependencies via
|
|
8
|
+
`linux.deb.depends` in todesktop.json
|
|
9
|
+
|
|
10
|
+
## 7.196.1
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- 3d6da7a: Add support for `app.useTdCert` flag to use ToDesktop code signing
|
|
15
|
+
certificates for Mac and Windows builds
|
|
16
|
+
|
|
3
17
|
## 7.196.0
|
|
4
18
|
|
|
5
19
|
### Minor Changes
|
package/lib/cjs/base.d.ts
CHANGED
|
@@ -159,6 +159,11 @@ export interface ToDesktopJson {
|
|
|
159
159
|
includeSubNodeModules?: boolean;
|
|
160
160
|
linux?: {
|
|
161
161
|
category?: string;
|
|
162
|
+
deb?: {
|
|
163
|
+
additionalDepends?: string[];
|
|
164
|
+
depends?: string[];
|
|
165
|
+
};
|
|
166
|
+
executableArgs?: string[];
|
|
162
167
|
icon?: FilePath;
|
|
163
168
|
imageVersion?: string;
|
|
164
169
|
noSandbox?: boolean;
|
|
@@ -295,6 +300,9 @@ export interface BaseApp extends Schemable {
|
|
|
295
300
|
customMacCodeSign?: CustomMacCodeSign;
|
|
296
301
|
customNotarization?: CustomMacNotarization;
|
|
297
302
|
customWindowsCodeSign?: CustomWindowsCodeSignAzureTrustedSigning | CustomWindowsCodeSignEV | CustomWindowsCodeSignFile;
|
|
303
|
+
debConfig?: {
|
|
304
|
+
installAptSources?: boolean;
|
|
305
|
+
};
|
|
298
306
|
domainVerificationCode?: string;
|
|
299
307
|
id: string;
|
|
300
308
|
macHsmCertNames?: Record<MacTarget, string>;
|
|
@@ -334,6 +342,7 @@ export interface BaseApp extends Schemable {
|
|
|
334
342
|
login?: string;
|
|
335
343
|
};
|
|
336
344
|
subscription?: Subscription;
|
|
345
|
+
useTdCert?: boolean;
|
|
337
346
|
windowsHsmCertNames?: Record<WindowsTarget, string>;
|
|
338
347
|
}
|
|
339
348
|
export type Subscription = {
|
package/lib/esm/base.d.ts
CHANGED
|
@@ -159,6 +159,11 @@ export interface ToDesktopJson {
|
|
|
159
159
|
includeSubNodeModules?: boolean;
|
|
160
160
|
linux?: {
|
|
161
161
|
category?: string;
|
|
162
|
+
deb?: {
|
|
163
|
+
additionalDepends?: string[];
|
|
164
|
+
depends?: string[];
|
|
165
|
+
};
|
|
166
|
+
executableArgs?: string[];
|
|
162
167
|
icon?: FilePath;
|
|
163
168
|
imageVersion?: string;
|
|
164
169
|
noSandbox?: boolean;
|
|
@@ -295,6 +300,9 @@ export interface BaseApp extends Schemable {
|
|
|
295
300
|
customMacCodeSign?: CustomMacCodeSign;
|
|
296
301
|
customNotarization?: CustomMacNotarization;
|
|
297
302
|
customWindowsCodeSign?: CustomWindowsCodeSignAzureTrustedSigning | CustomWindowsCodeSignEV | CustomWindowsCodeSignFile;
|
|
303
|
+
debConfig?: {
|
|
304
|
+
installAptSources?: boolean;
|
|
305
|
+
};
|
|
298
306
|
domainVerificationCode?: string;
|
|
299
307
|
id: string;
|
|
300
308
|
macHsmCertNames?: Record<MacTarget, string>;
|
|
@@ -334,6 +342,7 @@ export interface BaseApp extends Schemable {
|
|
|
334
342
|
login?: string;
|
|
335
343
|
};
|
|
336
344
|
subscription?: Subscription;
|
|
345
|
+
useTdCert?: boolean;
|
|
337
346
|
windowsHsmCertNames?: Record<WindowsTarget, string>;
|
|
338
347
|
}
|
|
339
348
|
export type Subscription = {
|
package/package.json
CHANGED
package/src/base.ts
CHANGED
|
@@ -175,6 +175,11 @@ export interface ToDesktopJson {
|
|
|
175
175
|
includeSubNodeModules?: boolean;
|
|
176
176
|
linux?: {
|
|
177
177
|
category?: string;
|
|
178
|
+
deb?: {
|
|
179
|
+
additionalDepends?: string[];
|
|
180
|
+
depends?: string[];
|
|
181
|
+
};
|
|
182
|
+
executableArgs?: string[];
|
|
178
183
|
icon?: FilePath;
|
|
179
184
|
imageVersion?: string;
|
|
180
185
|
noSandbox?: boolean;
|
|
@@ -337,6 +342,9 @@ export interface BaseApp extends Schemable {
|
|
|
337
342
|
| CustomWindowsCodeSignAzureTrustedSigning
|
|
338
343
|
| CustomWindowsCodeSignEV
|
|
339
344
|
| CustomWindowsCodeSignFile;
|
|
345
|
+
debConfig?: {
|
|
346
|
+
installAptSources?: boolean;
|
|
347
|
+
};
|
|
340
348
|
domainVerificationCode?: string;
|
|
341
349
|
id: string;
|
|
342
350
|
|
|
@@ -374,6 +382,7 @@ export interface BaseApp extends Schemable {
|
|
|
374
382
|
shouldCreateSnapFiles?: boolean;
|
|
375
383
|
snapStore?: { description?: string; login?: string };
|
|
376
384
|
subscription?: Subscription;
|
|
385
|
+
useTdCert?: boolean;
|
|
377
386
|
windowsHsmCertNames?: Record<WindowsTarget, string>;
|
|
378
387
|
}
|
|
379
388
|
|