@todesktop/shared 7.93.0 → 7.94.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.
@@ -163,6 +163,13 @@ export interface DesktopifyApp2 {
163
163
  * The app icon
164
164
  */
165
165
  icon?: string;
166
+ /**
167
+ * Instead of using one icon for every platform, use a separate icon for different platforms
168
+ */
169
+ useSeparateIcons?: boolean;
170
+ windowsIcon?: string;
171
+ macOSIcon?: string;
172
+ linuxIcon?: string;
166
173
  /**
167
174
  * The name of the company that the app belongs to
168
175
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.93.0",
3
+ "version": "7.94.0",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
@@ -275,6 +275,13 @@ export interface DesktopifyApp2 {
275
275
  * The app icon
276
276
  */
277
277
  icon?: string;
278
+ /**
279
+ * Instead of using one icon for every platform, use a separate icon for different platforms
280
+ */
281
+ useSeparateIcons?: boolean;
282
+ windowsIcon?: string;
283
+ macOSIcon?: string;
284
+ linuxIcon?: string;
278
285
  /**
279
286
  * The name of the company that the app belongs to
280
287
  */