@todesktop/shared 7.37.3 → 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,10 +113,20 @@ 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[];
128
+ fileAssociations?: IAppBuilderLib["config"]["fileAssociations"];
129
+ filesForDistribution?: string[];
120
130
  icon: FilePath;
121
131
  id: string;
122
132
  linux?: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.37.3",
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,10 +136,20 @@ 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[];
151
+ fileAssociations?: IAppBuilderLib["config"]["fileAssociations"];
152
+ filesForDistribution?: string[];
143
153
  icon: FilePath;
144
154
  id: string;
145
155
  linux?: {