ing
This commit is contained in:
parent
9944a2f696
commit
c901dca2eb
Binary file not shown.
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
|
@ -105,7 +105,7 @@
|
|||
],
|
||||
"legalTrademarks": "overFlow",
|
||||
"publisherName": "LOAFLE",
|
||||
"icon": "config/build/windows/icon/overflow_256.ico",
|
||||
"icon": "config/build/win/icon/overflow_256.ico",
|
||||
"extraResources": [
|
||||
{
|
||||
"from": "config/build/${os}/bin/probe-${os}-${arch}.exe",
|
||||
|
@ -117,9 +117,8 @@
|
|||
"oneClick": false,
|
||||
"perMachine": true,
|
||||
"allowToChangeInstallationDirectory": false,
|
||||
"installerIcon": "windows/icon/overflow_256.ico",
|
||||
"uninstallerIcon": "windows/icon/overflow_256.ico",
|
||||
"include": "config/build/windows/nsis/installer.nsh",
|
||||
"installerIcon": "win/icon/overflow_256.ico",
|
||||
"uninstallerIcon": "win/icon/overflow_256.ico",
|
||||
"menuCategory": "overFlow"
|
||||
}
|
||||
}
|
|
@ -200,7 +200,9 @@ app.on('ready', () => {
|
|||
});
|
||||
|
||||
if (!__DEV__) {
|
||||
const probePath = path.join(__dirname, '..', 'bin', 'probe');
|
||||
const probePath = __WIN32__
|
||||
? path.join(__dirname, '..', 'bin', 'probe.exe')
|
||||
: path.join(__dirname, '..', 'bin', 'probe');
|
||||
probeProcess = ChildProcess.spawn(probePath, [], { stdio: ['ignore', 'ignore', 'ignore'], detached: true });
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user