Merge remote-tracking branch 'atom/master'
This commit is contained in:
commit
6459531bef
4 changed files with 8 additions and 2 deletions
|
@ -229,6 +229,7 @@ bool AtomRendererClient::ShouldFork(blink::WebFrame* frame,
|
||||||
// FIXME We only support GET here because http method will be ignored when
|
// FIXME We only support GET here because http method will be ignored when
|
||||||
// the OpenURLFromTab is triggered, which means form posting would not work,
|
// the OpenURLFromTab is triggered, which means form posting would not work,
|
||||||
// we should solve this by patching Chromium in future.
|
// we should solve this by patching Chromium in future.
|
||||||
|
*send_referrer = true;
|
||||||
return http_method == "GET";
|
return http_method == "GET";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -98,6 +98,10 @@ appropriate format.
|
||||||
|
|
||||||
`pub_date` (if present) must be formatted according to ISO 8601.
|
`pub_date` (if present) must be formatted according to ISO 8601.
|
||||||
|
|
||||||
|
## Update server implementations
|
||||||
|
|
||||||
|
[Nuts](https://github.com/GitbookIO/nuts) is an open source implementation of the update server described above, it integrates beautifully with GitHub releases. Nuts manages downloads and updates, it’s compatible with `Squirrel.Mac` and `Squirrel.Windows` so you get cross-platform support out of the box.
|
||||||
|
|
||||||
## Events
|
## Events
|
||||||
|
|
||||||
The `autoUpdater` object emits the following events:
|
The `autoUpdater` object emits the following events:
|
||||||
|
|
|
@ -32,7 +32,7 @@ var win = new BrowserWindow({ transparent: true, frame: false });
|
||||||
* The `blur` filter only applies to the web page, so there is no way to apply
|
* The `blur` filter only applies to the web page, so there is no way to apply
|
||||||
blur effect to the content below the window (i.e. other applications open on
|
blur effect to the content below the window (i.e. other applications open on
|
||||||
the user's system).
|
the user's system).
|
||||||
* On Windows operation shystems, transparent windows will not work when DWM is
|
* On Windows operation systems, transparent windows will not work when DWM is
|
||||||
disabled.
|
disabled.
|
||||||
* On Linux users have to put `--enable-transparent-visuals --disable-gpu` in
|
* On Linux users have to put `--enable-transparent-visuals --disable-gpu` in
|
||||||
the command line to disable GPU and allow ARGB to make transparent window,
|
the command line to disable GPU and allow ARGB to make transparent window,
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
# web-frame
|
# web-frame
|
||||||
|
|
||||||
The `web-frame` module can custom the rendering of current web page.
|
The `web-frame` module allows you to customize the rendering of the current
|
||||||
|
web page.
|
||||||
|
|
||||||
An example of zooming current page to 200%.
|
An example of zooming current page to 200%.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue