@todesktop/shared 7.74.0 → 7.75.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.
@@ -262,6 +262,11 @@ export interface DesktopifyApp2 {
262
262
  * https://linear.app/todesktop/issue/TD-1428/html-injection-due-to-regular-expression-bypass
263
263
  */
264
264
  useSafeInternalUrlMatcher?: boolean;
265
+ /**
266
+ * Sets whether the window menu bar should hide itself automatically.
267
+ * Once set the menu bar will only show when users press the single Alt key.
268
+ */
269
+ autoHideMenuBar?: boolean;
265
270
  }
266
271
  export interface IApp2 extends BaseApp {
267
272
  desktopApp: DesktopifyApp2;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.74.0",
3
+ "version": "7.75.0",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
@@ -369,6 +369,11 @@ export interface DesktopifyApp2 {
369
369
  * https://linear.app/todesktop/issue/TD-1428/html-injection-due-to-regular-expression-bypass
370
370
  */
371
371
  useSafeInternalUrlMatcher?: boolean;
372
+ /**
373
+ * Sets whether the window menu bar should hide itself automatically.
374
+ * Once set the menu bar will only show when users press the single Alt key.
375
+ */
376
+ autoHideMenuBar?: boolean;
372
377
  }
373
378
 
374
379
  export interface IApp2 extends BaseApp {