File tree 2 files changed +11
-1
lines changed
2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -4,12 +4,16 @@ const {
4
4
Menu,
5
5
} = require ( 'electron' ) ;
6
6
const { autoUpdater } = require ( 'electron-updater' ) ;
7
+ const log = require ( 'electron-log' ) ;
7
8
// const {
8
9
// default: installExtension,
9
10
// REACT_DEVELOPER_TOOLS,
10
11
// REDUX_DEVTOOLS,
11
12
// } = require('electron-devtools-installer');
12
13
14
+ autoUpdater . logger = log ;
15
+ autoUpdater . logger . transports . file . level = 'info' ;
16
+ log . info ( 'App starting...' ) ;
13
17
14
18
let win ;
15
19
@@ -70,6 +74,11 @@ function createWindow() {
70
74
Menu . setApplicationMenu ( Menu . buildFromTemplate ( template ) ) ;
71
75
}
72
76
77
+ function sendStatusToWindow ( text ) {
78
+ log . info ( text ) ;
79
+ win . webContents . send ( 'message' , text ) ;
80
+ }
81
+
73
82
autoUpdater . on ( 'checking-for-update' , ( ) => {
74
83
sendStatusToWindow ( 'Checking for update...' ) ;
75
84
} )
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " electronjs-updater" ,
3
- "version" : " 0.3 .0" ,
3
+ "version" : " 0.4 .0" ,
4
4
"main" : " main.js" ,
5
5
"author" :
" Taha Ben Masaud <[email protected] >" ,
6
6
"license" : " MIT" ,
10
10
"start" : " ./node_modules/electron/cli.js ."
11
11
},
12
12
"dependencies" : {
13
+ "electron-log" : " ^3.0.1" ,
13
14
"electron-updater" : " ^4.0.6" ,
14
15
"react" : " ^16.8.1" ,
15
16
"react-dom" : " ^16.8.1"
You can’t perform that action at this time.
0 commit comments