Text edits

This commit is contained in:
Jessica Lord 2015-09-01 16:21:29 -07:00
parent 254cdc0e6c
commit 47d103af72
3 changed files with 11 additions and 11 deletions

View file

@ -19,20 +19,20 @@ var image = clipboard.readImage();
var appIcon = new Tray(image); var appIcon = new Tray(image);
``` ```
## Supported formats ## Supported Formats
Currently `PNG` and `JPEG` are supported. It is recommended to use `PNG` because Currently `PNG` and `JPEG` image formats are supported. `PNG` is recommended
of its support for transparency and lossless compression. because of its support for transparency and lossless compression.
On Windows, you can also load `ICO` icon from a file path. On Windows, you can also load an `ICO` icon from a file path.
## High resolution image ## High Resolution Image
On platforms that have high-DPI support, you can append `@2x` after image's On platforms that have high-DPI support, you can append `@2x` after image's
base filename to mark it as a high resolution image. base filename to mark it as a high resolution image.
For example if `icon.png` is a normal image that has standard resolution, then For example if `icon.png` is a normal image that has standard resolution, then
`icon@2x.png` would be treated as a high resolution image that has double DPI `icon@2x.png` will be treated as a high resolution image that has double DPI
density. density.
If you want to support displays with different DPI densities at the same time, If you want to support displays with different DPI densities at the same time,

View file

@ -1,7 +1,7 @@
# powerSaveBlocker # powerSaveBlocker
The `power-save-blocker` module is used to block the system from entering The `power-save-blocker` module is used to block the system from entering
low-power (sleep) mode thus allowing the app to keep the system and screen low-power (sleep) mode and thus allowing the app to keep the system and screen
active. active.
For example: For example:
@ -28,12 +28,12 @@ The `powerSaveBlocker` module has the following methods:
* `prevent-display-sleep`- Prevent the display from going to sleep. Keeps * `prevent-display-sleep`- Prevent the display from going to sleep. Keeps
system and screen active. Example use case: playing video. system and screen active. Example use case: playing video.
Starts the power save blocker preventing the system from entering lower-power Starts preventing the system from entering lower-power mode. Returns an integer
mode. Returns an integer identifying the power save blocker. identifying the power save blocker.
**Note:** `prevent-display-sleep` has higher has precedence over **Note:** `prevent-display-sleep` has higher has precedence over
`prevent-app-suspension`. Only the highest precedence type takes effect. In `prevent-app-suspension`. Only the highest precedence type takes effect. In
other words, `prevent-display-sleep` always take precedence over other words, `prevent-display-sleep` always takes precedence over
`prevent-app-suspension`. `prevent-app-suspension`.
For example, an API calling A requests for `prevent-app-suspension`, and For example, an API calling A requests for `prevent-app-suspension`, and

View file

@ -1,4 +1,4 @@
# Process # process
The `process` object in Electron has the following differences from the one in The `process` object in Electron has the following differences from the one in
upstream node: upstream node: