Skip to content

Commit 865a448

Browse files
committed
Merge branch 'nw27' into nw28
2 parents da790fd + a8a102c commit 865a448

File tree

3 files changed

+13
-5
lines changed

3 files changed

+13
-5
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
0.27.4 / 01-05-2017
2+
===================
3+
- Update Chromium to [63.0.3239.132](https://chromereleases.googleblog.com/2018/01/stable-channel-update-for-desktop.html)
4+
- Fix: Kiosk Mode does not lock app in macOS 10.12+ [(#6169)](https://github.com/nwjs/nw.js/issues/6169)
5+
- Fix: nw.Clipboard.get() with PNG format [(#6366)](https://github.com/nwjs/nw.js/issues/6366)
6+
- Fix: crash when debugging with developer tools for Linux [(#6347)](https://github.com/nwjs/nw.js/issues/6347)
7+
- Fix: Crash on resource load from extension in webview [(#6368)](https://github.com/nwjs/nw.js/issues/6368)
8+
19
0.27.3 / 12-22-2017
210
===================
311
- Add: %chromium_ver in user-agent field in manifest [(#5975)](https://github.com/nwjs/nw.js/issues/5975)

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ It was created in the Intel Open Source Technology Center.
2626
* Available on Linux, Mac OS X and Windows.
2727

2828
## Downloads
29-
* **v0.27.3:** (Dec 22, 2017, based off of Node.js v9.3.0, Chromium 63.0.3239.108): [release notes](https://nwjs.io/blog/v0.27.3/)
29+
* **v0.27.4:** (Jan 8, 2018, based off of Node.js v9.3.0, Chromium 63.0.3239.132): [release notes](https://nwjs.io/blog/v0.27.4/)
3030
**NOTE** You might want the **SDK build**. Please read the release notes.
31-
* Linux: [32bit](https://dl.nwjs.io/v0.27.3/nwjs-v0.27.3-linux-ia32.tar.gz) / [64bit](https://dl.nwjs.io/v0.27.3/nwjs-v0.27.3-linux-x64.tar.gz)
32-
* Windows: [32bit](https://dl.nwjs.io/v0.27.3/nwjs-v0.27.3-win-ia32.zip) / [64bit](https://dl.nwjs.io/v0.27.3/nwjs-v0.27.3-win-x64.zip)
33-
* Mac 10.9+: [64bit](https://dl.nwjs.io/v0.27.3/nwjs-v0.27.3-osx-x64.zip)
31+
* Linux: [32bit](https://dl.nwjs.io/v0.27.4/nwjs-v0.27.4-linux-ia32.tar.gz) / [64bit](https://dl.nwjs.io/v0.27.4/nwjs-v0.27.4-linux-x64.tar.gz)
32+
* Windows: [32bit](https://dl.nwjs.io/v0.27.4/nwjs-v0.27.4-win-ia32.zip) / [64bit](https://dl.nwjs.io/v0.27.4/nwjs-v0.27.4-win-x64.zip)
33+
* Mac 10.9+: [64bit](https://dl.nwjs.io/v0.27.4/nwjs-v0.27.4-osx-x64.zip)
3434
* Use [Legacy build](http://nwjs.io/downloads/) for Win XP and early OSX.
3535

3636
* **latest nightly build from git tip**: https://dl.nwjs.io/live-build/

src/browser/nw_chrome_browser_hooks.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ void ShowDevtools(bool show, content::WebContents* web_contents, content::WebCon
150150
if (!window) {
151151
Profile* profile = Profile::FromBrowserContext(
152152
web_contents->GetBrowserContext());
153-
window = DevToolsWindow::Create(profile, nullptr, DevToolsWindow::kFrontendDefault, std::string(), false, std::string(), std::string(), container);
153+
window = DevToolsWindow::Create(profile, nullptr, DevToolsWindow::kFrontendDefault, std::string(), false, std::string(), std::string(), false, container);
154154
if (!window)
155155
return;
156156
window->bindings_->AttachTo(agent_host);

0 commit comments

Comments
 (0)