upgrade electron version and app version

This commit is contained in:
Vishwas Shashidhar 2018-08-21 15:36:26 +05:30
parent 5a0576402c
commit a6eabca960
5 changed files with 29 additions and 29 deletions

View File

@ -1,6 +1,6 @@
const electron = require('electron');
const app = electron.app;
const ffi = require('ffi');
const ffi = require('ffi-napi');
const ref = require('ref');
const path = require('path');
const execPath = path.dirname(app.getPath('exe'));

View File

@ -41,7 +41,7 @@ let boundsChangeWindow;
let alwaysOnTop = false;
let position = 'lower-right';
let display;
let sandboxed = false;
let sandboxed = true;
let isAutoReload = false;
let devToolsEnabled = true;
let isCustomTitleBarEnabled = true;

View File

@ -1,7 +1,7 @@
{
"name": "Symphony",
"productName": "Symphony",
"version": "2.11.0",
"version": "3.1.0",
"buildNumber": "0",
"description": "Symphony desktop app (Foundation ODP)",
"author": "Symphony",
@ -91,8 +91,8 @@
"browserify": "16.2.2",
"chromedriver": "2.40.0",
"cross-env": "5.2.0",
"electron": "2.0.7",
"electron-builder": "20.16.4",
"electron": "3.0.0-beta.6",
"electron-builder": "20.28.1",
"electron-builder-squirrel-windows": "12.3.0",
"electron-chromedriver": "2.0.0",
"electron-packager": "12.1.0",
@ -121,16 +121,16 @@
"electron-log": "2.2.15",
"electron-spellchecker": "1.1.2",
"electron-squirrel-startup": "1.0.0",
"ffi-napi": "2.4.3",
"filesize": "3.6.1",
"keymirror": "0.1.1",
"lodash.difference": "4.5.0",
"lodash.isequal": "4.5.0",
"lodash.omit": "4.5.0",
"lodash.pick": "4.4.0",
"ref-napi": "1.4.0",
"shell-path": "2.1.0",
"winreg": "1.2.4",
"ffi": "2.2.0",
"ref": "1.3.5"
"winreg": "1.2.4"
},
"optionalDependencies": {
"screen-snippet": "git+https://github.com/symphonyoss/ScreenSnippet.git#v1.0.2",

View File

@ -270,7 +270,7 @@ describe('read/write config tests', function() {
return updateConfigField('url2', 'hello world')
.catch(function (err) {
expect(err.message).toBe('Path must be a string. Received null');
expect(err.message).toBe('The "path" argument must be of type string. Received type object');
});
});
@ -309,7 +309,7 @@ describe('read/write config tests', function() {
return saveUserConfig('url2', 'hello world')
.catch(function (err) {
expect(err.message).toBe('Path must be a string. Received null');
expect(err.message).toBe('The "path" argument must be of type string. Received type object');
});
});