Skip to content

Commit b111c9a

Browse files
committed
Merge branch 'nw47' into nw48
2 parents 645418d + 4d4652b commit b111c9a

File tree

3 files changed

+19
-5
lines changed

3 files changed

+19
-5
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
0.47.3 / 08-16-2020
2+
===================
3+
- Update Node.js to [v14.8.0](https://nodejs.org/en/blog/release/v14.8.0/)
4+
- Update Chromium to [84.0.4147.125](https://chromereleases.googleblog.com/2020/08/stable-channel-update-for-desktop.html)
5+
- build: pinning win sdk version to 10.0.18362.0
6+
- build: fix resources in fresh normal build [(#7541)](https://github.com/nwjs/nw.js/issues/7541)
7+
- [docs] Update Web Worker documentation
8+
9+
0.47.2 / 08-05-2020
10+
===================
11+
- Update Node.js to [v14.7.0](https://nodejs.org/en/blog/release/v14.7.0/)
12+
- Update Chromium to [84.0.4147.105](https://chromereleases.googleblog.com/2020/07/stable-channel-update-for-desktop_27.html)
13+
- Fix: Window.setResizable [(#7521)](https://github.com/nwjs/nw.js/issues/7521)
14+
115
0.47.1 / 07-24-2020
216
===================
317
- Update Node.js to [v14.6.0](https://nodejs.org/en/blog/release/v14.6.0/)

README.md

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

2727
## Downloads
28-
* **v0.47.1:** (July 24, 2020, based off of Node.js v14.6.0, Chromium 84.0.4147.89) : [release notes](https://nwjs.io/blog/v0.47.1/)
28+
* **v0.47.3:** (Aug 16, 2020, based off of Node.js v14.8.0, Chromium 84.0.4147.125) : [release notes](https://nwjs.io/blog/v0.47.3/)
2929
**NOTE** You might want the **SDK build**. Please read the release notes.
30-
* Linux: [32bit](https://dl.nwjs.io/v0.47.1/nwjs-v0.47.1-linux-ia32.tar.gz) / [64bit](https://dl.nwjs.io/v0.47.1/nwjs-v0.47.1-linux-x64.tar.gz)
31-
* Windows: [32bit](https://dl.nwjs.io/v0.47.1/nwjs-v0.47.1-win-ia32.zip) / [64bit](https://dl.nwjs.io/v0.47.1/nwjs-v0.47.1-win-x64.zip)
32-
* Mac 10.10+: [64bit](https://dl.nwjs.io/v0.47.1/nwjs-v0.47.1-osx-x64.zip)
30+
* Linux: [32bit](https://dl.nwjs.io/v0.47.3/nwjs-v0.47.3-linux-ia32.tar.gz) / [64bit](https://dl.nwjs.io/v0.47.3/nwjs-v0.47.3-linux-x64.tar.gz)
31+
* Windows: [32bit](https://dl.nwjs.io/v0.47.3/nwjs-v0.47.3-win-ia32.zip) / [64bit](https://dl.nwjs.io/v0.47.3/nwjs-v0.47.3-win-x64.zip)
32+
* Mac 10.10+: [64bit](https://dl.nwjs.io/v0.47.3/nwjs-v0.47.3-osx-x64.zip)
3333
* Use [Legacy build](http://nwjs.io/downloads/) for Win XP and early OSX.
3434

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

docs/For Users/Advanced/JavaScript Contexts in NW.js.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ In NW.js, Node.js modules can be loaded in the context running in background pag
2626
Besides the contexts created by browsers, NW.js introduced additional Node context for running Node modules in the background page by default. So NW.js has two types of JavaScript contexts: **Browser Context** and **Node Context**.
2727

2828
!!! note "Web Worker"
29-
Actually Web Workers are running in a separate JavaScript context which is neither browser context nor node context. But you can't access Web or Node.js or NW.js APIs in Web Worker's context.
29+
[You can access Node.js APIs](https://nwjs.io/blog/v0.18.4/) in a Web Worker by setting adding `"chromium-args": "--enable-node-worker"` to your Manifest
3030

3131
### Browser Context
3232

0 commit comments

Comments
 (0)