From 39e3506add35f63002625a08edb716cebeb94b3f Mon Sep 17 00:00:00 2001 From: appetizermonster Date: Sat, 29 Aug 2015 18:04:30 +0900 Subject: [PATCH 1/4] Fix typo --- docs/api/frameless-window.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api/frameless-window.md b/docs/api/frameless-window.md index 8d5c578914c7..a326bbd8c196 100644 --- a/docs/api/frameless-window.md +++ b/docs/api/frameless-window.md @@ -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 blur effect to the content below the window (i.e. other applications open on 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. * 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, From 8757da6c4742c19d7008cf35cfdc5883665c2c4f Mon Sep 17 00:00:00 2001 From: Robo Date: Sat, 29 Aug 2015 19:20:09 +0530 Subject: [PATCH 2/4] renderer: send referrer for all naviagtions --- atom/renderer/atom_renderer_client.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/atom/renderer/atom_renderer_client.cc b/atom/renderer/atom_renderer_client.cc index 04a89fed3889..86c9eb1cdeb6 100644 --- a/atom/renderer/atom_renderer_client.cc +++ b/atom/renderer/atom_renderer_client.cc @@ -229,6 +229,7 @@ bool AtomRendererClient::ShouldFork(blink::WebFrame* frame, // FIXME We only support GET here because http method will be ignored when // the OpenURLFromTab is triggered, which means form posting would not work, // we should solve this by patching Chromium in future. + *send_referrer = true; return http_method == "GET"; } From cfc5ecb05d68c33ebae71c288b2d7a6a966a3015 Mon Sep 17 00:00:00 2001 From: Eran Tiktin Date: Sat, 29 Aug 2015 20:05:15 +0300 Subject: [PATCH 3/4] Update web-frame.md phrasing --- docs/api/web-frame.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/api/web-frame.md b/docs/api/web-frame.md index 810c31a4ecdd..82d5fcc49d79 100644 --- a/docs/api/web-frame.md +++ b/docs/api/web-frame.md @@ -1,6 +1,7 @@ # 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%. From 9ee063ca14ce62955bf90ab0c9f6edb7ad4c86c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samy=20Pess=C3=A9?= Date: Mon, 31 Aug 2015 00:07:36 +0200 Subject: [PATCH 4/4] Add section about server implementations --- docs/api/auto-updater.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/api/auto-updater.md b/docs/api/auto-updater.md index 4e1dc5e0deb4..3901e1be2062 100644 --- a/docs/api/auto-updater.md +++ b/docs/api/auto-updater.md @@ -98,6 +98,10 @@ appropriate format. `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 The `autoUpdater` object emits the following events: