@@ -5,17 +5,23 @@ const {is} = require('electron-util')
5
5
const unhandled = require ( 'electron-unhandled' )
6
6
const debug = require ( 'electron-debug' )
7
7
const contextMenu = require ( 'electron-context-menu' )
8
- const config = require ( './config' )
9
8
const menu = require ( './menu' )
10
9
const os = require ( 'os' )
11
10
const { load : loadDevExt } = require ( './main-process/dev/ext' )
11
+ const pkg = require ( './package.json' )
12
12
13
13
unhandled ( )
14
14
debug ( )
15
15
contextMenu ( )
16
16
17
17
// Note: Must match `build.appId` in package.json
18
- app . setAppUserModelId ( 'com.company.AppName' )
18
+ app . setAppUserModelId ( pkg . bundleId )
19
+
20
+ const prod = process . env . NODE_ENV === 'production'
21
+
22
+ const appDataPath = app . getPath ( 'appData' )
23
+ const userDataPath = path . join ( appDataPath , prod ? pkg . name : pkg . name )
24
+ app . setPath ( 'userData' , userDataPath )
19
25
20
26
// Uncomment this before publishing your first version.
21
27
// It's commented out as it throws an error if there are no published versions.
@@ -98,14 +104,11 @@ app.on('activate', async () => {
98
104
//
99
105
// engine: start
100
106
//
101
- ; ( async ( ) => {
107
+
108
+ async function main ( ) {
102
109
await app . whenReady ( )
103
110
Menu . setApplicationMenu ( menu )
104
111
loadDevExt ( )
105
112
mainWindow = await createMainWindow ( )
106
-
107
- // const favoriteAnimal = config.get('favoriteAnimal')
108
- // mainWindow.webContents.executeJavaScript(
109
- // `document.querySelector('header p').textContent = 'Your favorite animal is ${favoriteAnimal}'`
110
- // )
111
- } ) ( )
113
+ }
114
+ main ( )
0 commit comments