@todesktop/shared 7.39.0 → 7.40.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.
@@ -113,9 +113,17 @@ export interface IAppMeta {
113
113
  copyright?: string;
114
114
  dmg?: {
115
115
  background?: FilePath;
116
+ artifactName?: string;
117
+ backgroundColor?: string;
118
+ iconSize?: number;
119
+ iconTextSize?: number;
120
+ title?: string;
121
+ contents?: IAppBuilderLib["config"]["dmg"]["contents"];
122
+ window?: IAppBuilderLib["config"]["dmg"]["window"];
116
123
  };
117
124
  extraContentFiles?: ExtraFileReference[];
118
125
  electronMirror?: string;
126
+ electronVersion?: string;
119
127
  extraResources?: ExtraFileReference[];
120
128
  fileAssociations?: IAppBuilderLib["config"]["fileAssociations"];
121
129
  filesForDistribution?: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.39.0",
3
+ "version": "7.40.0",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/toDesktop.ts CHANGED
@@ -136,9 +136,17 @@ export interface IAppMeta {
136
136
  copyright?: string;
137
137
  dmg?: {
138
138
  background?: FilePath;
139
+ artifactName?: string;
140
+ backgroundColor?: string;
141
+ iconSize?: number;
142
+ iconTextSize?: number;
143
+ title?: string;
144
+ contents?: IAppBuilderLib["config"]["dmg"]["contents"];
145
+ window?: IAppBuilderLib["config"]["dmg"]["window"];
139
146
  };
140
147
  extraContentFiles?: ExtraFileReference[];
141
148
  electronMirror?: string;
149
+ electronVersion?: string;
142
150
  extraResources?: ExtraFileReference[];
143
151
  fileAssociations?: IAppBuilderLib["config"]["fileAssociations"];
144
152
  filesForDistribution?: string[];