Files
electron-egg/electron/lib/constant.js
2022-01-10 19:54:16 +08:00

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,
}
};