-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
### Added - New option: `Check updates at launch`. - New option: `Launch application minimised`. - New option: `Minimise application on quit`. - More logging for debugging. ### Changed - Default value for `Update Slack workspaces` set from 5 to 15 minutes.
- Loading branch information
Showing
11 changed files
with
265 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
react: nodemon -w config-overrides.js --exec yarn react-dev | ||
electron: nodemon -w public/electron.js -w public/utils.js -w public/config.js --exec yarn electron-dev | ||
electron: nodemon -w public/electron.js -w public/lib --exec yarn electron-dev |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,21 @@ | ||
module.exports = { | ||
// Timers are in seconds | ||
timers: { | ||
slackInstances: 300, | ||
connections: 60, | ||
updateStatus: 300, | ||
connections: 60, | ||
slackInstances: 900, | ||
}, | ||
updates: { | ||
autoDownload: false, | ||
autoInstallOnAppQuit: true, | ||
allowPrerelease: false, | ||
allowDowngrade: false, | ||
fullChangelog: false, | ||
} | ||
|
||
checkUpdatesOnLaunch: true, | ||
}, | ||
app: { | ||
closeToTray: true, | ||
launchMinimised: false, | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.