Skip to content

Commit e918865

Browse files
committed
chore: fix user data path
1 parent d1c1ce2 commit e918865

File tree

5 files changed

+170
-172
lines changed

5 files changed

+170
-172
lines changed

config.js

-7
This file was deleted.

electron-builder.config.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
11
const {execSync} = require('child_process')
22
const path = require('path')
3+
const pkg = require('./package.json')
34

45
const sh = (cmd) => {
56
console.log('[exec]: %s', cmd)
67
execSync(cmd, {stdio: 'inherit'})
78
}
89

10+
// env
911
process.env.NODE_ENV = 'production'
1012

1113
module.exports = {
12-
appId: 'fun.magicdawn.clash-config-manager',
13-
productName: 'Clash Config Manager',
14+
appId: pkg.bundleId,
15+
productName: pkg.productName,
1416

1517
directories: {
1618
// output: '',

index.js

+12-9
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,23 @@ const {is} = require('electron-util')
55
const unhandled = require('electron-unhandled')
66
const debug = require('electron-debug')
77
const contextMenu = require('electron-context-menu')
8-
const config = require('./config')
98
const menu = require('./menu')
109
const os = require('os')
1110
const {load: loadDevExt} = require('./main-process/dev/ext')
11+
const pkg = require('./package.json')
1212

1313
unhandled()
1414
debug()
1515
contextMenu()
1616

1717
// 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)
1925

2026
// Uncomment this before publishing your first version.
2127
// It's commented out as it throws an error if there are no published versions.
@@ -98,14 +104,11 @@ app.on('activate', async () => {
98104
//
99105
// engine: start
100106
//
101-
;(async () => {
107+
108+
async function main() {
102109
await app.whenReady()
103110
Menu.setApplicationMenu(menu)
104111
loadDevExt()
105112
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

Comments
 (0)