We're pleased to release NW.js 0.19.0 with today's Chromium 55 stable upgrade.
Chromium 55 contains under-the-hood performance and stability tweaks, and some cool new features to explore like input handling improvements. See the upstream announcement for more information. NW19 also features V8 5.5, which ships support for JavaScript's async/await & has 35% less memory consumption on low-memory devices.
There are many security fixes in this release, e.g:
We've made the 0.19 branch ready soon after Chromium beta bumps to 55. Thanks to the beta testers for their valuable feedback.
For more information on the new milestone 0.13 and later versions, please see our blog "What's New in 0.13" for a better introduction.
Full ChangeLog: https://github.com/nwjs/nw.js/blob/nw19/CHANGELOG.md
SDK build:
Binary for other platforms: https://dl.nwjs.io/v0.19.0/
There are 2 builds for each platform - normal build, and SDK build. Normal build doesn't have devtools, only SDK build does. lt can be opened by pressing F12 (Cmd-Alt-I on OSX). SDK packages also have more development tools to be exposed in the following releases, as well as the NaCl support.
Our build infrastructure enables live binary build from git tip so you can access to the latest binary from https://dl.nwjs.io/live-build/
http://docs.nwjs.io/en/latest/For%20Users/Migration/From%200.12%20to%200.13/#known-issues
--
You received this message because you are subscribed to the Google Groups "nw.js" group.
To unsubscribe from this group and stop receiving emails from it, send an email to nwjs-general...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Well done Roger.
Did you ever tried debug build under Windows? Normal build contains a lot of debug symbols, but debug build is always better. I build nw as debug (is_debug=true) without problem. But then I wasn’t able to build node. I generated node files with:
python build/gyp_chromium -Dtarget_arch=ia32 -I third_party/node/common.gypi third_party/node/node.gyp
I tried it with is_debug switch as well (but I think it’s no difference)
python build/gyp_chromium -Dtarget_arch=ia32 -Dis_debug=true -I third_party/node/common.gypi third_party/node/node.gyp
After this I normally build it with:
ninja -C out/Debug node
or even
ninja -C out/Release node
But I always got LINK errors:
v8_libplatform.lib(default-platform.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '2' doesn't match value '0' in node.debug-agent.obj
and I am not sure how to set everything right. Obviously some part is set as release and some as debug... How should I do it?