Skip to content

Commit 4d60be5

Browse files
fourth version
1 parent 2cbb3a0 commit 4d60be5

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

main.js

+9
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,16 @@ const {
44
Menu,
55
} = require('electron');
66
const { autoUpdater } = require('electron-updater');
7+
const log = require('electron-log');
78
// const {
89
// default: installExtension,
910
// REACT_DEVELOPER_TOOLS,
1011
// REDUX_DEVTOOLS,
1112
// } = require('electron-devtools-installer');
1213

14+
autoUpdater.logger = log;
15+
autoUpdater.logger.transports.file.level = 'info';
16+
log.info('App starting...');
1317

1418
let win;
1519

@@ -70,6 +74,11 @@ function createWindow() {
7074
Menu.setApplicationMenu(Menu.buildFromTemplate(template));
7175
}
7276

77+
function sendStatusToWindow(text) {
78+
log.info(text);
79+
win.webContents.send('message', text);
80+
}
81+
7382
autoUpdater.on('checking-for-update', () => {
7483
sendStatusToWindow('Checking for update...');
7584
})

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "electronjs-updater",
3-
"version": "0.3.0",
3+
"version": "0.4.0",
44
"main": "main.js",
55
"author": "Taha Ben Masaud <[email protected]>",
66
"license": "MIT",
@@ -10,6 +10,7 @@
1010
"start": "./node_modules/electron/cli.js ."
1111
},
1212
"dependencies": {
13+
"electron-log": "^3.0.1",
1314
"electron-updater": "^4.0.6",
1415
"react": "^16.8.1",
1516
"react-dom": "^16.8.1"

0 commit comments

Comments
 (0)