* ELECTRON-1073: localise more info window content
* fix localisation on network error strings
* ELECTRON-1074: fix localisation for right click context menu in child windows
* ELECTRON-1097: fix japanese localisation string name for screen sharing indicator
* ELECTRON-1052: add localisation support for screen names in screen sharing window
* ELECTRON-967 - Display Error content when there is no active network connection
* ELECTRON-967 - Fix css issue for Windows
* ELECTRON-967 - Optimize code
* bump up version number
* ELECTRON-1138: support opening email composition in new window
Currently, due to security reasons, we don't open any url which is not the same as the main window url in a new window, instead, we open it in a new tab of the system default browser.
However, this impacts the email app as we'll need new window to be opened to compose an email. This commit fixes that issue by checking if we need to open a sub-domain of the pod url domain.
* ELECTRON-1132 - Remove HKU registry entry on uninstalling the SDA
* ELECTRON-1132 - Change logic to use build number instead of version number to validate first time launch
* ELECTRON-1132 - Remove config exits check as we gracefully create a new config file
* ELECTRON-993: add pod url validation for macOS
- change default url to https://[POD].symphony.com
- validate the above default url to ensure user enters the right url
- remove deprecated code
- add tool tip for the pod url text box
* ELECTRON-993: add pod url validation for windows installers
- upgrade electron framework version to address security vulnerability with native window open and node integration
- disable background throttling on requests when creating a new window
When a notification’s position is changed and the browser window is destroyed, SDA throws up an undesired error message which is not apt for users to see. This was because of a validity check missing to see if the browser window still exists.
* ELECTRON-965 - Display warning dialog if certificate fails to verify Root CA or is not whitelisted
* ELECTRON-965 - Set ignoreAllCertErrors to false when main window loads
Upgrading Electron to 4.0.2 resolves the following 2 issues:
1. Pop-outs crashing
2. File dialog going to background. We use sheets in place of modals now