constant.js 351 B

123456789101112131415161718192021
  1. module.exports = {
  2. AutoLaunch: {
  3. LOGIN_SETTING_OPTIONS: {
  4. // For Windows
  5. args: [
  6. '--opened-at-login=1'
  7. ]
  8. }
  9. },
  10. ipcChannels: {
  11. appMessage: 'app.message',
  12. appUpdater: 'app.updater'
  13. },
  14. appUpdaterStatus: {
  15. error: -1,
  16. available: 1,
  17. noAvailable: 2,
  18. downloading: 3,
  19. downloaded: 4,
  20. }
  21. };