-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add option to run on a single display
This seems like a nice option in terms of keeping CPU usage and visual distraction to a minimum.
- Loading branch information
1 parent
c388cb5
commit 1625d78
Showing
5 changed files
with
93 additions
and
25 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 |
---|---|---|
|
@@ -2,7 +2,7 @@ var version = undefined; | |
var packageJSON; | ||
|
||
try { | ||
packageJSON = require('../../package.json'); | ||
packageJSON = require("../../package.json"); | ||
version = packageJSON.version; | ||
} | ||
catch(e) { | ||
|
@@ -40,7 +40,7 @@ global.CONFIG_DEFAULTS = { | |
// this is a free sentry account and the URL will be in every copy of | ||
// the app that gets distributed, so i'm committing it to the repo for now | ||
if ( process.env.TEST_MODE === undefined && ! global.IS_DEV ) { | ||
var os = require('os'); | ||
var os = require("os"); | ||
|
||
global.RAVEN_PRIVATE_URL = "https://b86f7b0ac5604b55b4fd03adedc5d205:[email protected]/172824"; | ||
global.RAVEN_URL = "https://[email protected]/172824"; | ||
|
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