From c87a035f1ae9763b071a8cfcf8f25df6a4d702f7 Mon Sep 17 00:00:00 2001 From: Scott Nonnenberg Date: Thu, 1 Mar 2018 12:04:13 -0800 Subject: [PATCH 1/2] Show View -> Debug on OSX, ensure Debug Log is visible (#2089) * Ensure debug log is visible during registration/import * Restore the proper View menu on MacOSX --- app/menu.js | 3 ++- stylesheets/_global.scss | 1 - 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/menu.js b/app/menu.js index ce3111258f..e021ee6c2d 100644 --- a/app/menu.js +++ b/app/menu.js @@ -245,8 +245,9 @@ function updateForMac(template, messages, options) { ); // Replace Window menu + const windowIndex = options.includeSetup ? 4 : 3; // eslint-disable-next-line no-param-reassign - template[3].submenu = [ + template[windowIndex].submenu = [ { accelerator: 'CmdOrCtrl+W', role: 'close', diff --git a/stylesheets/_global.scss b/stylesheets/_global.scss index 296f73e8d8..9b4d7290ee 100644 --- a/stylesheets/_global.scss +++ b/stylesheets/_global.scss @@ -610,7 +610,6 @@ input[type=text], input[type=search], textarea { } .full-screen-flow { - z-index: 1000; position: absolute; left: 0; right: 0; From fde0b785ae13e1d54735710da946a0a9fa40517d Mon Sep 17 00:00:00 2001 From: Scott Nonnenberg Date: Thu, 1 Mar 2018 12:08:21 -0800 Subject: [PATCH 2/2] v1.5.2 Fixed: In some cases on OSX, View menu would not have Debug Log option (#2089) Fixed: In import/registration flow, choosing View -> Debug Log would do nothing (#2089) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index af82f92bb5..fb5ba745a3 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "productName": "Signal", "description": "Private messaging from your desktop", "repository": "https://github.com/signalapp/Signal-Desktop.git", - "version": "1.5.1", + "version": "1.5.2", "license": "GPL-3.0", "author": { "name": "Open Whisper Systems",