mirror of
https://gitee.com/dromara/electron-egg.git
synced 2026-05-14 19:52:10 +08:00
21 lines
351 B
JavaScript
21 lines
351 B
JavaScript
module.exports = {
|
|
AutoLaunch: {
|
|
LOGIN_SETTING_OPTIONS: {
|
|
// For Windows
|
|
args: [
|
|
'--opened-at-login=1'
|
|
]
|
|
}
|
|
},
|
|
ipcChannels: {
|
|
appMessage: 'app.message',
|
|
appUpdater: 'app.updater'
|
|
},
|
|
appUpdaterStatus: {
|
|
error: -1,
|
|
available: 1,
|
|
noAvailable: 2,
|
|
downloading: 3,
|
|
downloaded: 4,
|
|
}
|
|
}; |