-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathforge.config.js
150 lines (130 loc) · 4.37 KB
/
forge.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
const { app } = require('electron')
const path = require('path');
const packageJson = require('./package.json');
const { version } = packageJson;
// TODO win-certificate.pfx for autoupdate
/*if (process.env['WINDOWS_CODESIGN_FILE']) {
const certPath = path.join(__dirname, 'win-certificate.pfx');
const certExists = fs.existsSync(certPath);
if (certExists) {
process.env['WINDOWS_CODESIGN_FILE'] = certPath;
}
}*/
function notarizeMaybe() {
if (process.platform !== 'darwin') {
return;
}
if (!process.env.CI) {
console.log(`Not in CI, skipping notarization`);
return;
}
if (!process.env.APPLE_ID || !process.env.APPLE_ID_PASSWORD) {
console.warn(
'Should be notarizing, but environment variables APPLE_ID or APPLE_ID_PASSWORD are missing!',
);
return;
}
config.packagerConfig.osxNotarize = {
appBundleId: 'com.electron.fiddle',
appleId: process.env.APPLE_ID,
appleIdPassword: process.env.APPLE_ID_PASSWORD,
ascProvider: 'LT94ZKYDCJ',
};
}
notarizeMaybe();
// Config
module.exports = {
packagerConfig: {
name: 'Ducopanel',
executableName: 'Ducopanel',
asar: false,
dereference: true,
icon: path.resolve(__dirname, 'build', 'icons', 'icon'),
ignore: [
".idea",
".gitignore"
],
win32metadata: {
CompanyName: 'Duinocoin',
OriginalFilename: 'Duino Coin',
}
},
makers: [
{
name: '@electron-forge/maker-squirrel',
platforms: ['win32'],
config: (arch) => {
// TODO win-certificate.pfx for autoupdate
/*const certificateFile = process.env.CI
? path.join(__dirname, 'cert.p12')
: process.env.WINDOWS_CERTIFICATE_FILE;
if (!certificateFile || !fs.existsSync(certificateFile)) {
console.warn(
`Warning: Could not find certificate file at ${certificateFile}`,
);
}*/
return {
name: 'Ducopanel',
authors: 'DuinoCoin Community',
exe: 'Ducopanel.exe',
noMsi: true,
setupExe: `ducopanel-${version}-win32-${arch}-setup.exe`
// TODO win-certificate.pfx for autoupdate
/*certificateFile: process.env['WINDOWS_CODESIGN_FILE'],
certificatePassword: process.env['WINDOWS_CODESIGN_PASSWORD'],*/
};
},
},
{
name: '@electron-forge/maker-zip',
platforms: ['darwin'],
},
{
name: '@electron-forge/maker-deb',
platforms: ['linux'],
config: {
icon: {
scalable: 'build/icon.png',
},
},
}
],
handleSquirrelEvent: function() {
if (process.argv.length === 1) {
return false
}
const ChildProcess = require('child_process')
const path = require('path')
const appFolder = path.resolve(process.execPath, '..')
const rootAtomFolder = path.resolve(appFolder, '..')
const updateDotExe = path.resolve(path.join(rootAtomFolder, 'Update.exe'))
const exeName = path.basename(process.execPath)
const spawn = function(command, args) {
let spawnedProcess
try {
spawnedProcess = ChildProcess.spawn(command, args, { detached: true })
} catch (error) {
console.warn(error)
}
return spawnedProcess
}
const spawnUpdate = function(args) {
return spawn(updateDotExe, args)
}
const squirrelEvent = process.argv[1]
switch (squirrelEvent) {
case '--squirrel-install':
case '--squirrel-updated':
spawnUpdate(['--createShortcut', exeName])
setTimeout(app.quit, 1000)
break
case '--squirrel-uninstall':
spawnUpdate(['--removeShortcut', exeName])
setTimeout(app.quit, 1000)
break
case '--squirrel-obsolete':
app.quit()
break
}
}
};