Commit Graph

1236 Commits

Author SHA1 Message Date
Vishwas Shashidhar
67690be031 Merge branch 'rc-1.53.0' into I18N-597
# Conflicts:
#	installer/win/Symphony-x64.aip
#	package.json
2018-11-27 19:37:18 -08:00
Vishwas Shashidhar
1153814359 ELECTRON-907: add logging for browser window and web contents 2018-11-27 17:24:15 -08:00
Vishwas Shashidhar
2c277712ad ELECTRON-907: add logging for system and app information 2018-11-27 16:56:08 -08:00
Vishwas Shashidhar
ee9ed0d225
ELECTRON-932: change default pod url in installers (#527)
* ELECTRON-932: change the default pod url on the installers

- Currently, we have the default pod url on the installers pointed to corp
- We change this to my.symphony.com so as not to expose corp and also allow public users to use my.symphony.com by default

* ELECTRON-932: update the settings pane bundle
2018-11-27 10:14:49 -08:00
Vishwas Shashidhar
1c2c3143d2 I18N-597: add missing french resource file for screen snippet 2018-11-26 15:56:27 -08:00
Vishwas Shashidhar
039424da72 I18N-597: bump up version of screen snippet 2018-11-26 10:20:01 -08:00
Vishwas Shashidhar
3b836b0a97 I18N-597: Support french localisation 2018-11-19 17:59:11 +05:30
Keerthi Niranjan
562b7df80e SEARCH-1059 - Add try catch for removing indexing dir (#526) 2018-11-19 17:08:50 +05:30
Kiran Niranjan
9f889abecc ELECTRON-906 - Fix copy image context menu (#524) 2018-11-15 15:03:20 +05:30
Vishwas Shashidhar
93036ba086 bump up version number and update electron dependency 2018-11-13 15:31:40 +05:30
Vishwas Shashidhar
f2251ffd1a Merge branch 'rc-1.53.0'
# Conflicts:
#	js/aboutApp/index.js
2018-11-13 14:37:45 +05:30
Kiran Niranjan
0d44901180 ELECTRON-720 - Set menu to null (#513) 2018-10-29 14:35:00 +05:30
Kiran Niranjan
bae410ebbb ELECTRON-736 (Show menu at 0,0 cord if the window is in full-screen mode) (#512)
* ELECTRON-736 - Show menu at 0,0 cord if the window is in full screen mode

* ELECTRON-736 - Fix unit registry test
2018-10-29 14:25:45 +05:30
Kiran Niranjan
e4b28f176d ELECTRON-874 (Change version numbering 1.53-3.4.0) (#522)
* ELECTRON-874 Change version numbering 1.53.0-3.4.0 (0)

* ELECTRON-874 setAboutPanelOptions only if running in Mac
2018-10-26 22:37:31 +05:30
Kiran Niranjan
4ebf9603b7 ELECTRON-874 Change version numbering 1.53.0-3.4.0 (0) (#523) 2018-10-26 22:21:36 +05:30
Kiran Niranjan
5d69857206 ELECTRON-870 - Update refresh interval to 1hrs 2018-10-25 16:46:08 -03:00
Kiran Niranjan
2871cb5c90 ELECTRON-870 - Revert back to old memory refresh logic 2018-10-25 16:46:08 -03:00
Kiran Niranjan
4737a9135f ELECTRON-870 - Remove process.getCPUUsage from renderer process due to sandbox 2018-10-25 16:46:08 -03:00
Kiran Niranjan
41d0889d68 ELECTRON-870 - Update refresh interval to 1hrs 2018-10-25 16:45:53 -03:00
Kiran Niranjan
6821730554 ELECTRON-870 - Revert back to old memory refresh logic 2018-10-25 16:45:53 -03:00
Kiran Niranjan
e27d5ffbdf ELECTRON-870 - Remove process.getCPUUsage from renderer process due to sandbox 2018-10-25 16:45:53 -03:00
Vishwas Shashidhar
13651e2a81 Merge branch 'rc-1.53.0' 2018-10-23 18:41:51 +05:30
Vishwas Shashidhar
f869ce5d3c Update mac pre-install script version 2018-10-23 14:51:05 +05:30
Kiran Niranjan
7fea8b0383 ELECTRON-791 (Fix pop-out memory leak and move spellchecker module to main process) (#519)
* ELECTRON-791 - Bump electron version to 3.0.5 and change spellchecker module

* ELECTRON-791 - Remove AESDecryptGCM & AESEncryptGCM logs
2018-10-22 22:34:48 +05:30
Kiran Niranjan
1089fe62c1 ELECTRON-808 - Remove RSA related methods to fix crash issue (#516) 2018-10-10 22:14:59 +05:30
Kiran Niranjan
77dd4e4946 ELECTRON-808 - Remove RSA related methods to fix crash issue (#515) 2018-10-10 22:02:31 +05:30
Kiran Niranjan
c895291324 Revert "ELECTRON-758 - Change network request implementation to use electron's API (#509)" (#514)
This reverts commit 0c8b322
2018-10-03 21:30:52 +05:30
Vishwas Shashidhar
4e25fddbe6 update version in preinstall script 2018-10-03 12:13:48 +05:30
Vishwas Shashidhar
b6f5d0ef7c fix get registry test 2018-10-02 21:50:25 +05:30
Vishwas Shashidhar
5c3b942067 bump up the version number 2018-10-02 20:48:14 +05:30
Kiran Niranjan
2a1f2b16e8 ELECTRON-801 (Dynamically update notification based on message length) (#511)
* ELECTRON-801 - Dynamically update notification based on message length

* ELECTRON-801 - hide text only if the length is greater than 96 char
2018-10-02 20:31:37 +05:30
Vishwas Shashidhar
ba83338e6e Upgrade package versions
- Upgrade electron to 3.0.2
- Upgrade other dependencies to the latest versions
- Clean up deprecated code
2018-10-02 12:34:38 +05:30
Vishwas Shashidhar
6d86071072
ELECTRON-805: fix protocol handler uninstall issues on Windows (#510)
Currently, when we uninstall symphony on Windows, the protocol handler registry entry is left as is because it is created by Electron in the first place.

To avoid such leftovers, we add logic to use Electron to register protocol handler only on Mac. On Windows, we use the installer to create a registry entry and manage it during installation as well.
2018-09-29 12:30:17 +05:30
Kiran Niranjan
0c8b322d63 ELECTRON-758 - Change network request implementation to use electron's API (#509) 2018-09-28 12:39:26 +05:30
VICTOR RAPHAEL BRAGA DE SALES MASCARENHAS
6321cc7dbd ELECTRON-756 - About Symphony: Window shows at top-left corner after fullscreen (#505) 2018-09-27 19:22:26 +05:30
Vishwas Shashidhar
faae7a6f2a
ELECTRON-790: add japanese localisation support for "Learn more" menu item (#508)
The menu item "Learn More" under the "Help" menu doesn't take a user to the appropriate page when Japanese is set as the user's language. This fixes the issue
2018-09-27 12:07:48 +05:30
Vishwas Shashidhar
f345660129
ELECTRON-795, ELECTRON-789: localise download manager messages (#507)
The messages "Downloaded" and "File not found" were not localised in japanese, this adds localisation to those messages
2018-09-26 17:28:44 +05:30
Vishwas Shashidhar
85884305cb bump up version to 3.3.1 2018-09-26 13:37:11 +05:30
Vishwas Shashidhar
628b05d46b
ELECTRON-788: add clear cache functionality (#506)
* ELECTRON-788: clean cache on bad exits

A few customers have reported that the cache gets corrupted when the app is not exited cleanly. And, upon the next start, we get cache_read_failures.

This fix adds an extra check during startup and exit to check if the app was exited cleanly and deletes the corrupted cache folder accordingly during startup.

* ELECTRON-788: add menu item, use electron session cache clear logic

Adds a new menu item to clear cache and reload the app.
Also remove the old logic of deleting the cache folder manually and use electron session api to clear the cache.

* ELECTRON-788: refactor code
2018-09-26 13:08:59 +05:30
Vishwas Shashidhar
d1009a2326 upgrade electron framework version to 3.0.0 stable 2018-09-19 14:56:48 +05:30
Vishwas Shashidhar
97ea80a9f8 Update the version handler logic and remove the script 2018-09-19 12:28:41 +05:30
thaisym1912
08d9c34735 Stabilize automation tests. (#504)
* Combine commits

* share-logs.spectron (replaced by electronProductionLogging)

* notificationPosition.spectron (replaced by toastNotification)

* Remove reload
2018-09-19 11:06:40 +05:30
Vishwas Shashidhar
6752ec2042 Upgrade electron framework version 2018-09-19 11:06:11 +05:30
VICTOR RAPHAEL BRAGA DE SALES MASCARENHAS
0507507ab8 ELECTRON-710 - Fix Always on top: notification does not show on top (#491) 2018-09-17 15:57:38 +05:30
Vishwas Shashidhar
8bef28234d
ELECTRON-595: macOS installer improvements (#496)
* ELECTRON-595: add sso checkbox in macOS installer

To enable easy configuration of SSO url, we add a checkbox that appends the SSO path on to the pod url in the installer

* ELECTRON-695: add support for sso checkbox for windows installers
2018-09-17 13:53:14 +05:30
Keerthi Niranjan
6eefc624a0
Merge pull request #503 from tranducanh/AVT-1152
AVT-1152: fix and review AVT-1152,AVT-1149,AVT-1151,AVT-1156
2018-09-12 10:59:18 +05:30
Tran Duc Anh
220797dbbd fix and review 2018-09-12 10:09:57 +07:00
Tran Duc Anh
29a0780d65 commit code 2018-09-10 18:00:51 +07:00
thaisym1912
87d6c20ad9 AVT-1145 [Spectron] Review and update the existing tests in closePopOutsOnReload.spectron (#498)
* Updated AVT-1145
2018-09-10 12:47:49 +05:30
Kiran Niranjan
e23075445f
Merge pull request #500 from thaisym1912/AVT-1147
AVT-1147 [Spectron] Review and update the existing tests in getVersionInfo.spectron
2018-09-10 12:31:38 +05:30